Lines Matching refs:zKey

37207 static int kvstorageWrite(const char*, const char *zKey, const char *zData);
37208 static int kvstorageDelete(const char*, const char *zKey);
37209 static int kvstorageRead(const char*, const char *zKey, char *zBuf, int nBuf);
37233 const char *zKey,
37238 kvstorageMakeKey(zClass, zKey, zXKey);
37256 static int kvstorageDelete(const char *zClass, const char *zKey){
37258 kvstorageMakeKey(zClass, zKey, zXKey);
37279 const char *zKey,
37286 kvstorageMakeKey(zClass, zKey, zXKey);
37332 int (*xRead)(const char *zClass, const char *zKey, char *zBuf, int nBuf);
37333 int (*xWrite)(const char *zClass, const char *zKey, const char *zData);
37334 int (*xDelete)(const char *zClass, const char *zKey);
37581 char zKey[30];
37598 sqlite3_snprintf(sizeof(zKey), zKey, "%u", pgno);
37599 got = sqlite3KvvfsMethods.xRead(pFile->zClass, zKey,
37666 char zKey[30];
37674 sqlite3_snprintf(sizeof(zKey), zKey, "%u", pgno);
37676 if( sqlite3KvvfsMethods.xWrite(pFile->zClass, zKey, aData) ){
37704 char zKey[50];
37710 sqlite3_snprintf(sizeof(zKey), zKey, "%u", pgno);
37711 sqlite3KvvfsMethods.xDelete(pFile->zClass, zKey);
130848 char *zKey = pFKey->aCol[0].zCol; /* Name of left-most parent key column */
130872 if( !zKey ) return 0;
130873 if( !sqlite3StrICmp(pParent->aCol[pParent->iPKey].zCnName, zKey) ){
130890 if( zKey==0 ){
131488 char *zKey = p->aCol[i].zCol;
131493 if( zKey ){
131494 if( 0==sqlite3StrICmp(pCol->zCnName, zKey) ) return 1;
196576 char *zKey = (char *)fts3HashKey(pE);
196578 if( nTerm==0 || (nKey>=nTerm && 0==memcmp(zKey, zTerm, nTerm)) ){
199115 const char *zKey, /* First key to write */
199170 if( fts3TermCmp(zKey, nKey, reader.term.a, reader.term.n)<=0 ){
199896 const char *zKey = pCsr->zTerm;
199898 rc = fts3IncrmergeLoad(p, iAbsLevel, iIdx-1, zKey, nKey, pWriter);
205911 const char *zKey;
205939 zKey = zPath + 1;
205948 rawKey = memchr(zKey, '\\', nKey)==0;
205950 zKey = zPath;
205972 if( jsonLabelCompare(zKey, nKey, rawKey, zLabel, sz, rawLabel) ){
206011 memcpy(&pParse->aBlob[k], zKey, nKey);
234569 const char *zKey,
234575 if( 0==sqlite3_stricmp(zKey, "pgsz") ){
234587 else if( 0==sqlite3_stricmp(zKey, "hashsize") ){
234599 else if( 0==sqlite3_stricmp(zKey, "automerge") ){
234612 else if( 0==sqlite3_stricmp(zKey, "usermerge") ){
234624 else if( 0==sqlite3_stricmp(zKey, "crisismerge") ){
234638 else if( 0==sqlite3_stricmp(zKey, "deletemerge") ){
234650 else if( 0==sqlite3_stricmp(zKey, "rank") ){
234666 else if( 0==sqlite3_stricmp(zKey, "secure-delete") ){
238264 char *zKey = fts5EntryKey(p);
238265 if( zKey[0]==bByte
238267 && memcmp(&zKey[1], pToken, nToken)==0
238276 char *zKey;
238292 zKey = fts5EntryKey(p);
238293 zKey[0] = bByte;
238294 memcpy(&zKey[1], pToken, nToken);
238295 assert( iHash==fts5HashKey(pHash->nSlot, (u8*)zKey, nToken+1) );
238297 zKey[nToken+1] = '\0';
238501 char *zKey = 0;
238505 zKey = fts5EntryKey(p);
238506 if( nTerm==p->nKey && memcmp(zKey, pTerm, nTerm)==0 ) break;
238577 char *zKey = fts5EntryKey(p);
238580 *pzTerm = zKey;
238582 *ppDoclist = (const u8*)&zKey[nTerm];