Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/sqlite3/
H A Dshell.c17452 sqlite3_stmt *pTest = 0; in arCheckEntries() local
17458 j = sqlite3_bind_parameter_index(pTest, "$name"); in arCheckEntries()
17465 sqlite3_bind_text(pTest, j, z, -1, SQLITE_STATIC); in arCheckEntries()
17466 if( SQLITE_ROW==sqlite3_step(pTest) ){ in arCheckEntries()
17469 shellReset(&rc, pTest); in arCheckEntries()
17475 shellFinalize(&rc, pTest); in arCheckEntries()
18239 sqlite3_stmt *pTest = 0; in recoverOrphanTable() local
18241 "SELECT 1 FROM recovery.schema WHERE name=?", &pTest in recoverOrphanTable()
18243 if( pTest ) sqlite3_bind_text(pTest, 1, zTab, -1, SQLITE_TRANSIENT); in recoverOrphanTable()
18245 shellReset(pRc, pTest); in recoverOrphanTable()
[all …]
H A Dsqlite3.c106308 pTest = &opCompare;
106317 assert( pTest!=0 );
106320 pTest = aListelem[i].pExpr;
178633 Fts3Expr *pTest = p;
178635 assert( pTest->eType==FTSQUERY_NEAR || pTest->eType==FTSQUERY_PHRASE );
178636 if( pTest->eType==FTSQUERY_NEAR ) pTest = pTest->pRight;
178638 pPh = pTest->pPhrase;
196689 for(pTest=pLeaf; pTest && pTest->iNode!=iNode; pTest=pTest->pParent);
196690 if( pTest==0 ){
224025 if( pTest ){
[all …]