Home | History | Annotate | Download | only in amalgamation

Lines Matching refs:zVfs

2967   const char *zVfs        /* Name of VFS module to use */
14197 SQLITE_API sqlite3_vfs *sqlite3_vfs_find(const char *zVfs){
14211 if( zVfs==0 ) break;
14212 if( strcmp(zVfs, pVfs->zName)==0 ) break;
109042 const char *zVfs /* Name of the VFS to use */
109151 db->pVfs = sqlite3_vfs_find(zVfs);
109154 sqlite3Error(db, rc, "no such vfs: %s", zVfs);
109304 const char *zVfs /* Name of VFS module to use */
109306 return openDatabase(filename, ppDb, flags, zVfs);