Lines Matching refs:pz
18184 ** Store the string in memory obtained from sqliteMalloc() and make *pz
18187 SQLITE_PRIVATE void sqlite3SetString(char **pz, sqlite3 *db, const char *zFormat, ...){
18194 sqlite3DbFree(db, *pz);
18195 *pz = z;
19771 ** pZ is a UTF-8 encoded unicode string. If nByte is less than zero,
19772 ** return the number of unicode characters in pZ up to (but not including)
19774 ** number of unicode characters in the first nByte of pZ (or up to
19877 ** in pZ. nChar must be non-negative.
56084 char **pz = &p->aOp[p->nOp-1].zComment;
56086 sqlite3DbFree(p->db, *pz);
56087 *pz = sqlite3VMPrintf(p->db, zFormat, ap);
56098 char **pz = &p->aOp[p->nOp-1].zComment;
56100 sqlite3DbFree(p->db, *pz);
56101 *pz = sqlite3VMPrintf(p->db, zFormat, ap);
113451 ** The input word *pz and zFrom are both in reverse order. zTo
113459 char **pz, /* The word being stemmed (Reversed) */
113464 char *z = *pz;
113471 *pz = z;