Searched refs:zVfs (Results 1 – 4 of 4) sorted by relevance
| /freebsd/contrib/sqlite3/tea/generic/ |
| H A D | tclsqlite3.c | 4269 const char *zVfs = 0; in DbMain() local 4316 zVfs = Tcl_GetString(objv[i]); in DbMain() 4385 rc = sqlite3_open_v2(zFile, &p->db, flags, zVfs); in DbMain()
|
| /freebsd/contrib/sqlite3/ |
| H A D | sqlite3.h | 4002 const char *zVfs /* Name of VFS module to use */
|
| H A D | shell.c | 32528 const char *zVfs = 0; in do_meta_command() local 32535 zVfs = "apndvfs"; in do_meta_command() 32560 SQLITE_OPEN_READWRITE|SQLITE_OPEN_CREATE, zVfs); in do_meta_command() 36449 const char *zVfs = 0; /* Value of -vfs command-line option */ in main() local 36652 zVfs = cmdline_option_value(argc, argv, ++i); in main() 36731 if( zVfs ){ in main() 36732 sqlite3_vfs *pVfs = sqlite3_vfs_find(zVfs); in main() 36737 else if( access(zVfs,0)==0 ){ in main() 36745 rc = sqlite3_load_extension(db, zVfs, 0, &zErr); in main() 36749 zVfs, zErr); in main() [all …]
|
| H A D | sqlite3.c | 4323 const char *zVfs /* Name of VFS module to use */ 27623 SQLITE_API sqlite3_vfs *sqlite3_vfs_find(const char *zVfs){ in sqlite3_vfs_find() argument 27637 if( zVfs==0 ) break; in sqlite3_vfs_find() 27638 if( strcmp(zVfs, pVfs->zName)==0 ) break; in sqlite3_vfs_find() 136918 const char *zVfs; local 136929 zVfs = pVfs->zName; 136933 rc = sqlite3ParseUri(zVfs, zUri, &flgs, &pVfs, &zFile, &zErr); 190186 const char *zVfs = zDefaultVfs; local 190316 zVfs = zVal; 190394 *ppVfs = sqlite3_vfs_find(zVfs); [all …]
|