Searched refs:pVdbe (Results 1 - 22 of 22) sorted by relevance

/external/chromium_org/third_party/sqlite/src/src/
H A Dstatus.c206 struct Vdbe *pVdbe; /* Used to iterate through VMs */ local
210 for(pVdbe=db->pVdbe; pVdbe; pVdbe=pVdbe->pNext){
211 sqlite3VdbeDeleteObject(db, pVdbe);
H A Dprepare.c626 if( rc==SQLITE_OK && pParse->pVdbe && pParse->explain ){
633 sqlite3VdbeSetNumCols(pParse->pVdbe, 4);
637 sqlite3VdbeSetNumCols(pParse->pVdbe, 8);
642 sqlite3VdbeSetColName(pParse->pVdbe, i-iFirst, COLNAME_NAME,
650 Vdbe *pVdbe = pParse->pVdbe; local
651 sqlite3VdbeSetSql(pVdbe, zSql, (int)(pParse->zTail-zSql), saveSqlFlag);
653 if( pParse->pVdbe && (rc!=SQLITE_OK || db->mallocFailed) ){
654 sqlite3VdbeFinalize(pParse->pVdbe);
657 *ppStmt = (sqlite3_stmt*)pParse->pVdbe;
[all...]
H A Dtokenize.c487 if( pParse->pVdbe && pParse->nErr>0 && pParse->nested==0 ){
488 sqlite3VdbeDelete(pParse->pVdbe);
489 pParse->pVdbe = 0;
H A Ddelete.c487 Vdbe *v = pParse->pVdbe; /* Vdbe */
597 sqlite3VdbeAddOp3(pParse->pVdbe, OP_IdxDelete, iCur+i, r1,pIdx->nColumn+1);
619 Vdbe *v = pParse->pVdbe;
H A Dexpr.c255 addr = sqlite3VdbeAddOp4(pParse->pVdbe, opcode, in2, dest, in1,
257 sqlite3VdbeChangeP5(pParse->pVdbe, (u8)p5);
1808 v = pParse->pVdbe;
1950 Vdbe *v = pParse->pVdbe;
2161 Vdbe *v = pParse->pVdbe;
2209 sqlite3VdbeAddOp3(pParse->pVdbe, OP_Move, iFrom, iTo, nReg);
2226 sqlite3VdbeAddOp2(pParse->pVdbe, OP_Copy, iFrom+i, iTo+i);
2261 Vdbe *v = pParse->pVdbe; /* The VM under construction */
2888 sqlite3VdbeAddOp2(pParse->pVdbe, OP_Copy, pExpr->iTable, target);
2891 assert( pParse->pVdbe || pPars
[all...]
H A Dvdbeaux.c40 if( db->pVdbe ){
41 db->pVdbe->pPrev = p;
43 p->pNext = db->pVdbe;
45 db->pVdbe = p;
359 ** assert( sqlite3VdbeAssertMayAbort(pParse->pVdbe, pParse->mayAbort) );
657 void sqlite3VdbeLinkSubProgram(Vdbe *pVdbe, SubProgram *p){ argument
658 p->pNext = pVdbe->pProgram;
659 pVdbe->pProgram = p;
1918 ** matches the number of vdbe's in the list sqlite3.pVdbe that are
1930 p = db->pVdbe;
[all...]
H A Dvdbeapi.c1310 pNext = (sqlite3_stmt*)pDb->pVdbe;
1322 Vdbe *pVdbe = (Vdbe*)pStmt; local
1323 int v = pVdbe->aCounter[op-1];
1324 if( resetFlag ) pVdbe->aCounter[op-1] = 0;
H A Dselect.c418 Vdbe *v = pParse->pVdbe;
485 v = pParse->pVdbe;
538 Vdbe *v = pParse->pVdbe;
803 Vdbe *v = pParse->pVdbe;
848 Vdbe *v = pParse->pVdbe;
1110 Vdbe *v = pParse->pVdbe;
1149 Vdbe *v = pParse->pVdbe;
1385 Vdbe *v = pParse->pVdbe;
1387 v = pParse->pVdbe = sqlite3VdbeCreate(pParse->db);
1911 Vdbe *v = pParse->pVdbe;
[all...]
H A Dtrigger.c698 Vdbe *v = pParse->pVdbe;
819 assert( pTop->pVdbe );
830 sqlite3VdbeLinkSubProgram(pTop->pVdbe, pProgram);
H A Dvdbemem.c597 void sqlite3VdbeMemPrepareToChange(Vdbe *pVdbe, Mem *pMem){ argument
600 for(i=1, pX=&pVdbe->aMem[1]; i<=pVdbe->nMem; i++, pX++){
H A Dwhere.c684 sqlite3VdbeSetVarmask(pParse->pVdbe, iCol); /* IMP: R-23257-02778 */
701 Vdbe *v = pParse->pVdbe;
1826 v = pParse->pVdbe;
2393 sqlite3VdbeSetVarmask(pParse->pVdbe, iVar); /* IMP: R-23257-02778 */
3225 Vdbe *v = pParse->pVdbe;
3271 Vdbe *v = pParse->pVdbe;
3366 Vdbe *v = pParse->pVdbe; /* The vm under construction */
3517 Vdbe *v = pParse->pVdbe; /* VM being constructed */
3612 v = pParse->pVdbe;
4377 Vdbe *v = pParse->pVdbe; /* Th
[all...]
H A Dinsert.c229 Vdbe *v = pParse->pVdbe; /* VDBE under construction */
267 sqlite3VdbeAddOp2(pParse->pVdbe, OP_MemMax, memId, regRowid);
280 Vdbe *v = pParse->pVdbe;
H A Dvdbe.c4509 Vdbe *pVdbe; local
4513 for(pVdbe=db->pVdbe; pVdbe; pVdbe = pVdbe->pNext){
4514 if( pVdbe->magic==VDBE_MAGIC_RUN && pVdbe->inVtabMethod<2 && pVdbe->pc>=0 ){
H A Dvtab.c681 if( pParse->pVdbe ){
682 sqlite3VdbeFinalize(pParse->pVdbe);
H A Dupdate.c602 Vdbe *v = pParse->pVdbe; /* Virtual machine under construction */
H A Dbuild.c100 Vdbe *pVdbe; local
102 pVdbe = sqlite3GetVdbe(pParse);
103 assert( pVdbe!=0 ); /* sqlite3GetVdbe cannot fail: VDBE already allocated */
108 sqlite3VdbeAddOp4(pVdbe, OP_TableLock, p1, p->iTab, p->isWriteLock,
1309 Vdbe *v = pParse->pVdbe;
H A DsqliteInt.h831 struct Vdbe *pVdbe; /* List of active virtual machines */ member in struct:sqlite3
2172 Vdbe *pVdbe; /* An engine for executing database bytecode */ member in struct:Parse
2173 u8 colNamesSet; /* TRUE after OP_ColumnName has been issued to pVdbe */
H A Dpragma.c315 Vdbe *v = pParse->pVdbe = sqlite3VdbeCreate(db);
H A Dmain.c703 if( db->pVdbe ){
/external/sqlite/dist/orig/
H A Dsqlite3.c10436 struct Vdbe *pVdbe; /* List of active virtual machines */ member in struct:sqlite3
11910 Vdbe *pVdbe; /* An engine for executing database bytecode */ member in struct:Parse
11912 u8 colNamesSet; /* TRUE after OP_ColumnName has been issued to pVdbe */
14131 Vdbe *pVdbe; /* The VM that owns this context */ member in struct:sqlite3_context
14135 u8 fErrorOrAux; /* isError!=0 or pVdbe->pAuxData modified */
14143 Vdbe *pVdbe; /* Attach the explanation to this Vdbe */ member in struct:Explain
14536 struct Vdbe *pVdbe; /* Used to iterate through VMs */ local
14540 for(pVdbe=db->pVdbe; pVdbe; pVdb
61433 sqlite3VdbeMemAboutToChange(Vdbe *pVdbe, Mem *pMem) argument
62951 sqlite3VdbeLinkSubProgram(Vdbe *pVdbe, SubProgram *p) argument
64857 sqlite3VdbeDeleteAuxData(Vdbe *pVdbe, int iOp, int mask) argument
66907 Vdbe *pVdbe = pCtx->pVdbe; local
67596 Vdbe *pVdbe = (Vdbe*)pStmt; local
67798 sqlite3ExplainBegin(Vdbe *pVdbe) argument
67827 sqlite3ExplainPrintf(Vdbe *pVdbe, const char *zFormat, ...) argument
67845 sqlite3ExplainNL(Vdbe *pVdbe) argument
67856 sqlite3ExplainPush(Vdbe *pVdbe) argument
67884 sqlite3ExplainFinish(Vdbe *pVdbe) argument
67898 sqlite3VdbeExplanation(Vdbe *pVdbe) argument
72937 Vdbe *pVdbe; local
86191 Vdbe *pVdbe; local
101231 Vdbe *pVdbe = pParse->pVdbe; local
106768 explainOneSelect(Vdbe *pVdbe, Select *p) argument
106838 sqlite3ExplainSelect(Vdbe *pVdbe, Select *p) argument
[all...]
/external/sqlite/dist/
H A Dsqlite3.c10436 struct Vdbe *pVdbe; /* List of active virtual machines */ member in struct:sqlite3
11910 Vdbe *pVdbe; /* An engine for executing database bytecode */ member in struct:Parse
11912 u8 colNamesSet; /* TRUE after OP_ColumnName has been issued to pVdbe */
14131 Vdbe *pVdbe; /* The VM that owns this context */ member in struct:sqlite3_context
14135 u8 fErrorOrAux; /* isError!=0 or pVdbe->pAuxData modified */
14143 Vdbe *pVdbe; /* Attach the explanation to this Vdbe */ member in struct:Explain
14536 struct Vdbe *pVdbe; /* Used to iterate through VMs */ local
14540 for(pVdbe=db->pVdbe; pVdbe; pVdb
61453 sqlite3VdbeMemAboutToChange(Vdbe *pVdbe, Mem *pMem) argument
62971 sqlite3VdbeLinkSubProgram(Vdbe *pVdbe, SubProgram *p) argument
64877 sqlite3VdbeDeleteAuxData(Vdbe *pVdbe, int iOp, int mask) argument
66927 Vdbe *pVdbe = pCtx->pVdbe; local
67616 Vdbe *pVdbe = (Vdbe*)pStmt; local
67818 sqlite3ExplainBegin(Vdbe *pVdbe) argument
67847 sqlite3ExplainPrintf(Vdbe *pVdbe, const char *zFormat, ...) argument
67865 sqlite3ExplainNL(Vdbe *pVdbe) argument
67876 sqlite3ExplainPush(Vdbe *pVdbe) argument
67904 sqlite3ExplainFinish(Vdbe *pVdbe) argument
67918 sqlite3VdbeExplanation(Vdbe *pVdbe) argument
72957 Vdbe *pVdbe; local
86211 Vdbe *pVdbe; local
101251 Vdbe *pVdbe = pParse->pVdbe; local
106788 explainOneSelect(Vdbe *pVdbe, Select *p) argument
106858 sqlite3ExplainSelect(Vdbe *pVdbe, Select *p) argument
[all...]
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c9176 struct Vdbe *pVdbe; /* List of active virtual machines */ member in struct:sqlite3
10517 Vdbe *pVdbe; /* An engine for executing database bytecode */ member in struct:Parse
10518 u8 colNamesSet; /* TRUE after OP_ColumnName has been issued to pVdbe */
12828 struct Vdbe *pVdbe; /* Used to iterate through VMs */ local
12832 for(pVdbe=db->pVdbe; pVdbe; pVdbe=pVdbe->pNext){
12833 sqlite3VdbeDeleteObject(db, pVdbe);
56562 sqlite3VdbeMemPrepareToChange(Vdbe *pVdbe, Mem *pMem) argument
57782 sqlite3VdbeLinkSubProgram(Vdbe *pVdbe, SubProgram *p) argument
61656 Vdbe *pVdbe = (Vdbe*)pStmt; local
62755 Vdbe *pVdbe; member in struct:vdbeExecUnion::OP_Destroy_stack_vars
76939 Vdbe *pVdbe; local
89712 Vdbe *pVdbe = pParse->pVdbe; local
[all...]

Completed in 662 milliseconds