Home
last modified time | relevance | path

Searched refs:zKey (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/sqlite3/
H A Dshell.c12056 char *zKey; /* nul-terminated key */ member
12149 const char *zKey, in idxHashAdd() argument
12152 int nKey = STRLEN(zKey); in idxHashAdd()
12153 int iHash = idxHashString(zKey, nKey); in idxHashAdd()
12158 if( STRLEN(pEntry->zKey)==nKey && 0==memcmp(pEntry->zKey, zKey, nKey) ){ in idxHashAdd()
12164 pEntry->zKey = (char*)&pEntry[1]; in idxHashAdd()
12165 memcpy(pEntry->zKey, zKey, nKey); in idxHashAdd()
12167 pEntry->zVal = &pEntry->zKey[nKey+1]; in idxHashAdd()
12183 static IdxHashEntry *idxHashFind(IdxHash *pHash, const char *zKey, int nKey){ in idxHashFind() argument
12186 if( nKey<0 ) nKey = STRLEN(zKey); in idxHashFind()
[all …]
H A Dsqlite3.c37547 static int kvstorageWrite(const char*, const char *zKey, const char *zData);
37548 static int kvstorageDelete(const char*, const char *zKey);
37549 static int kvstorageRead(const char*, const char *zKey, char *zBuf, int nBuf);
37573 const char *zKey,
37578 kvstorageMakeKey(zClass, zKey, zXKey);
37596 static int kvstorageDelete(const char *zClass, const char *zKey){
37598 kvstorageMakeKey(zClass, zKey, zXKey);
37619 const char *zKey,
37626 kvstorageMakeKey(zClass, zKey, zXKey);
37672 int (*xRead)(const char *zClass, const char *zKey, char *zBuf, int nBuf);
[all …]