Vdbe 7897 third_party/sqlite/amalgamation/sqlite3.c typedef struct Vdbe Vdbe; Vdbe 8223 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE Vdbe *sqlite3VdbeCreate(sqlite3*); Vdbe 8224 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3VdbeAddOp0(Vdbe*,int); Vdbe 8225 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3VdbeAddOp1(Vdbe*,int,int); Vdbe 8226 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3VdbeAddOp2(Vdbe*,int,int,int); Vdbe 8227 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3VdbeAddOp3(Vdbe*,int,int,int,int); Vdbe 8228 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3VdbeAddOp4(Vdbe*,int,int,int,int,const char *zP4,int); Vdbe 8229 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3VdbeAddOp4Int(Vdbe*,int,int,int,int,int); Vdbe 8230 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3VdbeAddOpList(Vdbe*, int nOp, VdbeOpList const *aOp); Vdbe 8231 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3VdbeChangeP1(Vdbe*, int addr, int P1); Vdbe 8232 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3VdbeChangeP2(Vdbe*, int addr, int P2); Vdbe 8233 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3VdbeChangeP3(Vdbe*, int addr, int P3); Vdbe 8234 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3VdbeChangeP5(Vdbe*, u8 P5); Vdbe 8235 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3VdbeJumpHere(Vdbe*, int addr); Vdbe 8236 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3VdbeChangeToNoop(Vdbe*, int addr, int N); Vdbe 8237 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3VdbeChangeP4(Vdbe*, int addr, const char *zP4, int N); Vdbe 8238 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3VdbeUsesBtree(Vdbe*, int); Vdbe 8239 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE VdbeOp *sqlite3VdbeGetOp(Vdbe*, int); Vdbe 8240 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3VdbeMakeLabel(Vdbe*); Vdbe 8241 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3VdbeRunOnlyOnce(Vdbe*); Vdbe 8242 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3VdbeDelete(Vdbe*); Vdbe 8243 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3VdbeDeleteObject(sqlite3*,Vdbe*); Vdbe 8244 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3VdbeMakeReady(Vdbe*,int,int,int,int,int,int); Vdbe 8245 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3VdbeFinalize(Vdbe*); Vdbe 8246 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3VdbeResolveLabel(Vdbe*, int); Vdbe 8247 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3VdbeCurrentAddr(Vdbe*); Vdbe 8249 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3VdbeAssertMayAbort(Vdbe *, int); Vdbe 8250 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3VdbeTrace(Vdbe*,FILE*); Vdbe 8252 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3VdbeResetStepResult(Vdbe*); Vdbe 8253 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3VdbeReset(Vdbe*); Vdbe 8254 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3VdbeSetNumCols(Vdbe*,int); Vdbe 8255 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3VdbeSetColName(Vdbe*, int, int, const char *, void(*)(void*)); Vdbe 8256 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3VdbeCountChanges(Vdbe*); Vdbe 8257 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE sqlite3 *sqlite3VdbeDb(Vdbe*); Vdbe 8258 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3VdbeSetSql(Vdbe*, const char *z, int n, int); Vdbe 8259 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3VdbeSwap(Vdbe*,Vdbe*); Vdbe 8260 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE VdbeOp *sqlite3VdbeTakeOpArray(Vdbe*, int*, int*); Vdbe 8261 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE sqlite3_value *sqlite3VdbeGetValue(Vdbe*, int, u8); Vdbe 8262 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3VdbeSetVarmask(Vdbe*, int); Vdbe 8264 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE char *sqlite3VdbeExpandSql(Vdbe*, const char*); Vdbe 8272 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3VdbeLinkSubProgram(Vdbe *, SubProgram *); Vdbe 8277 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3VdbeComment(Vdbe*, const char*, ...); Vdbe 8279 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3VdbeNoopComment(Vdbe*, const char*, ...); Vdbe 9176 third_party/sqlite/amalgamation/sqlite3.c struct Vdbe *pVdbe; /* List of active virtual machines */ Vdbe 10517 third_party/sqlite/amalgamation/sqlite3.c Vdbe *pVdbe; /* An engine for executing database bytecode */ Vdbe 10577 third_party/sqlite/amalgamation/sqlite3.c Vdbe *pReprepare; /* VM being reprepared (sqlite3Reprepare()) */ Vdbe 11091 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3ExprCodeGetColumnOfTable(Vdbe*, Table*, int, int, int); Vdbe 11120 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE Vdbe *sqlite3GetVdbe(Parse*); Vdbe 11137 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3ExprCodeIsNullJump(Vdbe*, const Expr*, int, int); Vdbe 11269 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE const char *sqlite3IndexAffinityStr(Vdbe *, Index *); Vdbe 11270 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3TableAffinityStr(Vdbe *, Table *); Vdbe 11328 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3ColumnDefault(Vdbe *, Table *, int, int); Vdbe 11422 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3VdbeParameterIndex(Vdbe*, const char*, int); Vdbe 11424 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3Reprepare(Vdbe*); Vdbe 11531 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3VdbeIOTraceSql(Vdbe*); Vdbe 12323 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v; /* VM this frame belongs to */ Vdbe 12499 third_party/sqlite/amalgamation/sqlite3.c Vdbe *pPrev,*pNext; /* Linked list of VDBEs with the same Vdbe.db */ Vdbe 12551 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3VdbeFreeCursor(Vdbe *, VdbeCursor*); Vdbe 12552 third_party/sqlite/amalgamation/sqlite3.c void sqliteVdbePopStack(Vdbe*,int); Vdbe 12567 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3VdbeExec(Vdbe*); Vdbe 12568 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3VdbeList(Vdbe*); Vdbe 12569 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3VdbeHalt(Vdbe*); Vdbe 12600 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3VdbeCloseStatement(Vdbe *, int); Vdbe 12606 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3VdbeEnter(Vdbe*); Vdbe 12607 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3VdbeLeave(Vdbe*); Vdbe 12614 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3VdbeMemPrepareToChange(Vdbe*,Mem*); Vdbe 12618 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3VdbeCheckFk(Vdbe *, int); Vdbe 12625 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3VdbePrintSql(Vdbe*); Vdbe 12828 third_party/sqlite/amalgamation/sqlite3.c struct Vdbe *pVdbe; /* Used to iterate through VMs */ Vdbe 56562 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3VdbeMemPrepareToChange(Vdbe *pVdbe, Mem *pMem){ Vdbe 57160 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE Vdbe *sqlite3VdbeCreate(sqlite3 *db){ Vdbe 57161 third_party/sqlite/amalgamation/sqlite3.c Vdbe *p; Vdbe 57162 third_party/sqlite/amalgamation/sqlite3.c p = sqlite3DbMallocZero(db, sizeof(Vdbe) ); Vdbe 57178 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3VdbeSetSql(Vdbe *p, const char *z, int n, int isPrepareV2){ Vdbe 57193 third_party/sqlite/amalgamation/sqlite3.c Vdbe *p = (Vdbe *)pStmt; Vdbe 57200 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3VdbeSwap(Vdbe *pA, Vdbe *pB){ Vdbe 57201 third_party/sqlite/amalgamation/sqlite3.c Vdbe tmp, *pTmp; Vdbe 57222 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3VdbeTrace(Vdbe *p, FILE *trace){ Vdbe 57236 third_party/sqlite/amalgamation/sqlite3.c static int growOpArray(Vdbe *p){ Vdbe 57263 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3VdbeAddOp3(Vdbe *p, int op, int p1, int p2, int p3){ Vdbe 57301 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3VdbeAddOp0(Vdbe *p, int op){ Vdbe 57304 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3VdbeAddOp1(Vdbe *p, int op, int p1){ Vdbe 57307 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3VdbeAddOp2(Vdbe *p, int op, int p1, int p2){ Vdbe 57316 third_party/sqlite/amalgamation/sqlite3.c Vdbe *p, /* Add the opcode to this VM */ Vdbe 57333 third_party/sqlite/amalgamation/sqlite3.c Vdbe *p, /* Add the opcode to this VM */ Vdbe 57359 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3VdbeMakeLabel(Vdbe *p){ Vdbe 57380 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3VdbeResolveLabel(Vdbe *p, int x){ Vdbe 57392 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3VdbeRunOnlyOnce(Vdbe *p){ Vdbe 57416 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v; /* Vdbe to iterate through the opcodes of */ Vdbe 57423 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v = p->v; Vdbe 57486 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3VdbeAssertMayAbort(Vdbe *v, int mayAbort){ Vdbe 57530 third_party/sqlite/amalgamation/sqlite3.c static void resolveP2Values(Vdbe *p, int *pMaxFuncArgs){ Vdbe 57570 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3VdbeCurrentAddr(Vdbe *p){ Vdbe 57586 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE VdbeOp *sqlite3VdbeTakeOpArray(Vdbe *p, int *pnOp, int *pnMaxArg){ Vdbe 57603 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3VdbeAddOpList(Vdbe *p, int nOp, VdbeOpList const *aOp){ Vdbe 57645 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3VdbeChangeP1(Vdbe *p, int addr, int val){ Vdbe 57657 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3VdbeChangeP2(Vdbe *p, int addr, int val){ Vdbe 57668 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3VdbeChangeP3(Vdbe *p, int addr, int val){ Vdbe 57680 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3VdbeChangeP5(Vdbe *p, u8 val){ Vdbe 57692 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3VdbeJumpHere(Vdbe *p, int addr){ Vdbe 57782 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3VdbeLinkSubProgram(Vdbe *pVdbe, SubProgram *p){ Vdbe 57790 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3VdbeChangeToNoop(Vdbe *p, int addr, int N){ Vdbe 57828 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3VdbeChangeP4(Vdbe *p, int addr, const char *zP4, int n){ Vdbe 57902 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3VdbeComment(Vdbe *p, const char *zFormat, ...){ Vdbe 57915 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3VdbeNoopComment(Vdbe *p, const char *zFormat, ...){ Vdbe 57952 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE VdbeOp *sqlite3VdbeGetOp(Vdbe *p, int addr){ Vdbe 58083 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3VdbeUsesBtree(Vdbe *p, int i){ Vdbe 58114 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3VdbeEnter(Vdbe *p){ Vdbe 58136 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3VdbeLeave(Vdbe *p){ Vdbe 58250 third_party/sqlite/amalgamation/sqlite3.c Vdbe *p /* The VDBE */ Vdbe 58296 third_party/sqlite/amalgamation/sqlite3.c nSub = pSub->n/sizeof(Vdbe*); Vdbe 58435 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3VdbePrintSql(Vdbe *p){ Vdbe 58452 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3VdbeIOTraceSql(Vdbe *p){ Vdbe 58536 third_party/sqlite/amalgamation/sqlite3.c Vdbe *p, /* The VDBE */ Vdbe 58660 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3VdbeFreeCursor(Vdbe *p, VdbeCursor *pCx){ Vdbe 58688 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v = pFrame->v; Vdbe 58708 third_party/sqlite/amalgamation/sqlite3.c static void closeAllCursors(Vdbe *p){ Vdbe 58744 third_party/sqlite/amalgamation/sqlite3.c static void Cleanup(Vdbe *p){ Vdbe 58766 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3VdbeSetNumCols(Vdbe *p, int nResColumn){ Vdbe 58795 third_party/sqlite/amalgamation/sqlite3.c Vdbe *p, /* Vdbe being configured */ Vdbe 58822 third_party/sqlite/amalgamation/sqlite3.c static int vdbeCommit(sqlite3 *db, Vdbe *p){ Vdbe 59052 third_party/sqlite/amalgamation/sqlite3.c Vdbe *p; Vdbe 59106 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3VdbeCloseStatement(Vdbe *p, int eOp){ Vdbe 59162 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3VdbeCheckFk(Vdbe *p, int deferred){ Vdbe 59187 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3VdbeHalt(Vdbe *p){ Vdbe 59395 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3VdbeResetStepResult(Vdbe *p){ Vdbe 59410 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3VdbeReset(Vdbe *p){ Vdbe 59486 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3VdbeFinalize(Vdbe *p){ Vdbe 59521 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3VdbeDeleteObject(sqlite3 *db, Vdbe *p){ Vdbe 59542 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3VdbeDelete(Vdbe *p){ Vdbe 60268 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3VdbeCountChanges(Vdbe *v){ Vdbe 60283 third_party/sqlite/amalgamation/sqlite3.c Vdbe *p; Vdbe 60292 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE sqlite3 *sqlite3VdbeDb(Vdbe *v){ Vdbe 60304 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE sqlite3_value *sqlite3VdbeGetValue(Vdbe *v, int iVar, u8 aff){ Vdbe 60326 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3VdbeSetVarmask(Vdbe *v, int iVar){ Vdbe 60363 third_party/sqlite/amalgamation/sqlite3.c Vdbe *p = (Vdbe*)pStmt; Vdbe 60373 third_party/sqlite/amalgamation/sqlite3.c static int vdbeSafety(Vdbe *p){ Vdbe 60381 third_party/sqlite/amalgamation/sqlite3.c static int vdbeSafetyNotNull(Vdbe *p){ Vdbe 60406 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v = (Vdbe*)pStmt; Vdbe 60436 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v = (Vdbe*)pStmt; Vdbe 60453 third_party/sqlite/amalgamation/sqlite3.c Vdbe *p = (Vdbe*)pStmt; Vdbe 60455 third_party/sqlite/amalgamation/sqlite3.c sqlite3_mutex *mutex = ((Vdbe*)pStmt)->db->mutex; Vdbe 60675 third_party/sqlite/amalgamation/sqlite3.c static int sqlite3Step(Vdbe *p){ Vdbe 60804 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v = (Vdbe*)pStmt; /* the prepared statement */ Vdbe 60996 third_party/sqlite/amalgamation/sqlite3.c Vdbe *pVm = (Vdbe *)pStmt; Vdbe 61005 third_party/sqlite/amalgamation/sqlite3.c Vdbe *pVm = (Vdbe *)pStmt; Vdbe 61018 third_party/sqlite/amalgamation/sqlite3.c Vdbe *pVm; Vdbe 61021 third_party/sqlite/amalgamation/sqlite3.c pVm = (Vdbe *)pStmt; Vdbe 61081 third_party/sqlite/amalgamation/sqlite3.c Vdbe *p = (Vdbe *)pStmt; Vdbe 61184 third_party/sqlite/amalgamation/sqlite3.c Vdbe *p = (Vdbe *)pStmt; Vdbe 61314 third_party/sqlite/amalgamation/sqlite3.c static int vdbeUnbind(Vdbe *p, int i){ Vdbe 61366 third_party/sqlite/amalgamation/sqlite3.c Vdbe *p = (Vdbe *)pStmt; Vdbe 61403 third_party/sqlite/amalgamation/sqlite3.c Vdbe *p = (Vdbe *)pStmt; Vdbe 61416 third_party/sqlite/amalgamation/sqlite3.c Vdbe *p = (Vdbe *)pStmt; Vdbe 61426 third_party/sqlite/amalgamation/sqlite3.c Vdbe *p = (Vdbe*)pStmt; Vdbe 61486 third_party/sqlite/amalgamation/sqlite3.c Vdbe *p = (Vdbe *)pStmt; Vdbe 61500 third_party/sqlite/amalgamation/sqlite3.c Vdbe *p = (Vdbe*)pStmt; Vdbe 61509 third_party/sqlite/amalgamation/sqlite3.c static void createVarMap(Vdbe *p){ Vdbe 61537 third_party/sqlite/amalgamation/sqlite3.c Vdbe *p = (Vdbe*)pStmt; Vdbe 61550 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3VdbeParameterIndex(Vdbe *p, const char *zName, int nName){ Vdbe 61567 third_party/sqlite/amalgamation/sqlite3.c return sqlite3VdbeParameterIndex((Vdbe*)pStmt, zName, sqlite3Strlen30(zName)); Vdbe 61574 third_party/sqlite/amalgamation/sqlite3.c Vdbe *pFrom = (Vdbe*)pFromStmt; Vdbe 61575 third_party/sqlite/amalgamation/sqlite3.c Vdbe *pTo = (Vdbe*)pToStmt; Vdbe 61601 third_party/sqlite/amalgamation/sqlite3.c Vdbe *pFrom = (Vdbe*)pFromStmt; Vdbe 61602 third_party/sqlite/amalgamation/sqlite3.c Vdbe *pTo = (Vdbe*)pToStmt; Vdbe 61623 third_party/sqlite/amalgamation/sqlite3.c return pStmt ? ((Vdbe*)pStmt)->db : 0; Vdbe 61631 third_party/sqlite/amalgamation/sqlite3.c return pStmt ? ((Vdbe*)pStmt)->readOnly : 1; Vdbe 61646 third_party/sqlite/amalgamation/sqlite3.c pNext = (sqlite3_stmt*)((Vdbe*)pStmt)->pNext; Vdbe 61656 third_party/sqlite/amalgamation/sqlite3.c Vdbe *pVdbe = (Vdbe*)pStmt; Vdbe 61727 third_party/sqlite/amalgamation/sqlite3.c Vdbe *p, /* The prepared statement being evaluated */ Vdbe 62005 third_party/sqlite/amalgamation/sqlite3.c Vdbe *p, /* The virtual machine */ Vdbe 62411 third_party/sqlite/amalgamation/sqlite3.c static void importVtabErrMsg(Vdbe *p, sqlite3_vtab *pVtab){ Vdbe 62452 third_party/sqlite/amalgamation/sqlite3.c Vdbe *p /* The VDBE */ Vdbe 62755 third_party/sqlite/amalgamation/sqlite3.c Vdbe *pVdbe; Vdbe 66908 third_party/sqlite/amalgamation/sqlite3.c Vdbe *pVdbe; Vdbe 68484 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v = (Vdbe *)p->pStmt; Vdbe 68684 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v = (Vdbe *)pBlob->pStmt; Vdbe 68747 third_party/sqlite/amalgamation/sqlite3.c if( pBlob && pBlob->pStmt ) sqlite3VdbeFinalize((Vdbe *)pBlob->pStmt); Vdbe 68791 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v; Vdbe 68797 third_party/sqlite/amalgamation/sqlite3.c v = (Vdbe*)p->pStmt; Vdbe 72007 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v, /* The VDBE under construction */ Vdbe 72182 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v = sqlite3GetVdbe(pParse); /* Virtual machine being coded */ Vdbe 72316 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v = sqlite3GetVdbe(pParse); Vdbe 72540 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v; /* Statement under construction */ Vdbe 72649 third_party/sqlite/amalgamation/sqlite3.c static char *dup8bytes(Vdbe *v, const char *in){ Vdbe 72666 third_party/sqlite/amalgamation/sqlite3.c static void codeReal(Vdbe *v, const char *z, int negateFlag, int iMem){ Vdbe 72687 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v = pParse->pVdbe; Vdbe 72865 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v, /* The VDBE under construction */ Vdbe 72898 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v = pParse->pVdbe; Vdbe 72998 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v = pParse->pVdbe; /* The VM under construction */ Vdbe 73649 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v = pParse->pVdbe; Vdbe 73901 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v = pParse->pVdbe; Vdbe 74021 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v = pParse->pVdbe; Vdbe 74827 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v; Vdbe 74899 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v; Vdbe 75089 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v; Vdbe 75244 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v; Vdbe 75378 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v = sqlite3GetVdbe(pParse); Vdbe 75436 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v; /* The virtual machine being built up */ Vdbe 75695 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v = sqlite3GetVdbe(pParse); Vdbe 76342 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v; Vdbe 76939 third_party/sqlite/amalgamation/sqlite3.c Vdbe *pVdbe; Vdbe 76967 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v; Vdbe 77438 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v = sqlite3GetVdbe(p); Vdbe 77574 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v; Vdbe 78148 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v = pParse->pVdbe; Vdbe 78356 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v; Vdbe 78744 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v = sqlite3GetVdbe(pParse); Vdbe 78830 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v; Vdbe 79154 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v; /* Generate code into this virtual machine */ Vdbe 79614 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v; Vdbe 79744 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v; Vdbe 80188 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v; Vdbe 80214 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v; Vdbe 80234 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v; Vdbe 80256 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v = sqlite3GetVdbe(pParse); Vdbe 80328 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v = sqlite3GetVdbe(pToplevel); Vdbe 80425 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v = sqlite3GetVdbe(pParse); Vdbe 81285 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v; /* The virtual database engine */ Vdbe 81544 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v = pParse->pVdbe; /* Vdbe */ Vdbe 81676 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v = pParse->pVdbe; Vdbe 83618 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v = sqlite3GetVdbe(pParse); /* Vdbe to add code to */ Vdbe 83765 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v = sqlite3GetVdbe(pParse); Vdbe 83918 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v = sqlite3GetVdbe(pParse); Vdbe 84510 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v; Vdbe 84540 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE const char *sqlite3IndexAffinityStr(Vdbe *v, Index *pIdx){ Vdbe 84582 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3TableAffinityStr(Vdbe *v, Table *pTab){ Vdbe 84620 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v = sqlite3GetVdbe(p); Vdbe 84712 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v = pParse->pVdbe; /* VDBE under construction */ Vdbe 84763 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v = pParse->pVdbe; Vdbe 84929 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v; /* Generate code into this virtual machine */ Vdbe 85633 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v; /* VDBE under constrution */ Vdbe 85917 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v; Vdbe 85975 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v; Vdbe 86106 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v; /* The VDBE we are building */ Vdbe 86416 third_party/sqlite/amalgamation/sqlite3.c sqlite3VdbeFinalize((Vdbe *)pStmt); Vdbe 86424 third_party/sqlite/amalgamation/sqlite3.c rc = sqlite3VdbeFinalize((Vdbe *)pStmt); Vdbe 86440 third_party/sqlite/amalgamation/sqlite3.c if( pStmt ) sqlite3VdbeFinalize((Vdbe *)pStmt); Vdbe 87682 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v = sqlite3GetVdbe(pParse); Vdbe 87744 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v; Vdbe 87851 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v = pParse->pVdbe = sqlite3VdbeCreate(db); Vdbe 89588 third_party/sqlite/amalgamation/sqlite3.c Vdbe *pReprepare, /* VM being reprepared */ Vdbe 89712 third_party/sqlite/amalgamation/sqlite3.c Vdbe *pVdbe = pParse->pVdbe; Vdbe 89748 third_party/sqlite/amalgamation/sqlite3.c Vdbe *pOld, /* VM being reprepared */ Vdbe 89778 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3Reprepare(Vdbe *p){ Vdbe 89799 third_party/sqlite/amalgamation/sqlite3.c sqlite3VdbeSwap((Vdbe*)pNew, p); Vdbe 89801 third_party/sqlite/amalgamation/sqlite3.c sqlite3VdbeResetStepResult((Vdbe*)pNew); Vdbe 89802 third_party/sqlite/amalgamation/sqlite3.c sqlite3VdbeFinalize((Vdbe*)pNew); Vdbe 90340 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v = pParse->pVdbe; Vdbe 90374 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v, /* Generate code into this VM */ Vdbe 90404 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v; Vdbe 90460 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v = pParse->pVdbe; Vdbe 90725 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v = pParse->pVdbe; Vdbe 90770 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v = pParse->pVdbe; Vdbe 90792 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v, /* Generate code into this VDBE */ Vdbe 91032 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v = pParse->pVdbe; Vdbe 91071 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v = pParse->pVdbe; Vdbe 91306 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE Vdbe *sqlite3GetVdbe(Parse *pParse){ Vdbe 91307 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v = pParse->pVdbe; Vdbe 91339 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v = 0; Vdbe 91460 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v; /* Generate code to this VDBE */ Vdbe 91833 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v = pParse->pVdbe; Vdbe 92052 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v; /* Generate code to this VDBE */ Vdbe 93431 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v = pParse->pVdbe; Vdbe 93463 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v = pParse->pVdbe; Vdbe 93479 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v = pParse->pVdbe; Vdbe 93634 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v; /* The virtual machine under construction */ Vdbe 94876 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v; Vdbe 95118 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v; Vdbe 95284 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v = pParse->pVdbe; Vdbe 95398 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v; /* Temporary VM */ Vdbe 95542 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v = sqlite3GetVdbe(pParse); /* Main VM */ Vdbe 95759 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3ColumnDefault(Vdbe *v, Table *pTab, int i, int iReg){ Vdbe 95798 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v; /* The virtual database engine */ Vdbe 96301 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v = pParse->pVdbe; /* Virtual machine under construction */ Vdbe 96392 third_party/sqlite/amalgamation/sqlite3.c rc = sqlite3VdbeFinalize((Vdbe*)pStmt); Vdbe 96450 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v = sqlite3GetVdbe(pParse); Vdbe 97053 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v; Vdbe 98332 third_party/sqlite/amalgamation/sqlite3.c Vdbe *pReprepare = pParse->pReprepare; Vdbe 98355 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v = pParse->pVdbe; Vdbe 99464 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v; /* Prepared statement under construction */ Vdbe 100879 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v = pParse->pVdbe; Vdbe 100925 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v = pParse->pVdbe; Vdbe 101020 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v = pParse->pVdbe; /* The vm under construction */ Vdbe 101171 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v = pParse->pVdbe; /* VM being constructed */ Vdbe 101258 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v; /* The prepared stmt under constructions */ Vdbe 102031 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v = pParse->pVdbe; /* The virtual database engine */ Vdbe 102520 third_party/sqlite/amalgamation/sqlite3.c Vdbe *v = pParse->pVdbe; Vdbe 333 third_party/sqlite/src/src/alter.c Vdbe *v; Vdbe 405 third_party/sqlite/src/src/alter.c Vdbe *v; Vdbe 595 third_party/sqlite/src/src/alter.c Vdbe *v; Vdbe 750 third_party/sqlite/src/src/alter.c Vdbe *v; Vdbe 56 third_party/sqlite/src/src/analyze.c Vdbe *v = sqlite3GetVdbe(pParse); Vdbe 114 third_party/sqlite/src/src/analyze.c Vdbe *v; /* The virtual machine being built up */ Vdbe 373 third_party/sqlite/src/src/analyze.c Vdbe *v = sqlite3GetVdbe(pParse); Vdbe 299 third_party/sqlite/src/src/attach.c Vdbe *v; Vdbe 100 third_party/sqlite/src/src/build.c Vdbe *pVdbe; Vdbe 128 third_party/sqlite/src/src/build.c Vdbe *v; Vdbe 599 third_party/sqlite/src/src/build.c Vdbe *v = sqlite3GetVdbe(p); Vdbe 735 third_party/sqlite/src/src/build.c Vdbe *v; Vdbe 1309 third_party/sqlite/src/src/build.c Vdbe *v = pParse->pVdbe; Vdbe 1517 third_party/sqlite/src/src/build.c Vdbe *v; Vdbe 1905 third_party/sqlite/src/src/build.c Vdbe *v = sqlite3GetVdbe(pParse); Vdbe 1991 third_party/sqlite/src/src/build.c Vdbe *v; Vdbe 2315 third_party/sqlite/src/src/build.c Vdbe *v; /* Generate code into this virtual machine */ Vdbe 2775 third_party/sqlite/src/src/build.c Vdbe *v; Vdbe 2905 third_party/sqlite/src/src/build.c Vdbe *v; Vdbe 3349 third_party/sqlite/src/src/build.c Vdbe *v; Vdbe 3375 third_party/sqlite/src/src/build.c Vdbe *v; Vdbe 3395 third_party/sqlite/src/src/build.c Vdbe *v; Vdbe 3417 third_party/sqlite/src/src/build.c Vdbe *v = sqlite3GetVdbe(pParse); Vdbe 3489 third_party/sqlite/src/src/build.c Vdbe *v = sqlite3GetVdbe(pToplevel); Vdbe 3586 third_party/sqlite/src/src/build.c Vdbe *v = sqlite3GetVdbe(pParse); Vdbe 228 third_party/sqlite/src/src/delete.c Vdbe *v; /* The virtual database engine */ Vdbe 487 third_party/sqlite/src/src/delete.c Vdbe *v = pParse->pVdbe; /* Vdbe */ Vdbe 619 third_party/sqlite/src/src/delete.c Vdbe *v = pParse->pVdbe; Vdbe 1270 third_party/sqlite/src/src/expr.c Vdbe *v, /* The VDBE under construction */ Vdbe 1445 third_party/sqlite/src/src/expr.c Vdbe *v = sqlite3GetVdbe(pParse); /* Virtual machine being coded */ Vdbe 1579 third_party/sqlite/src/src/expr.c Vdbe *v = sqlite3GetVdbe(pParse); Vdbe 1803 third_party/sqlite/src/src/expr.c Vdbe *v; /* Statement under construction */ Vdbe 1912 third_party/sqlite/src/src/expr.c static char *dup8bytes(Vdbe *v, const char *in){ Vdbe 1929 third_party/sqlite/src/src/expr.c static void codeReal(Vdbe *v, const char *z, int negateFlag, int iMem){ Vdbe 1950 third_party/sqlite/src/src/expr.c Vdbe *v = pParse->pVdbe; Vdbe 2128 third_party/sqlite/src/src/expr.c Vdbe *v, /* The VDBE under construction */ Vdbe 2161 third_party/sqlite/src/src/expr.c Vdbe *v = pParse->pVdbe; Vdbe 2261 third_party/sqlite/src/src/expr.c Vdbe *v = pParse->pVdbe; /* The VM under construction */ Vdbe 2912 third_party/sqlite/src/src/expr.c Vdbe *v = pParse->pVdbe; Vdbe 3164 third_party/sqlite/src/src/expr.c Vdbe *v = pParse->pVdbe; Vdbe 3284 third_party/sqlite/src/src/expr.c Vdbe *v = pParse->pVdbe; Vdbe 326 third_party/sqlite/src/src/fkey.c Vdbe *v = sqlite3GetVdbe(pParse); /* Vdbe to add code to */ Vdbe 473 third_party/sqlite/src/src/fkey.c Vdbe *v = sqlite3GetVdbe(pParse); Vdbe 626 third_party/sqlite/src/src/fkey.c Vdbe *v = sqlite3GetVdbe(pParse); Vdbe 27 third_party/sqlite/src/src/insert.c Vdbe *v; Vdbe 57 third_party/sqlite/src/src/insert.c const char *sqlite3IndexAffinityStr(Vdbe *v, Index *pIdx){ Vdbe 99 third_party/sqlite/src/src/insert.c void sqlite3TableAffinityStr(Vdbe *v, Table *pTab){ Vdbe 137 third_party/sqlite/src/src/insert.c Vdbe *v = sqlite3GetVdbe(p); Vdbe 229 third_party/sqlite/src/src/insert.c Vdbe *v = pParse->pVdbe; /* VDBE under construction */ Vdbe 280 third_party/sqlite/src/src/insert.c Vdbe *v = pParse->pVdbe; Vdbe 446 third_party/sqlite/src/src/insert.c Vdbe *v; /* Generate code into this virtual machine */ Vdbe 1150 third_party/sqlite/src/src/insert.c Vdbe *v; /* VDBE under constrution */ Vdbe 1434 third_party/sqlite/src/src/insert.c Vdbe *v; Vdbe 1492 third_party/sqlite/src/src/insert.c Vdbe *v; Vdbe 1623 third_party/sqlite/src/src/insert.c Vdbe *v; /* The VDBE we are building */ Vdbe 101 third_party/sqlite/src/src/legacy.c sqlite3VdbeFinalize((Vdbe *)pStmt); Vdbe 109 third_party/sqlite/src/src/legacy.c rc = sqlite3VdbeFinalize((Vdbe *)pStmt); Vdbe 125 third_party/sqlite/src/src/legacy.c if( pStmt ) sqlite3VdbeFinalize((Vdbe *)pStmt); Vdbe 146 third_party/sqlite/src/src/pragma.c Vdbe *v = sqlite3GetVdbe(pParse); Vdbe 208 third_party/sqlite/src/src/pragma.c Vdbe *v; Vdbe 315 third_party/sqlite/src/src/pragma.c Vdbe *v = pParse->pVdbe = sqlite3VdbeCreate(db); Vdbe 526 third_party/sqlite/src/src/prepare.c Vdbe *pReprepare, /* VM being reprepared */ Vdbe 650 third_party/sqlite/src/src/prepare.c Vdbe *pVdbe = pParse->pVdbe; Vdbe 686 third_party/sqlite/src/src/prepare.c Vdbe *pOld, /* VM being reprepared */ Vdbe 716 third_party/sqlite/src/src/prepare.c int sqlite3Reprepare(Vdbe *p){ Vdbe 737 third_party/sqlite/src/src/prepare.c sqlite3VdbeSwap((Vdbe*)pNew, p); Vdbe 739 third_party/sqlite/src/src/prepare.c sqlite3VdbeResetStepResult((Vdbe*)pNew); Vdbe 740 third_party/sqlite/src/src/prepare.c sqlite3VdbeFinalize((Vdbe*)pNew); Vdbe 418 third_party/sqlite/src/src/select.c Vdbe *v = pParse->pVdbe; Vdbe 452 third_party/sqlite/src/src/select.c Vdbe *v, /* Generate code into this VM */ Vdbe 482 third_party/sqlite/src/src/select.c Vdbe *v; Vdbe 538 third_party/sqlite/src/src/select.c Vdbe *v = pParse->pVdbe; Vdbe 803 third_party/sqlite/src/src/select.c Vdbe *v = pParse->pVdbe; Vdbe 848 third_party/sqlite/src/src/select.c Vdbe *v = pParse->pVdbe; Vdbe 870 third_party/sqlite/src/src/select.c Vdbe *v, /* Generate code into this VDBE */ Vdbe 1110 third_party/sqlite/src/src/select.c Vdbe *v = pParse->pVdbe; Vdbe 1149 third_party/sqlite/src/src/select.c Vdbe *v = pParse->pVdbe; Vdbe 1384 third_party/sqlite/src/src/select.c Vdbe *sqlite3GetVdbe(Parse *pParse){ Vdbe 1385 third_party/sqlite/src/src/select.c Vdbe *v = pParse->pVdbe; Vdbe 1417 third_party/sqlite/src/src/select.c Vdbe *v = 0; Vdbe 1538 third_party/sqlite/src/src/select.c Vdbe *v; /* Generate code to this VDBE */ Vdbe 1911 third_party/sqlite/src/src/select.c Vdbe *v = pParse->pVdbe; Vdbe 2130 third_party/sqlite/src/src/select.c Vdbe *v; /* Generate code to this VDBE */ Vdbe 3509 third_party/sqlite/src/src/select.c Vdbe *v = pParse->pVdbe; Vdbe 3541 third_party/sqlite/src/src/select.c Vdbe *v = pParse->pVdbe; Vdbe 3557 third_party/sqlite/src/src/select.c Vdbe *v = pParse->pVdbe; Vdbe 3712 third_party/sqlite/src/src/select.c Vdbe *v; /* The virtual machine under construction */ Vdbe 831 third_party/sqlite/src/src/sqliteInt.h struct Vdbe *pVdbe; /* List of active virtual machines */ Vdbe 2172 third_party/sqlite/src/src/sqliteInt.h Vdbe *pVdbe; /* An engine for executing database bytecode */ Vdbe 2232 third_party/sqlite/src/src/sqliteInt.h Vdbe *pReprepare; /* VM being reprepared (sqlite3Reprepare()) */ Vdbe 2746 third_party/sqlite/src/src/sqliteInt.h void sqlite3ExprCodeGetColumnOfTable(Vdbe*, Table*, int, int, int); Vdbe 2775 third_party/sqlite/src/src/sqliteInt.h Vdbe *sqlite3GetVdbe(Parse*); Vdbe 2792 third_party/sqlite/src/src/sqliteInt.h void sqlite3ExprCodeIsNullJump(Vdbe*, const Expr*, int, int); Vdbe 2924 third_party/sqlite/src/src/sqliteInt.h const char *sqlite3IndexAffinityStr(Vdbe *, Index *); Vdbe 2925 third_party/sqlite/src/src/sqliteInt.h void sqlite3TableAffinityStr(Vdbe *, Table *); Vdbe 2983 third_party/sqlite/src/src/sqliteInt.h void sqlite3ColumnDefault(Vdbe *, Table *, int, int); Vdbe 3077 third_party/sqlite/src/src/sqliteInt.h int sqlite3VdbeParameterIndex(Vdbe*, const char*, int); Vdbe 3079 third_party/sqlite/src/src/sqliteInt.h int sqlite3Reprepare(Vdbe*); Vdbe 3186 third_party/sqlite/src/src/sqliteInt.h void sqlite3VdbeIOTraceSql(Vdbe*); Vdbe 206 third_party/sqlite/src/src/status.c struct Vdbe *pVdbe; /* Used to iterate through VMs */ Vdbe 290 third_party/sqlite/src/src/trigger.c Vdbe *v; Vdbe 532 third_party/sqlite/src/src/trigger.c Vdbe *v; Vdbe 698 third_party/sqlite/src/src/trigger.c Vdbe *v = pParse->pVdbe; Vdbe 812 third_party/sqlite/src/src/trigger.c Vdbe *v; /* Temporary VM */ Vdbe 956 third_party/sqlite/src/src/trigger.c Vdbe *v = sqlite3GetVdbe(pParse); /* Main VM */ Vdbe 60 third_party/sqlite/src/src/update.c void sqlite3ColumnDefault(Vdbe *v, Table *pTab, int i, int iReg){ Vdbe 99 third_party/sqlite/src/src/update.c Vdbe *v; /* The virtual database engine */ Vdbe 602 third_party/sqlite/src/src/update.c Vdbe *v = pParse->pVdbe; /* Virtual machine under construction */ Vdbe 27 third_party/sqlite/src/src/vacuum.c rc = sqlite3VdbeFinalize((Vdbe*)pStmt); Vdbe 85 third_party/sqlite/src/src/vacuum.c Vdbe *v = sqlite3GetVdbe(pParse); Vdbe 189 third_party/sqlite/src/src/vdbe.c Vdbe *p, /* The virtual machine */ Vdbe 506 third_party/sqlite/src/src/vdbe.c static void importVtabErrMsg(Vdbe *p, sqlite3_vtab *pVtab){ Vdbe 547 third_party/sqlite/src/src/vdbe.c Vdbe *p /* The VDBE */ Vdbe 4509 third_party/sqlite/src/src/vdbe.c Vdbe *pVdbe; Vdbe 27 third_party/sqlite/src/src/vdbe.h typedef struct Vdbe Vdbe; Vdbe 167 third_party/sqlite/src/src/vdbe.h Vdbe *sqlite3VdbeCreate(sqlite3*); Vdbe 168 third_party/sqlite/src/src/vdbe.h int sqlite3VdbeAddOp0(Vdbe*,int); Vdbe 169 third_party/sqlite/src/src/vdbe.h int sqlite3VdbeAddOp1(Vdbe*,int,int); Vdbe 170 third_party/sqlite/src/src/vdbe.h int sqlite3VdbeAddOp2(Vdbe*,int,int,int); Vdbe 171 third_party/sqlite/src/src/vdbe.h int sqlite3VdbeAddOp3(Vdbe*,int,int,int,int); Vdbe 172 third_party/sqlite/src/src/vdbe.h int sqlite3VdbeAddOp4(Vdbe*,int,int,int,int,const char *zP4,int); Vdbe 173 third_party/sqlite/src/src/vdbe.h int sqlite3VdbeAddOp4Int(Vdbe*,int,int,int,int,int); Vdbe 174 third_party/sqlite/src/src/vdbe.h int sqlite3VdbeAddOpList(Vdbe*, int nOp, VdbeOpList const *aOp); Vdbe 175 third_party/sqlite/src/src/vdbe.h void sqlite3VdbeChangeP1(Vdbe*, int addr, int P1); Vdbe 176 third_party/sqlite/src/src/vdbe.h void sqlite3VdbeChangeP2(Vdbe*, int addr, int P2); Vdbe 177 third_party/sqlite/src/src/vdbe.h void sqlite3VdbeChangeP3(Vdbe*, int addr, int P3); Vdbe 178 third_party/sqlite/src/src/vdbe.h void sqlite3VdbeChangeP5(Vdbe*, u8 P5); Vdbe 179 third_party/sqlite/src/src/vdbe.h void sqlite3VdbeJumpHere(Vdbe*, int addr); Vdbe 180 third_party/sqlite/src/src/vdbe.h void sqlite3VdbeChangeToNoop(Vdbe*, int addr, int N); Vdbe 181 third_party/sqlite/src/src/vdbe.h void sqlite3VdbeChangeP4(Vdbe*, int addr, const char *zP4, int N); Vdbe 182 third_party/sqlite/src/src/vdbe.h void sqlite3VdbeUsesBtree(Vdbe*, int); Vdbe 183 third_party/sqlite/src/src/vdbe.h VdbeOp *sqlite3VdbeGetOp(Vdbe*, int); Vdbe 184 third_party/sqlite/src/src/vdbe.h int sqlite3VdbeMakeLabel(Vdbe*); Vdbe 185 third_party/sqlite/src/src/vdbe.h void sqlite3VdbeRunOnlyOnce(Vdbe*); Vdbe 186 third_party/sqlite/src/src/vdbe.h void sqlite3VdbeDelete(Vdbe*); Vdbe 187 third_party/sqlite/src/src/vdbe.h void sqlite3VdbeDeleteObject(sqlite3*,Vdbe*); Vdbe 188 third_party/sqlite/src/src/vdbe.h void sqlite3VdbeMakeReady(Vdbe*,int,int,int,int,int,int); Vdbe 189 third_party/sqlite/src/src/vdbe.h int sqlite3VdbeFinalize(Vdbe*); Vdbe 190 third_party/sqlite/src/src/vdbe.h void sqlite3VdbeResolveLabel(Vdbe*, int); Vdbe 191 third_party/sqlite/src/src/vdbe.h int sqlite3VdbeCurrentAddr(Vdbe*); Vdbe 193 third_party/sqlite/src/src/vdbe.h int sqlite3VdbeAssertMayAbort(Vdbe *, int); Vdbe 194 third_party/sqlite/src/src/vdbe.h void sqlite3VdbeTrace(Vdbe*,FILE*); Vdbe 196 third_party/sqlite/src/src/vdbe.h void sqlite3VdbeResetStepResult(Vdbe*); Vdbe 197 third_party/sqlite/src/src/vdbe.h int sqlite3VdbeReset(Vdbe*); Vdbe 198 third_party/sqlite/src/src/vdbe.h void sqlite3VdbeSetNumCols(Vdbe*,int); Vdbe 199 third_party/sqlite/src/src/vdbe.h int sqlite3VdbeSetColName(Vdbe*, int, int, const char *, void(*)(void*)); Vdbe 200 third_party/sqlite/src/src/vdbe.h void sqlite3VdbeCountChanges(Vdbe*); Vdbe 201 third_party/sqlite/src/src/vdbe.h sqlite3 *sqlite3VdbeDb(Vdbe*); Vdbe 202 third_party/sqlite/src/src/vdbe.h void sqlite3VdbeSetSql(Vdbe*, const char *z, int n, int); Vdbe 203 third_party/sqlite/src/src/vdbe.h void sqlite3VdbeSwap(Vdbe*,Vdbe*); Vdbe 204 third_party/sqlite/src/src/vdbe.h VdbeOp *sqlite3VdbeTakeOpArray(Vdbe*, int*, int*); Vdbe 205 third_party/sqlite/src/src/vdbe.h sqlite3_value *sqlite3VdbeGetValue(Vdbe*, int, u8); Vdbe 206 third_party/sqlite/src/src/vdbe.h void sqlite3VdbeSetVarmask(Vdbe*, int); Vdbe 208 third_party/sqlite/src/src/vdbe.h char *sqlite3VdbeExpandSql(Vdbe*, const char*); Vdbe 216 third_party/sqlite/src/src/vdbe.h void sqlite3VdbeLinkSubProgram(Vdbe *, SubProgram *); Vdbe 221 third_party/sqlite/src/src/vdbe.h void sqlite3VdbeComment(Vdbe*, const char*, ...); Vdbe 223 third_party/sqlite/src/src/vdbe.h void sqlite3VdbeNoopComment(Vdbe*, const char*, ...); Vdbe 109 third_party/sqlite/src/src/vdbeInt.h Vdbe *v; /* VM this frame belongs to */ Vdbe 285 third_party/sqlite/src/src/vdbeInt.h Vdbe *pPrev,*pNext; /* Linked list of VDBEs with the same Vdbe.db */ Vdbe 337 third_party/sqlite/src/src/vdbeInt.h void sqlite3VdbeFreeCursor(Vdbe *, VdbeCursor*); Vdbe 338 third_party/sqlite/src/src/vdbeInt.h void sqliteVdbePopStack(Vdbe*,int); Vdbe 353 third_party/sqlite/src/src/vdbeInt.h int sqlite3VdbeExec(Vdbe*); Vdbe 354 third_party/sqlite/src/src/vdbeInt.h int sqlite3VdbeList(Vdbe*); Vdbe 355 third_party/sqlite/src/src/vdbeInt.h int sqlite3VdbeHalt(Vdbe*); Vdbe 386 third_party/sqlite/src/src/vdbeInt.h int sqlite3VdbeCloseStatement(Vdbe *, int); Vdbe 392 third_party/sqlite/src/src/vdbeInt.h void sqlite3VdbeEnter(Vdbe*); Vdbe 393 third_party/sqlite/src/src/vdbeInt.h void sqlite3VdbeLeave(Vdbe*); Vdbe 400 third_party/sqlite/src/src/vdbeInt.h void sqlite3VdbeMemPrepareToChange(Vdbe*,Mem*); Vdbe 404 third_party/sqlite/src/src/vdbeInt.h int sqlite3VdbeCheckFk(Vdbe *, int); Vdbe 411 third_party/sqlite/src/src/vdbeInt.h void sqlite3VdbePrintSql(Vdbe*); Vdbe 29 third_party/sqlite/src/src/vdbeapi.c Vdbe *p = (Vdbe*)pStmt; Vdbe 39 third_party/sqlite/src/src/vdbeapi.c static int vdbeSafety(Vdbe *p){ Vdbe 47 third_party/sqlite/src/src/vdbeapi.c static int vdbeSafetyNotNull(Vdbe *p){ Vdbe 72 third_party/sqlite/src/src/vdbeapi.c Vdbe *v = (Vdbe*)pStmt; Vdbe 102 third_party/sqlite/src/src/vdbeapi.c Vdbe *v = (Vdbe*)pStmt; Vdbe 119 third_party/sqlite/src/src/vdbeapi.c Vdbe *p = (Vdbe*)pStmt; Vdbe 121 third_party/sqlite/src/src/vdbeapi.c sqlite3_mutex *mutex = ((Vdbe*)pStmt)->db->mutex; Vdbe 341 third_party/sqlite/src/src/vdbeapi.c static int sqlite3Step(Vdbe *p){ Vdbe 470 third_party/sqlite/src/src/vdbeapi.c Vdbe *v = (Vdbe*)pStmt; /* the prepared statement */ Vdbe 662 third_party/sqlite/src/src/vdbeapi.c Vdbe *pVm = (Vdbe *)pStmt; Vdbe 671 third_party/sqlite/src/src/vdbeapi.c Vdbe *pVm = (Vdbe *)pStmt; Vdbe 684 third_party/sqlite/src/src/vdbeapi.c Vdbe *pVm; Vdbe 687 third_party/sqlite/src/src/vdbeapi.c pVm = (Vdbe *)pStmt; Vdbe 747 third_party/sqlite/src/src/vdbeapi.c Vdbe *p = (Vdbe *)pStmt; Vdbe 850 third_party/sqlite/src/src/vdbeapi.c Vdbe *p = (Vdbe *)pStmt; Vdbe 980 third_party/sqlite/src/src/vdbeapi.c static int vdbeUnbind(Vdbe *p, int i){ Vdbe 1032 third_party/sqlite/src/src/vdbeapi.c Vdbe *p = (Vdbe *)pStmt; Vdbe 1069 third_party/sqlite/src/src/vdbeapi.c Vdbe *p = (Vdbe *)pStmt; Vdbe 1082 third_party/sqlite/src/src/vdbeapi.c Vdbe *p = (Vdbe *)pStmt; Vdbe 1092 third_party/sqlite/src/src/vdbeapi.c Vdbe *p = (Vdbe*)pStmt; Vdbe 1152 third_party/sqlite/src/src/vdbeapi.c Vdbe *p = (Vdbe *)pStmt; Vdbe 1166 third_party/sqlite/src/src/vdbeapi.c Vdbe *p = (Vdbe*)pStmt; Vdbe 1175 third_party/sqlite/src/src/vdbeapi.c static void createVarMap(Vdbe *p){ Vdbe 1203 third_party/sqlite/src/src/vdbeapi.c Vdbe *p = (Vdbe*)pStmt; Vdbe 1216 third_party/sqlite/src/src/vdbeapi.c int sqlite3VdbeParameterIndex(Vdbe *p, const char *zName, int nName){ Vdbe 1233 third_party/sqlite/src/src/vdbeapi.c return sqlite3VdbeParameterIndex((Vdbe*)pStmt, zName, sqlite3Strlen30(zName)); Vdbe 1240 third_party/sqlite/src/src/vdbeapi.c Vdbe *pFrom = (Vdbe*)pFromStmt; Vdbe 1241 third_party/sqlite/src/src/vdbeapi.c Vdbe *pTo = (Vdbe*)pToStmt; Vdbe 1267 third_party/sqlite/src/src/vdbeapi.c Vdbe *pFrom = (Vdbe*)pFromStmt; Vdbe 1268 third_party/sqlite/src/src/vdbeapi.c Vdbe *pTo = (Vdbe*)pToStmt; Vdbe 1289 third_party/sqlite/src/src/vdbeapi.c return pStmt ? ((Vdbe*)pStmt)->db : 0; Vdbe 1297 third_party/sqlite/src/src/vdbeapi.c return pStmt ? ((Vdbe*)pStmt)->readOnly : 1; Vdbe 1312 third_party/sqlite/src/src/vdbeapi.c pNext = (sqlite3_stmt*)((Vdbe*)pStmt)->pNext; Vdbe 1322 third_party/sqlite/src/src/vdbeapi.c Vdbe *pVdbe = (Vdbe*)pStmt; Vdbe 35 third_party/sqlite/src/src/vdbeaux.c Vdbe *sqlite3VdbeCreate(sqlite3 *db){ Vdbe 36 third_party/sqlite/src/src/vdbeaux.c Vdbe *p; Vdbe 37 third_party/sqlite/src/src/vdbeaux.c p = sqlite3DbMallocZero(db, sizeof(Vdbe) ); Vdbe 53 third_party/sqlite/src/src/vdbeaux.c void sqlite3VdbeSetSql(Vdbe *p, const char *z, int n, int isPrepareV2){ Vdbe 68 third_party/sqlite/src/src/vdbeaux.c Vdbe *p = (Vdbe *)pStmt; Vdbe 75 third_party/sqlite/src/src/vdbeaux.c void sqlite3VdbeSwap(Vdbe *pA, Vdbe *pB){ Vdbe 76 third_party/sqlite/src/src/vdbeaux.c Vdbe tmp, *pTmp; Vdbe 97 third_party/sqlite/src/src/vdbeaux.c void sqlite3VdbeTrace(Vdbe *p, FILE *trace){ Vdbe 111 third_party/sqlite/src/src/vdbeaux.c static int growOpArray(Vdbe *p){ Vdbe 138 third_party/sqlite/src/src/vdbeaux.c int sqlite3VdbeAddOp3(Vdbe *p, int op, int p1, int p2, int p3){ Vdbe 176 third_party/sqlite/src/src/vdbeaux.c int sqlite3VdbeAddOp0(Vdbe *p, int op){ Vdbe 179 third_party/sqlite/src/src/vdbeaux.c int sqlite3VdbeAddOp1(Vdbe *p, int op, int p1){ Vdbe 182 third_party/sqlite/src/src/vdbeaux.c int sqlite3VdbeAddOp2(Vdbe *p, int op, int p1, int p2){ Vdbe 191 third_party/sqlite/src/src/vdbeaux.c Vdbe *p, /* Add the opcode to this VM */ Vdbe 208 third_party/sqlite/src/src/vdbeaux.c Vdbe *p, /* Add the opcode to this VM */ Vdbe 234 third_party/sqlite/src/src/vdbeaux.c int sqlite3VdbeMakeLabel(Vdbe *p){ Vdbe 255 third_party/sqlite/src/src/vdbeaux.c void sqlite3VdbeResolveLabel(Vdbe *p, int x){ Vdbe 267 third_party/sqlite/src/src/vdbeaux.c void sqlite3VdbeRunOnlyOnce(Vdbe *p){ Vdbe 291 third_party/sqlite/src/src/vdbeaux.c Vdbe *v; /* Vdbe to iterate through the opcodes of */ Vdbe 298 third_party/sqlite/src/src/vdbeaux.c Vdbe *v = p->v; Vdbe 361 third_party/sqlite/src/src/vdbeaux.c int sqlite3VdbeAssertMayAbort(Vdbe *v, int mayAbort){ Vdbe 405 third_party/sqlite/src/src/vdbeaux.c static void resolveP2Values(Vdbe *p, int *pMaxFuncArgs){ Vdbe 445 third_party/sqlite/src/src/vdbeaux.c int sqlite3VdbeCurrentAddr(Vdbe *p){ Vdbe 461 third_party/sqlite/src/src/vdbeaux.c VdbeOp *sqlite3VdbeTakeOpArray(Vdbe *p, int *pnOp, int *pnMaxArg){ Vdbe 478 third_party/sqlite/src/src/vdbeaux.c int sqlite3VdbeAddOpList(Vdbe *p, int nOp, VdbeOpList const *aOp){ Vdbe 520 third_party/sqlite/src/src/vdbeaux.c void sqlite3VdbeChangeP1(Vdbe *p, int addr, int val){ Vdbe 532 third_party/sqlite/src/src/vdbeaux.c void sqlite3VdbeChangeP2(Vdbe *p, int addr, int val){ Vdbe 543 third_party/sqlite/src/src/vdbeaux.c void sqlite3VdbeChangeP3(Vdbe *p, int addr, int val){ Vdbe 555 third_party/sqlite/src/src/vdbeaux.c void sqlite3VdbeChangeP5(Vdbe *p, u8 val){ Vdbe 567 third_party/sqlite/src/src/vdbeaux.c void sqlite3VdbeJumpHere(Vdbe *p, int addr){ Vdbe 657 third_party/sqlite/src/src/vdbeaux.c void sqlite3VdbeLinkSubProgram(Vdbe *pVdbe, SubProgram *p){ Vdbe 665 third_party/sqlite/src/src/vdbeaux.c void sqlite3VdbeChangeToNoop(Vdbe *p, int addr, int N){ Vdbe 703 third_party/sqlite/src/src/vdbeaux.c void sqlite3VdbeChangeP4(Vdbe *p, int addr, const char *zP4, int n){ Vdbe 777 third_party/sqlite/src/src/vdbeaux.c void sqlite3VdbeComment(Vdbe *p, const char *zFormat, ...){ Vdbe 790 third_party/sqlite/src/src/vdbeaux.c void sqlite3VdbeNoopComment(Vdbe *p, const char *zFormat, ...){ Vdbe 827 third_party/sqlite/src/src/vdbeaux.c VdbeOp *sqlite3VdbeGetOp(Vdbe *p, int addr){ Vdbe 958 third_party/sqlite/src/src/vdbeaux.c void sqlite3VdbeUsesBtree(Vdbe *p, int i){ Vdbe 989 third_party/sqlite/src/src/vdbeaux.c void sqlite3VdbeEnter(Vdbe *p){ Vdbe 1011 third_party/sqlite/src/src/vdbeaux.c void sqlite3VdbeLeave(Vdbe *p){ Vdbe 1125 third_party/sqlite/src/src/vdbeaux.c Vdbe *p /* The VDBE */ Vdbe 1171 third_party/sqlite/src/src/vdbeaux.c nSub = pSub->n/sizeof(Vdbe*); Vdbe 1310 third_party/sqlite/src/src/vdbeaux.c void sqlite3VdbePrintSql(Vdbe *p){ Vdbe 1327 third_party/sqlite/src/src/vdbeaux.c void sqlite3VdbeIOTraceSql(Vdbe *p){ Vdbe 1411 third_party/sqlite/src/src/vdbeaux.c Vdbe *p, /* The VDBE */ Vdbe 1535 third_party/sqlite/src/src/vdbeaux.c void sqlite3VdbeFreeCursor(Vdbe *p, VdbeCursor *pCx){ Vdbe 1563 third_party/sqlite/src/src/vdbeaux.c Vdbe *v = pFrame->v; Vdbe 1583 third_party/sqlite/src/src/vdbeaux.c static void closeAllCursors(Vdbe *p){ Vdbe 1619 third_party/sqlite/src/src/vdbeaux.c static void Cleanup(Vdbe *p){ Vdbe 1641 third_party/sqlite/src/src/vdbeaux.c void sqlite3VdbeSetNumCols(Vdbe *p, int nResColumn){ Vdbe 1670 third_party/sqlite/src/src/vdbeaux.c Vdbe *p, /* Vdbe being configured */ Vdbe 1697 third_party/sqlite/src/src/vdbeaux.c static int vdbeCommit(sqlite3 *db, Vdbe *p){ Vdbe 1927 third_party/sqlite/src/src/vdbeaux.c Vdbe *p; Vdbe 1981 third_party/sqlite/src/src/vdbeaux.c int sqlite3VdbeCloseStatement(Vdbe *p, int eOp){ Vdbe 2037 third_party/sqlite/src/src/vdbeaux.c int sqlite3VdbeCheckFk(Vdbe *p, int deferred){ Vdbe 2062 third_party/sqlite/src/src/vdbeaux.c int sqlite3VdbeHalt(Vdbe *p){ Vdbe 2270 third_party/sqlite/src/src/vdbeaux.c void sqlite3VdbeResetStepResult(Vdbe *p){ Vdbe 2285 third_party/sqlite/src/src/vdbeaux.c int sqlite3VdbeReset(Vdbe *p){ Vdbe 2361 third_party/sqlite/src/src/vdbeaux.c int sqlite3VdbeFinalize(Vdbe *p){ Vdbe 2396 third_party/sqlite/src/src/vdbeaux.c void sqlite3VdbeDeleteObject(sqlite3 *db, Vdbe *p){ Vdbe 2417 third_party/sqlite/src/src/vdbeaux.c void sqlite3VdbeDelete(Vdbe *p){ Vdbe 3143 third_party/sqlite/src/src/vdbeaux.c void sqlite3VdbeCountChanges(Vdbe *v){ Vdbe 3158 third_party/sqlite/src/src/vdbeaux.c Vdbe *p; Vdbe 3167 third_party/sqlite/src/src/vdbeaux.c sqlite3 *sqlite3VdbeDb(Vdbe *v){ Vdbe 3179 third_party/sqlite/src/src/vdbeaux.c sqlite3_value *sqlite3VdbeGetValue(Vdbe *v, int iVar, u8 aff){ Vdbe 3201 third_party/sqlite/src/src/vdbeaux.c void sqlite3VdbeSetVarmask(Vdbe *v, int iVar){ Vdbe 56 third_party/sqlite/src/src/vdbeblob.c Vdbe *v = (Vdbe *)p->pStmt; Vdbe 256 third_party/sqlite/src/src/vdbeblob.c Vdbe *v = (Vdbe *)pBlob->pStmt; Vdbe 319 third_party/sqlite/src/src/vdbeblob.c if( pBlob && pBlob->pStmt ) sqlite3VdbeFinalize((Vdbe *)pBlob->pStmt); Vdbe 363 third_party/sqlite/src/src/vdbeblob.c Vdbe *v; Vdbe 369 third_party/sqlite/src/src/vdbeblob.c v = (Vdbe*)p->pStmt; Vdbe 597 third_party/sqlite/src/src/vdbemem.c void sqlite3VdbeMemPrepareToChange(Vdbe *pVdbe, Mem *pMem){ Vdbe 66 third_party/sqlite/src/src/vdbetrace.c Vdbe *p, /* The prepared statement being evaluated */ Vdbe 341 third_party/sqlite/src/src/vtab.c Vdbe *v; Vdbe 678 third_party/sqlite/src/src/where.c Vdbe *pReprepare = pParse->pReprepare; Vdbe 701 third_party/sqlite/src/src/where.c Vdbe *v = pParse->pVdbe; Vdbe 1810 third_party/sqlite/src/src/where.c Vdbe *v; /* Prepared statement under construction */ Vdbe 3225 third_party/sqlite/src/src/where.c Vdbe *v = pParse->pVdbe; Vdbe 3271 third_party/sqlite/src/src/where.c Vdbe *v = pParse->pVdbe; Vdbe 3366 third_party/sqlite/src/src/where.c Vdbe *v = pParse->pVdbe; /* The vm under construction */ Vdbe 3517 third_party/sqlite/src/src/where.c Vdbe *v = pParse->pVdbe; /* VM being constructed */ Vdbe 3604 third_party/sqlite/src/src/where.c Vdbe *v; /* The prepared stmt under constructions */ Vdbe 4377 third_party/sqlite/src/src/where.c Vdbe *v = pParse->pVdbe; /* The virtual database engine */ Vdbe 4866 third_party/sqlite/src/src/where.c Vdbe *v = pParse->pVdbe;