Searched refs:zP3 (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/lib/libsqlite/src/
H A Dvdbe.h93 int sqliteVdbeOp3(Vdbe*,int,int,int,const char *zP3,int);
H A Dvdbeaux.c114 int sqliteVdbeOp3(Vdbe *p, int op, int p1, int p2, const char *zP3, int p3type){ argument
116 sqliteVdbeChangeP3(p, addr, zP3, p3type);
275 ** A value of n==0 means copy bytes of zP3 up to and including the
276 ** first null byte. If n>0 then copy n+1 bytes of zP3.
278 ** If n==P3_STATIC it means that zP3 is a pointer to a constant static
279 ** string and we can just copy the pointer. n==P3_POINTER means zP3 is
284 void sqliteVdbeChangeP3(Vdbe *p, int addr, const char *zP3, int n){ argument
297 if( zP3==0 ){
301 pOp->p3 = (char*)zP3;
304 sqliteSetNString(&pOp->p3, zP3,
514 char *zP3; local
[all...]

Completed in 59 milliseconds