Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/sqlite3/
H A Dshell.c14576 sqlite3_stmt *pTest = 0; in arCheckEntries() local
14578 shellPreparePrintf(pAr->db, &rc, &pTest, in arCheckEntries()
14582 j = sqlite3_bind_parameter_index(pTest, "$name"); in arCheckEntries()
14589 sqlite3_bind_text(pTest, j, z, -1, SQLITE_STATIC); in arCheckEntries()
14590 if( SQLITE_ROW==sqlite3_step(pTest) ){ in arCheckEntries()
14593 shellReset(&rc, pTest); in arCheckEntries()
14599 shellFinalize(&rc, pTest); in arCheckEntries()
15315 sqlite3_stmt *pTest = 0; in recoverOrphanTable() local
15319 if( pTest ) sqlite3_bind_text(pTest, 1, zTab, -1, SQLITE_TRANSIENT); in recoverOrphanTable()
15321 shellReset(pRc, pTest); in recoverOrphanTable()
[all …]
H A Dsqlite3.c103943 pTest = &opCompare;
103952 assert( pTest!=0 );
103955 pTest = aListelem[i].pExpr;
172012 Fts3Expr *pTest = p;
172014 assert( pTest->eType==FTSQUERY_NEAR || pTest->eType==FTSQUERY_PHRASE );
172015 if( pTest->eType==FTSQUERY_NEAR ) pTest = pTest->pRight;
172017 pPh = pTest->pPhrase;
189881 for(pTest=pLeaf; pTest && pTest->iNode!=iNode; pTest=pTest->pParent);
189882 if( !pTest ){
216499 if( pTest ){
[all …]
/freebsd-12.1/crypto/heimdal/lib/sqlite/
H A Dsqlite3.c75789 Expr *pTest = 0; /* X==Ei (form A) or just Ei (form B) */
75808 pTest = &opCompare;
75818 assert( pTest!=0 );
75821 pTest = aListelem[i].pExpr;
75824 testcase( pTest->op==TK_COLUMN );
75825 sqlite3ExprIfFalse(pParse, pTest, nextCase, SQLITE_JUMPIFNULL);
129345 RtreeNode *pTest; /* Used to test for reference loops */
129354 for(pTest=pLeaf; pTest && pTest->iNode!=iNode; pTest=pTest->pParent);
129355 if( !pTest ){