sqlite3DebugPrintf 10983 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE   void sqlite3DebugPrintf(const char*, ...);
sqlite3DebugPrintf 21898 third_party/sqlite/amalgamation/sqlite3.c #define OSTRACE(X)          if( sqlite3OSTrace ) sqlite3DebugPrintf X
sqlite3DebugPrintf 24226 third_party/sqlite/amalgamation/sqlite3.c #define OSTRACE(X)          if( sqlite3OSTrace ) sqlite3DebugPrintf X
sqlite3DebugPrintf 24688 third_party/sqlite/amalgamation/sqlite3.c     sqlite3DebugPrintf("fcntl unknown %d %d %d\n", fd, op, s);
sqlite3DebugPrintf 24703 third_party/sqlite/amalgamation/sqlite3.c   sqlite3DebugPrintf("fcntl %d %d %s %s %d %d %d %d\n",
sqlite3DebugPrintf 24719 third_party/sqlite/amalgamation/sqlite3.c     sqlite3DebugPrintf("fcntl-failure-reason: %s %d %d %d\n",
sqlite3DebugPrintf 31011 third_party/sqlite/amalgamation/sqlite3.c #define OSTRACE(X)          if( sqlite3OSTrace ) sqlite3DebugPrintf X
sqlite3DebugPrintf 36548 third_party/sqlite/amalgamation/sqlite3.c #define PAGERTRACE(X)     if( sqlite3PagerTrace ){ sqlite3DebugPrintf X; }
sqlite3DebugPrintf 43531 third_party/sqlite/amalgamation/sqlite3.c # define WALTRACE(X)  if(sqlite3WalTrace) sqlite3DebugPrintf X
sqlite3DebugPrintf 68301 third_party/sqlite/amalgamation/sqlite3.c       sqlite3DebugPrintf("SQL-trace: %s\n", u.cn.zTrace);
sqlite3DebugPrintf 94310 third_party/sqlite/amalgamation/sqlite3.c     sqlite3DebugPrintf("(%s", p->u.zToken);
sqlite3DebugPrintf 94312 third_party/sqlite/amalgamation/sqlite3.c     sqlite3DebugPrintf("(%d", p->op);
sqlite3DebugPrintf 94315 third_party/sqlite/amalgamation/sqlite3.c     sqlite3DebugPrintf(" ");
sqlite3DebugPrintf 94319 third_party/sqlite/amalgamation/sqlite3.c     sqlite3DebugPrintf(" ");
sqlite3DebugPrintf 94322 third_party/sqlite/amalgamation/sqlite3.c   sqlite3DebugPrintf(")");
sqlite3DebugPrintf 94329 third_party/sqlite/amalgamation/sqlite3.c       sqlite3DebugPrintf(", ");
sqlite3DebugPrintf 94334 third_party/sqlite/amalgamation/sqlite3.c   sqlite3DebugPrintf("%*sSELECT(%p) ", indent, "", p);
sqlite3DebugPrintf 94336 third_party/sqlite/amalgamation/sqlite3.c   sqlite3DebugPrintf("\n");
sqlite3DebugPrintf 94343 third_party/sqlite/amalgamation/sqlite3.c       sqlite3DebugPrintf("%*s ", indent+6, zPrefix);
sqlite3DebugPrintf 94346 third_party/sqlite/amalgamation/sqlite3.c         sqlite3DebugPrintf("(\n");
sqlite3DebugPrintf 94348 third_party/sqlite/amalgamation/sqlite3.c         sqlite3DebugPrintf("%*s)", indent+8, "");
sqlite3DebugPrintf 94350 third_party/sqlite/amalgamation/sqlite3.c         sqlite3DebugPrintf("%s", pItem->zName);
sqlite3DebugPrintf 94353 third_party/sqlite/amalgamation/sqlite3.c         sqlite3DebugPrintf("(table: %s)", pItem->pTab->zName);
sqlite3DebugPrintf 94356 third_party/sqlite/amalgamation/sqlite3.c         sqlite3DebugPrintf(" AS %s", pItem->zAlias);
sqlite3DebugPrintf 94359 third_party/sqlite/amalgamation/sqlite3.c         sqlite3DebugPrintf(",");
sqlite3DebugPrintf 94361 third_party/sqlite/amalgamation/sqlite3.c       sqlite3DebugPrintf("\n");
sqlite3DebugPrintf 94365 third_party/sqlite/amalgamation/sqlite3.c     sqlite3DebugPrintf("%*s WHERE ", indent, "");
sqlite3DebugPrintf 94367 third_party/sqlite/amalgamation/sqlite3.c     sqlite3DebugPrintf("\n");
sqlite3DebugPrintf 94370 third_party/sqlite/amalgamation/sqlite3.c     sqlite3DebugPrintf("%*s GROUP BY ", indent, "");
sqlite3DebugPrintf 94372 third_party/sqlite/amalgamation/sqlite3.c     sqlite3DebugPrintf("\n");
sqlite3DebugPrintf 94375 third_party/sqlite/amalgamation/sqlite3.c     sqlite3DebugPrintf("%*s HAVING ", indent, "");
sqlite3DebugPrintf 94377 third_party/sqlite/amalgamation/sqlite3.c     sqlite3DebugPrintf("\n");
sqlite3DebugPrintf 94380 third_party/sqlite/amalgamation/sqlite3.c     sqlite3DebugPrintf("%*s ORDER BY ", indent, "");
sqlite3DebugPrintf 94382 third_party/sqlite/amalgamation/sqlite3.c     sqlite3DebugPrintf("\n");
sqlite3DebugPrintf 97683 third_party/sqlite/amalgamation/sqlite3.c # define WHERETRACE(X)  if(sqlite3WhereTrace) sqlite3DebugPrintf X
sqlite3DebugPrintf 99228 third_party/sqlite/amalgamation/sqlite3.c     sqlite3DebugPrintf("  constraint[%d]: col=%d termid=%d op=%d usabled=%d\n",
sqlite3DebugPrintf 99236 third_party/sqlite/amalgamation/sqlite3.c     sqlite3DebugPrintf("  orderby[%d]: col=%d desc=%d\n",
sqlite3DebugPrintf 99246 third_party/sqlite/amalgamation/sqlite3.c     sqlite3DebugPrintf("  usage[%d]: argvIdx=%d omit=%d\n",
sqlite3DebugPrintf 99251 third_party/sqlite/amalgamation/sqlite3.c   sqlite3DebugPrintf("  idxNum=%d\n", p->idxNum);
sqlite3DebugPrintf 99252 third_party/sqlite/amalgamation/sqlite3.c   sqlite3DebugPrintf("  idxStr=%s\n", p->idxStr);
sqlite3DebugPrintf 99253 third_party/sqlite/amalgamation/sqlite3.c   sqlite3DebugPrintf("  orderByConsumed=%d\n", p->orderByConsumed);
sqlite3DebugPrintf 99254 third_party/sqlite/amalgamation/sqlite3.c   sqlite3DebugPrintf("  estimatedCost=%g\n", p->estimatedCost);
sqlite3DebugPrintf   34 third_party/sqlite/src/src/os_common.h #define OSTRACE(X)          if( sqlite3OSTrace ) sqlite3DebugPrintf X
sqlite3DebugPrintf  547 third_party/sqlite/src/src/os_unix.c     sqlite3DebugPrintf("fcntl unknown %d %d %d\n", fd, op, s);
sqlite3DebugPrintf  562 third_party/sqlite/src/src/os_unix.c   sqlite3DebugPrintf("fcntl %d %d %s %s %d %d %d %d\n",
sqlite3DebugPrintf  578 third_party/sqlite/src/src/os_unix.c     sqlite3DebugPrintf("fcntl-failure-reason: %s %d %d %d\n",
sqlite3DebugPrintf  118 third_party/sqlite/src/src/pager.c #define PAGERTRACE(X)     if( sqlite3PagerTrace ){ sqlite3DebugPrintf X; }
sqlite3DebugPrintf 4388 third_party/sqlite/src/src/select.c     sqlite3DebugPrintf("(%s", p->u.zToken);
sqlite3DebugPrintf 4390 third_party/sqlite/src/src/select.c     sqlite3DebugPrintf("(%d", p->op);
sqlite3DebugPrintf 4393 third_party/sqlite/src/src/select.c     sqlite3DebugPrintf(" ");
sqlite3DebugPrintf 4397 third_party/sqlite/src/src/select.c     sqlite3DebugPrintf(" ");
sqlite3DebugPrintf 4400 third_party/sqlite/src/src/select.c   sqlite3DebugPrintf(")");
sqlite3DebugPrintf 4407 third_party/sqlite/src/src/select.c       sqlite3DebugPrintf(", ");
sqlite3DebugPrintf 4412 third_party/sqlite/src/src/select.c   sqlite3DebugPrintf("%*sSELECT(%p) ", indent, "", p);
sqlite3DebugPrintf 4414 third_party/sqlite/src/src/select.c   sqlite3DebugPrintf("\n");
sqlite3DebugPrintf 4421 third_party/sqlite/src/src/select.c       sqlite3DebugPrintf("%*s ", indent+6, zPrefix);
sqlite3DebugPrintf 4424 third_party/sqlite/src/src/select.c         sqlite3DebugPrintf("(\n");
sqlite3DebugPrintf 4426 third_party/sqlite/src/src/select.c         sqlite3DebugPrintf("%*s)", indent+8, "");
sqlite3DebugPrintf 4428 third_party/sqlite/src/src/select.c         sqlite3DebugPrintf("%s", pItem->zName);
sqlite3DebugPrintf 4431 third_party/sqlite/src/src/select.c         sqlite3DebugPrintf("(table: %s)", pItem->pTab->zName);
sqlite3DebugPrintf 4434 third_party/sqlite/src/src/select.c         sqlite3DebugPrintf(" AS %s", pItem->zAlias);
sqlite3DebugPrintf 4437 third_party/sqlite/src/src/select.c         sqlite3DebugPrintf(",");
sqlite3DebugPrintf 4439 third_party/sqlite/src/src/select.c       sqlite3DebugPrintf("\n");
sqlite3DebugPrintf 4443 third_party/sqlite/src/src/select.c     sqlite3DebugPrintf("%*s WHERE ", indent, "");
sqlite3DebugPrintf 4445 third_party/sqlite/src/src/select.c     sqlite3DebugPrintf("\n");
sqlite3DebugPrintf 4448 third_party/sqlite/src/src/select.c     sqlite3DebugPrintf("%*s GROUP BY ", indent, "");
sqlite3DebugPrintf 4450 third_party/sqlite/src/src/select.c     sqlite3DebugPrintf("\n");
sqlite3DebugPrintf 4453 third_party/sqlite/src/src/select.c     sqlite3DebugPrintf("%*s HAVING ", indent, "");
sqlite3DebugPrintf 4455 third_party/sqlite/src/src/select.c     sqlite3DebugPrintf("\n");
sqlite3DebugPrintf 4458 third_party/sqlite/src/src/select.c     sqlite3DebugPrintf("%*s ORDER BY ", indent, "");
sqlite3DebugPrintf 4460 third_party/sqlite/src/src/select.c     sqlite3DebugPrintf("\n");
sqlite3DebugPrintf 2638 third_party/sqlite/src/src/sqliteInt.h   void sqlite3DebugPrintf(const char*, ...);
sqlite3DebugPrintf   55 third_party/sqlite/src/src/test_btree.c     sqlite3DebugPrintf("CURSOR %p rooted at %4d(%s) currently at %d.%d%s\n",
sqlite3DebugPrintf 5857 third_party/sqlite/src/src/vdbe.c       sqlite3DebugPrintf("SQL-trace: %s\n", zTrace);
sqlite3DebugPrintf  251 third_party/sqlite/src/src/wal.c # define WALTRACE(X)  if(sqlite3WalTrace) sqlite3DebugPrintf X
sqlite3DebugPrintf   29 third_party/sqlite/src/src/where.c # define WHERETRACE(X)  if(sqlite3WhereTrace) sqlite3DebugPrintf X
sqlite3DebugPrintf 1574 third_party/sqlite/src/src/where.c     sqlite3DebugPrintf("  constraint[%d]: col=%d termid=%d op=%d usabled=%d\n",
sqlite3DebugPrintf 1582 third_party/sqlite/src/src/where.c     sqlite3DebugPrintf("  orderby[%d]: col=%d desc=%d\n",
sqlite3DebugPrintf 1592 third_party/sqlite/src/src/where.c     sqlite3DebugPrintf("  usage[%d]: argvIdx=%d omit=%d\n",
sqlite3DebugPrintf 1597 third_party/sqlite/src/src/where.c   sqlite3DebugPrintf("  idxNum=%d\n", p->idxNum);
sqlite3DebugPrintf 1598 third_party/sqlite/src/src/where.c   sqlite3DebugPrintf("  idxStr=%s\n", p->idxStr);
sqlite3DebugPrintf 1599 third_party/sqlite/src/src/where.c   sqlite3DebugPrintf("  orderByConsumed=%d\n", p->orderByConsumed);
sqlite3DebugPrintf 1600 third_party/sqlite/src/src/where.c   sqlite3DebugPrintf("  estimatedCost=%g\n", p->estimatedCost);