Lines Matching defs:sqlite3WhereTrace

15179 SQLITE_PRIVATE u32 sqlite3WhereTrace;
15182 # define WHERETRACE(K,X) if(sqlite3WhereTrace&(K)) sqlite3DebugPrintf X
15189 ** Bits for the sqlite3WhereTrace mask:
23036 SQLITE_PRIVATE u32 sqlite3WhereTrace = 0;
157796 if( (sqlite3WhereTrace & 0x4001)==0x4001 ){
158810 if( sqlite3WhereTrace & 0x1 ){
158813 if( sqlite3WhereTrace & 0x1000 ){
158817 if( (sqlite3WhereTrace & 0x4001)==0x4001 ){
159978 if( sqlite3WhereTrace ){
159982 if( sqlite3WhereTrace & 0x4000 ){
160012 if( (sqlite3WhereTrace & 0x4001)==0x4001 ){
160128 if( sqlite3WhereTrace & 0x4000 ){
160133 if( sqlite3WhereTrace & 0x1 ){
162288 if( sqlite3WhereTrace && pWInfo->eOnePass!=ONEPASS_OFF ){
162541 if( sqlite3WhereTrace & 0x20000 ){
162882 if( (sqlite3WhereTrace & 0x10)==0 ) return;
162906 if( (sqlite3WhereTrace & 0x10)==0 ) return;
164386 if( sqlite3WhereTrace & 0x10000 ){
164474 if( p->nLTerm && (sqlite3WhereTrace & 0x4000)!=0 ){
164829 if( sqlite3WhereTrace & 0x8 ){
164846 if( sqlite3WhereTrace & 0x8 ){
164861 if( sqlite3WhereTrace & 0x8 ){
164891 if( sqlite3WhereTrace & 0x8 ){
165384 if( sqlite3WhereTrace & 0x20 ){
166729 if( sqlite3WhereTrace & 0x20000 ){
167515 if( sqlite3WhereTrace&0x4 ){
167534 if( sqlite3WhereTrace&0x4 ){
167557 if( sqlite3WhereTrace&0x4 ){
167575 if( sqlite3WhereTrace&0x4 ){
167613 if( sqlite3WhereTrace & 0x02 ){
167786 if( sqlite3WhereTrace & 0x80 ){
167896 if( sqlite3WhereTrace & 0x02 ){
167937 if( sqlite3WhereTrace ){ /* Display all of the WhereLoop objects */
168210 if( sqlite3WhereTrace & 0x200 ){
168212 if( sqlite3WhereTrace & 0x5000 ) sqlite3ShowExpr(pExpr);
168575 if( sqlite3WhereTrace & 0xffffffff ){
168581 if( sqlite3WhereTrace & 0x8000 ){
168591 if( sqlite3WhereTrace & 0x4000 ){ /* Display all WHERE clause terms */
168651 if( sqlite3WhereTrace ){
168708 if( sqlite3WhereTrace & 0x4000 ){ /* Display all terms of the WHERE clause */
169250 if( sqlite3WhereTrace & 0x200 ){
169253 if( sqlite3WhereTrace & 0x5000 ) sqlite3ShowExpr(p->pExpr);
184346 ** op==2 Store the current sqlite3WhereTrace in *ptr
184347 ** op==3 Set sqlite3WhereTrace to the value *ptr
184355 case 2: *ptr = sqlite3WhereTrace; break;
184356 case 3: sqlite3WhereTrace = *ptr; break;