Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dshell.c29996 sqlite3_stmt *pTest = 0; in arCheckEntries() local
30001 shellPreparePrintf(pAr->db, &rc, &pTest, zSel, pAr->zSrcTable); in arCheckEntries()
30002 j = sqlite3_bind_parameter_index(pTest, "$name"); in arCheckEntries()
30009 sqlite3_bind_text(pTest, j, z, -1, SQLITE_STATIC); in arCheckEntries()
30010 if( SQLITE_ROW==sqlite3_step(pTest) ){ in arCheckEntries()
30013 shellReset(&rc, pTest); in arCheckEntries()
30019 shellFinalize(&rc, pTest); in arCheckEntries()
H A Dsqlite3.c118319 Expr *pTest = 0; /* X==Ei (form A) or just Ei (form B) */ local
118341 pTest = &opCompare;
118350 assert( pTest!=0 );
118353 pTest = aListelem[i].pExpr;
118356 testcase( pTest->op==TK_COLUMN );
118357 sqlite3ExprIfFalse(pParse, pTest, nextCase, SQLITE_JUMPIFNULL);
199726 Fts3Expr *pTest = p; local
199728 assert( pTest->eType==FTSQUERY_NEAR || pTest->eType==FTSQUERY_PHRASE );
199729 if( pTest->eType==FTSQUERY_NEAR ) pTest = pTest->pRight;
199730 assert( pTest->eType==FTSQUERY_PHRASE );
[all …]