Lines Matching refs:pz
18191 ** Store the string in memory obtained from sqliteMalloc() and make *pz
18194 SQLITE_PRIVATE void sqlite3SetString(char **pz, sqlite3 *db, const char *zFormat, ...){
18201 sqlite3DbFree(db, *pz);
18202 *pz = z;
19778 ** pZ is a UTF-8 encoded unicode string. If nByte is less than zero,
19779 ** return the number of unicode characters in pZ up to (but not including)
19781 ** number of unicode characters in the first nByte of pZ (or up to
19884 ** in pZ. nChar must be non-negative.
56091 char **pz = &p->aOp[p->nOp-1].zComment;
56093 sqlite3DbFree(p->db, *pz);
56094 *pz = sqlite3VMPrintf(p->db, zFormat, ap);
56105 char **pz = &p->aOp[p->nOp-1].zComment;
56107 sqlite3DbFree(p->db, *pz);
56108 *pz = sqlite3VMPrintf(p->db, zFormat, ap);
113482 ** The input word *pz and zFrom are both in reverse order. zTo
113490 char **pz, /* The word being stemmed (Reversed) */
113495 char *z = *pz;
113502 *pz = z;