Searched refs:zP4 (Results 1 – 4 of 4) sorted by relevance
| /sqlite-3.40.0/src/ |
| H A D | vdbevtab.c | 40 char *zP4; /* Rendered P4 value */ member 125 sqlite3_free(pCur->zP4); in bytecodevtabCursorClear() 126 pCur->zP4 = 0; in bytecodevtabCursorClear() 157 if( pCur->zP4 ){ in bytecodevtabNext() 158 sqlite3_free(pCur->zP4); in bytecodevtabNext() 159 pCur->zP4 = 0; in bytecodevtabNext() 253 if( pCur->zP4==0 ){ in bytecodevtabColumn() 254 pCur->zP4 = sqlite3VdbeDisplayP4(pVTab->db, pOp); in bytecodevtabColumn() 257 sqlite3_result_text(ctx, pCur->zP4, -1, SQLITE_STATIC); in bytecodevtabColumn() 260 char *zCom = sqlite3VdbeDisplayComment(pVTab->db, pOp, pCur->zP4); in bytecodevtabColumn()
|
| H A D | vdbeaux.c | 1394 const char *zP4, in vdbeChangeP4Full() argument 1436 }else if( zP4!=0 ){ in sqlite3VdbeChangeP4() 1750 char *zP4 = 0; in sqlite3VdbeDisplayP4() local 1811 zP4 = pMem->z; in sqlite3VdbeDisplayP4() 1817 zP4 = "NULL"; in sqlite3VdbeDisplayP4() 1843 zP4 = "program"; in sqlite3VdbeDisplayP4() 1851 zP4 = pOp->p4.z; in sqlite3VdbeDisplayP4() 1854 if( zP4 ) sqlite3_str_appendall(&x, zP4); in sqlite3VdbeDisplayP4() 1947 char *zP4; in sqlite3VdbePrintOp() local 1965 zP4 ? zP4 : "", pOp->p5, in sqlite3VdbePrintOp() [all …]
|
| H A D | vdbe.h | 187 int sqlite3VdbeAddOp4(Vdbe*,int,int,int,int,const char *zP4,int); 241 void sqlite3VdbeChangeP4(Vdbe*, int addr, const char *zP4, int N);
|
| H A D | insert.c | 304 char *zP4 = pOp->p4.z; in sqlite3ComputeGeneratedColumns() local 305 assert( zP4!=0 ); in sqlite3ComputeGeneratedColumns() 307 for(ii=jj=0; zP4[jj]; ii++){ in sqlite3ComputeGeneratedColumns() 312 zP4[jj] = SQLITE_AFF_NONE; in sqlite3ComputeGeneratedColumns() 2418 const char *zP4; in sqlite3GenerateConstraintChecks() local 2424 zP4 = x.p4type==P4_INT32 ? SQLITE_INT_TO_PTR(x.p4.i) : x.p4.z; in sqlite3GenerateConstraintChecks() 2425 sqlite3VdbeAddOp4(v, x.opcode, x.p1, p2, x.p3, zP4, x.p4type); in sqlite3GenerateConstraintChecks()
|