Searched refs:zP3 (Results 1 – 2 of 2) sorted by relevance
/titanic_50/usr/src/lib/libsqlite/src/ |
H A D | vdbeaux.c | 114 int sqliteVdbeOp3(Vdbe *p, int op, int p1, int p2, const char *zP3, int p3type){ in sqliteVdbeOp3() argument 116 sqliteVdbeChangeP3(p, addr, zP3, p3type); in sqliteVdbeOp3() 284 void sqliteVdbeChangeP3(Vdbe *p, int addr, const char *zP3, int n){ in sqliteVdbeChangeP3() argument 297 if( zP3==0 ){ in sqliteVdbeChangeP3() 301 pOp->p3 = (char*)zP3; in sqliteVdbeChangeP3() 304 sqliteSetNString(&pOp->p3, zP3, n, 0); in sqliteVdbeChangeP3() 514 char *zP3; in sqliteVdbePrintOp() local 518 zP3 = zPtr; in sqliteVdbePrintOp() 520 zP3 = pOp->p3; in sqliteVdbePrintOp() 524 pc, sqliteOpcodeNames[pOp->opcode], pOp->p1, pOp->p2, zP3 ? zP3 : ""); in sqliteVdbePrintOp()
|
H A D | vdbe.h | 93 int sqliteVdbeOp3(Vdbe*,int,int,int,const char *zP3,int);
|