Searched refs:zKey (Results 1 – 2 of 2) sorted by relevance
/netbsd-src/external/public-domain/sqlite/dist/ |
H A D | shell.c | 11977 char *zKey; /* nul-terminated key */ member 12070 const char *zKey, in idxHashAdd() argument 12073 int nKey = STRLEN(zKey); in idxHashAdd() 12074 int iHash = idxHashString(zKey, nKey); in idxHashAdd() 12079 if( STRLEN(pEntry->zKey)==nKey && 0==memcmp(pEntry->zKey, zKey, nKey) ){ in idxHashAdd() 12085 pEntry->zKey = (char*)&pEntry[1]; in idxHashAdd() 12086 memcpy(pEntry->zKey, zKey, nKey); in idxHashAdd() 12088 pEntry->zVal = &pEntry->zKey[nKey+1]; in idxHashAdd() 12104 static IdxHashEntry *idxHashFind(IdxHash *pHash, const char *zKey, int nKey){ in idxHashFind() argument 12107 if( nKey<0 ) nKey = STRLEN(zKey); in idxHashFind() [all …]
|
H A D | sqlite3.c | 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); [all …]
|