Home
last modified time | relevance | path

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

/sqlite-3.40.0/src/
H A Dos_kv.c199 char zXKey[KVSTORAGE_KEY_SZ]; in kvstorageWrite() local
200 kvstorageMakeKey(zClass, zKey, zXKey); in kvstorageWrite()
201 fd = fopen(zXKey, "wb"); in kvstorageWrite()
219 char zXKey[KVSTORAGE_KEY_SZ]; in kvstorageDelete() local
220 kvstorageMakeKey(zClass, zKey, zXKey); in kvstorageDelete()
221 unlink(zXKey); in kvstorageDelete()
247 char zXKey[KVSTORAGE_KEY_SZ]; in kvstorageRead() local
248 kvstorageMakeKey(zClass, zKey, zXKey); in kvstorageRead()
249 if( access(zXKey, R_OK)!=0 in kvstorageRead()
250 || stat(zXKey, &buf)!=0 in kvstorageRead()
[all …]
/sqlite-3.40.0/ext/wasm/api/
H A Dsqlite3-api-glue.js649 const zXKey = kvvfsMakeKey(zClass,zKey);
650 if(!zXKey) return -3/*OOM*/;
651 const jKey = wasm.cstringToJs(zXKey);
678 const zXKey = kvvfsMakeKey(zClass,zKey);
679 if(!zXKey) return 1/*OOM*/;
680 const jKey = wasm.cstringToJs(zXKey);
693 const zXKey = kvvfsMakeKey(zClass,zKey);
694 if(!zXKey) return 1/*OOM*/;
695 kvvfsStorage(zClass).removeItem(wasm.cstringToJs(zXKey));