Home
last modified time | relevance | path

Searched refs:pTest (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/sqlite3/
H A Dshell.c25215 sqlite3_stmt *pTest = 0; in arCheckEntries() local
25220 shellPreparePrintf(pAr->db, &rc, &pTest, zSel, pAr->zSrcTable); in arCheckEntries()
25221 j = sqlite3_bind_parameter_index(pTest, "$name"); in arCheckEntries()
25228 sqlite3_bind_text(pTest, j, z, -1, SQLITE_STATIC); in arCheckEntries()
25229 if( SQLITE_ROW==sqlite3_step(pTest) ){ in arCheckEntries()
25232 shellReset(&rc, pTest); in arCheckEntries()
25238 shellFinalize(&rc, pTest); in arCheckEntries()
H A Dsqlite3.c114249 Expr *pTest = 0; /* X==Ei (form A) or just Ei (form B) */
114271 pTest = &opCompare;
114280 assert( pTest!=0 );
114283 pTest = aListelem[i].pExpr;
114286 testcase( pTest->op==TK_COLUMN );
114287 sqlite3ExprIfFalse(pParse, pTest, nextCase, SQLITE_JUMPIFNULL);
192231 Fts3Expr *pTest = p;
192233 assert( pTest->eType==FTSQUERY_NEAR || pTest->eType==FTSQUERY_PHRASE );
192234 if( pTest->eType==FTSQUERY_NEAR ) pTest = pTest->pRight;
192235 assert( pTest->eType==FTSQUERY_PHRASE );
[all …]