Lines Matching defs:zRoot

173011       char const *zRoot = sqlite3_column_blob(pStmt, 4);
173015 if( iStartBlock && zTerm && zRoot ){
173017 rc = fts3SelectLeaf(p, zTerm, nTerm, zRoot, nRoot, &iStartBlock, pi);
173025 iEndBlock, zRoot, nRoot, &pSeg
181837 const char *zRoot, /* Buffer containing root node */
181844 assert( zRoot!=0 || nRoot==0 );
181846 assert( zRoot!=0 || CORRUPT_DB );
181870 if( nRoot ) memcpy(pReader->aNode, zRoot, nRoot);
182191 char *zRoot, /* Blob value for "root" field */
182192 int nRoot /* Number of bytes in buffer zRoot */
182208 sqlite3_bind_blob(pStmt, 6, zRoot, nRoot, SQLITE_STATIC);
182612 char *zRoot = NULL; /* Pointer to buffer containing root node */
182613 int nRoot = 0; /* Size of buffer zRoot */
182619 pWriter->iFirst, pWriter->iFree, &iLast, &zRoot, &nRoot);
182623 pWriter->iFirst, iLastLeaf, iLast, pWriter->nLeafData, zRoot, nRoot);
190620 char *zRoot; /* Path by which to filter zJson */
190698 sqlite3_free(p->zRoot);
190705 p->zRoot = 0;
190849 if( p->zRoot ){
190850 jsonAppendRaw(&x, p->zRoot, (int)strlen(p->zRoot));
190876 const char *zRoot = p->zRoot;
190877 if( zRoot==0 ) zRoot = "$";
190878 sqlite3_result_text(ctx, zRoot, -1, SQLITE_STATIC);
190899 ** 1 if the constraint is found, 3 if the constraint and zRoot are found,
190967 const char *zRoot = 0;
190996 zRoot = (const char*)sqlite3_value_text(argv[1]);
190997 if( zRoot==0 ) return SQLITE_OK;
190999 p->zRoot = sqlite3_malloc64( n+1 );
191000 if( p->zRoot==0 ) return SQLITE_NOMEM;
191001 memcpy(p->zRoot, zRoot, (size_t)n+1);
191002 if( zRoot[0]!='$' ){
191003 zErr = zRoot;
191005 pNode = jsonLookupStep(&p->sParse, 0, p->zRoot+1, 0, &zErr);