Home
last modified time | relevance | path

Searched defs:Vdbe (Results 1 – 2 of 2) sorted by relevance

/sqlite-3.40.0/src/
H A DvdbeInt.h421 struct Vdbe { struct
423 Vdbe **ppVPrev,*pVNext; /* Linked list of VDBEs with the same Vdbe.db */ argument
424 Parse *pParse; /* Parsing context used to create this Vdbe */ argument
428 u32 cacheCtr; /* VdbeCursor row cache generation counter */ argument
439 VdbeCursor **apCsr; /* One element of this array for each open cursor */ argument
442 /* When allocating a new Vdbe object, all of the fields below should be argument
463 u8 eVdbeState; /* On of the VDBE_*_STATE values */ argument
479 VdbeFrame *pFrame; /* Parent frame */ argument
480 VdbeFrame *pDelFrame; /* List of frame objects to free on VM reset */ argument
493 ** The following are allowed values for Vdbe.eVdbeState argument
H A Dvdbe.h27 typedef struct Vdbe Vdbe; typedef