Home
last modified time | relevance | path

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

/illumos-gate/usr/src/lib/libsqlite/src/
H A Dvdbeaux.c111 int sqliteVdbeOp3(Vdbe *p, int op, int p1, int p2, const char *zP3, int p3type){ in sqliteVdbeOp3() argument
113 sqliteVdbeChangeP3(p, addr, zP3, p3type); in sqliteVdbeOp3()
281 void sqliteVdbeChangeP3(Vdbe *p, int addr, const char *zP3, int n){ in sqliteVdbeChangeP3() argument
294 if( zP3==0 ){ in sqliteVdbeChangeP3()
298 pOp->p3 = (char*)zP3; in sqliteVdbeChangeP3()
301 sqliteSetNString(&pOp->p3, zP3, n, 0); in sqliteVdbeChangeP3()
511 char *zP3; in sqliteVdbePrintOp() local
515 zP3 = zPtr; in sqliteVdbePrintOp()
517 zP3 = pOp->p3; in sqliteVdbePrintOp()
521 pc, sqliteOpcodeNames[pOp->opcode], pOp->p1, pOp->p2, zP3 ? zP3 : ""); in sqliteVdbePrintOp()
H A Dvdbe.h90 int sqliteVdbeOp3(Vdbe*,int,int,int,const char *zP3,int);