Searched defs:Vdbe (Results 1 - 2 of 2) sorted by relevance
/osnet-11/usr/src/lib/libsqlite/src/ |
H A D | vdbe.h | 28 ** A single VDBE is an opaque structure named "Vdbe". Only routines 32 typedef struct Vdbe Vdbe; typedef in typeref:struct:Vdbe 90 Vdbe *sqliteVdbeCreate(sqlite*); 91 void sqliteVdbeCreateCallback(Vdbe*, int*); 92 int sqliteVdbeAddOp(Vdbe*,int,int,int); 93 int sqliteVdbeOp3(Vdbe*,int,int,int,const char *zP3,int); 94 int sqliteVdbeCode(Vdbe*,...); 95 int sqliteVdbeAddOpList(Vdbe*, int nOp, VdbeOpList const *aOp); 96 void sqliteVdbeChangeP1(Vdbe*, in [all...] |
H A D | vdbeInt.h | 233 struct Vdbe { struct 235 Vdbe *pPrev,*pNext; /* Linked list of VDBEs with the same Vdbe.db */ 287 ** The following are allowed values for Vdbe.magic 298 void sqliteVdbeSorterReset(Vdbe*); 301 void sqliteVdbePopStack(Vdbe*,int);
|
Completed in 15 milliseconds