Home | History | Annotate | Download | only in dist

Lines Matching defs:pZ

8225 **   current document. If successful, (*pz) is set to point to a buffer
8229 ** of (*pz) and (*pn) are undefined.
8370 int (*xColumnText)(Fts5Context*, int iCol, const char **pz, int *pn);
22072 ** Free any prior content in *pz and replace it with a copy of zNew.
22074 SQLITE_PRIVATE void sqlite3SetString(char **pz, sqlite3 *db, const char *zNew){
22075 sqlite3DbFree(db, *pz);
22076 *pz = sqlite3DbStrDup(db, zNew);
23545 Expr *pZ = pExpr->x.pList->a[1].pExpr;
23549 sqlite3TreeViewExpr(pView, pZ, 0);
24212 const unsigned char **pz /* Pointer to string from which to read char */
24219 c = *((*pz)++);
24222 while( (*(*pz) & 0xc0)==0x80 ){
24223 c = (c<<6) + (0x3f & *((*pz)++));
24422 ** pZ is a UTF-8 encoded unicode string. If nByte is less than zero,
24423 ** return the number of unicode characters in pZ up to (but not including)
24425 ** number of unicode characters in the first nByte of pZ (or up to
24501 ** in pZ. nChar must be non-negative.
136636 char **pz, /* IN/OUT: Pointer to string buffer */
136646 if( z && *pz ){
136647 char *z2 = sqlite3_mprintf("%s%s", *pz, z);
136652 sqlite3_free(*pz);
136653 *pz = z;
144323 ** The input word *pz
144331 char **pz, /* The word being stemmed (Reversed) */
144336 char *z = *pz;
144343 *pz = z;
150871 ** Convert the text beginning at *pz into an integer and return
150872 ** its value. Advance *pz to point to the first character past
150875 static int fts3Getint(const char **pz){
150876 const char *z = *pz;
150879 *pz = z;
159194 ** Read bytes from *pz and convert them into a positive integer. When
159195 ** finished, leave *pz pointing to the first character past the end of
159197 ** in *pz and is decremented once for each character in the integer.
159199 static unsigned int rbuDeltaGetInt(const char **pz, int *pLen){
159212 unsigned char *z = (unsigned char*)*pz;
159219 *pz = (char*)z;
160670 char **pz = &p->zErrmsg;
160740 p->rc = prepareFreeAndCollectError(p->dbRbu, &pIter->pSelect, pz, zSql);
160767 p->rc = prepareFreeAndCollectError(p->dbMain, &pIter->pInsert, pz,
160777 p->rc = prepareFreeAndCollectError(p->dbMain, &pIter->pDelete, pz,
160834 p->rc = prepareFreeAndCollectError(p->dbRbu, &pIter->pSelect, pz,
165739 ** current document. If successful, (*pz) is set to point to a buffer
165743 ** of (*pz) and (*pn) are undefined.
165884 int (*xColumnText)(Fts5Context*, int iCol, const char **pz, int *pn);
169931 ** Read the first token from the nul-terminated string at *pz.
169935 const char **pz, /* IN/OUT: Pointer into buffer */
169938 const char *z = *pz;
169991 *pz = &pToken->p[pToken->n];
171116 static int fts5ParseStringFromToken(Fts5Token *pToken, char **pz){
171118 *pz = sqlite3Fts5Strndup(&rc, pToken->p, pToken->n);
179966 const char **pz,
179972 *pz = 0;
179977 *pz = (const char*)sqlite3_column_text(pCsr->pStmt, iCol+1);