Searched defs:Vdbe (Results 1 – 2 of 2) sorted by relevance
421 struct Vdbe { struct423 Vdbe **ppVPrev,*pVNext; /* Linked list of VDBEs with the same Vdbe.db */ argument424 Parse *pParse; /* Parsing context used to create this Vdbe */ argument428 u32 cacheCtr; /* VdbeCursor row cache generation counter */ argument439 VdbeCursor **apCsr; /* One element of this array for each open cursor */ argument442 /* When allocating a new Vdbe object, all of the fields below should be argument463 u8 eVdbeState; /* On of the VDBE_*_STATE values */ argument479 VdbeFrame *pFrame; /* Parent frame */ argument480 VdbeFrame *pDelFrame; /* List of frame objects to free on VM reset */ argument493 ** The following are allowed values for Vdbe.eVdbeState argument
27 typedef struct Vdbe Vdbe; typedef