Searched refs:zKey (Results 1 – 2 of 2) sorted by relevance
| /freebsd/contrib/sqlite3/ |
| H A D | shell.c | 12895 char *zKey; /* nul-terminated key */ member 12988 const char *zKey, in idxHashAdd() argument 12991 int nKey = STRLEN(zKey); in idxHashAdd() 12992 int iHash = idxHashString(zKey, nKey); in idxHashAdd() 12997 if( STRLEN(pEntry->zKey)==nKey && 0==memcmp(pEntry->zKey, zKey, nKey) ){ in idxHashAdd() 13003 pEntry->zKey = (char*)&pEntry[1]; in idxHashAdd() 13004 memcpy(pEntry->zKey, zKey, nKey); in idxHashAdd() 13006 pEntry->zVal = &pEntry->zKey[nKey+1]; in idxHashAdd() 13022 static IdxHashEntry *idxHashFind(IdxHash *pHash, const char *zKey, int nKey){ in idxHashFind() argument 13025 if( nKey<0 ) nKey = STRLEN(zKey); in idxHashFind() [all …]
|
| H A D | sqlite3.c | 38032 static int kvstorageWrite(const char*, const char *zKey, const char *zData); 38033 static int kvstorageDelete(const char*, const char *zKey); 38034 static int kvstorageRead(const char*, const char *zKey, char *zBuf, int nBuf); 38058 const char *zKey, in kvstorageWrite() argument 38063 kvstorageMakeKey(zClass, zKey, zXKey); in kvstorageWrite() 38081 static int kvstorageDelete(const char *zClass, const char *zKey){ in kvstorageDelete() argument 38083 kvstorageMakeKey(zClass, zKey, zXKey); in kvstorageDelete() 38104 const char *zKey, in kvstorageRead() argument 38111 kvstorageMakeKey(zClass, zKey, zXKey); in kvstorageRead() 38157 int (*xRead)(const char *zClass, const char *zKey, char *zBuf, int nBuf); [all …]
|