Lines Matching refs:pz

11362 **   current document. If successful, (*pz) is set to point to a buffer
11366 ** of (*pz) and (*pn) are undefined.
11561 int (*xColumnText)(Fts5Context*, int iCol, const char **pz, int *pn);
25784 ** Free any prior content in *pz and replace it with a copy of zNew.
25786 SQLITE_PRIVATE void sqlite3SetString(char **pz, sqlite3 *db, const char *zNew){
25787 sqlite3DbFree(db, *pz);
25788 *pz = sqlite3DbStrDup(db, zNew);
28100 const unsigned char **pz /* Pointer to string from which to read char */
28107 c = *((*pz)++);
28110 while( (*(*pz) & 0xc0)==0x80 ){
28111 c = (c<<6) + (0x3f & *((*pz)++));
149566 char **pz, /* IN/OUT: Pointer to string buffer */
149576 if( z && *pz ){
149577 char *z2 = sqlite3_mprintf("%s%s", *pz, z);
149582 sqlite3_free(*pz);
149583 *pz = z;
157272 ** The input word *pz and zFrom are both in reverse order. zTo
157280 char **pz, /* The word being stemmed (Reversed) */
157285 char *z = *pz;
157292 *pz = z;
163845 ** Convert the text beginning at *pz into an integer and return
163846 ** its value. Advance *pz to point to the first character past
163852 static int fts3Getint(const char **pz){
163853 const char *z = *pz;
163856 *pz = z;
173162 ** Read bytes from *pz and convert them into a positive integer. When
173163 ** finished, leave *pz pointing to the first character past the end of
173165 ** in *pz and is decremented once for each character in the integer.
173167 static unsigned int rbuDeltaGetInt(const char **pz, int *pLen){
173180 unsigned char *z = (unsigned char*)*pz;
173187 *pz = (char*)z;
174677 char **pz = &p->zErrmsg;
174756 p->rc = prepareFreeAndCollectError(p->dbRbu, &pIter->pSelect, pz, zSql);
174785 p->rc = prepareFreeAndCollectError(p->dbMain, &pIter->pInsert, pz,
174797 p->rc = prepareFreeAndCollectError(p->dbMain, &pIter->pDelete, pz,
174858 p->rc = prepareFreeAndCollectError(p->dbRbu, &pIter->pSelect, pz,
186059 ** current document. If successful, (*pz) is set to point to a buffer
186063 ** of (*pz) and (*pn) are undefined.
186258 int (*xColumnText)(Fts5Context*, int iCol, const char **pz, int *pn);
190968 ** Read the first token from the nul-terminated string at *pz.
190972 const char **pz, /* IN/OUT: Pointer into buffer */
190975 const char *z = *pz;
191030 *pz = &pToken->p[pToken->n];
192243 static int fts5ParseStringFromToken(Fts5Token *pToken, char **pz){
192245 *pz = sqlite3Fts5Strndup(&rc, pToken->p, pToken->n);
202393 const char **pz,
202399 *pz = 0;
202404 *pz = (const char*)sqlite3_column_text(pCsr->pStmt, iCol+1);