HomeSort by relevance Sort by last modified time
    Searched refs:VdbeOp (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/third_party/sqlite/src/src/
vdbe.h 31 ** for the VdbeOp definition.
42 struct VdbeOp {
73 typedef struct VdbeOp VdbeOp;
80 VdbeOp *aOp; /* Array of opcodes for sub-program */
89 ** A smaller version of VdbeOp used for the VdbeAddOpList() function because
101 ** Allowed values of VdbeOp.p4type
151 ** of a VdbeOp structure into a negative number so that
183 VdbeOp *sqlite3VdbeGetOp(Vdbe*, int);
204 VdbeOp *sqlite3VdbeTakeOpArray(Vdbe*, int*, int*)
    [all...]
vdbeaux.c 112 VdbeOp *pNew;
140 VdbeOp *pOp;
461 VdbeOp *sqlite3VdbeTakeOpArray(Vdbe *p, int *pnOp, int *pnMaxArg){
462 VdbeOp *aOp = p->aOp;
490 VdbeOp *pOut = &p->aOp[i+addr];
667 VdbeOp *pOp = &p->aOp[addr];
811 ** routine, then a pointer to a dummy VdbeOp will be returned. That opcode
827 VdbeOp *sqlite3VdbeGetOp(Vdbe *p, int addr){
830 static const VdbeOp dummy; /* Ignore the MSVC warning about no initializer */
834 if( p->nOp==0 ) return (VdbeOp*)&dummy
    [all...]
vdbeInt.h 26 typedef struct VdbeOp Op;
insert.c 145 VdbeOp *pOp = sqlite3VdbeGetOp(v, i);
892 VdbeOp *pOp;
    [all...]
where.c     [all...]
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c     [all...]

Completed in 499 milliseconds