Lines Matching refs:zPath
849 static int kvvfsDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ in kvvfsDelete() argument
850 if( strcmp(zPath, "local-journal")==0 ){ in kvvfsDelete()
853 if( strcmp(zPath, "session-journal")==0 ){ in kvvfsDelete()
865 const char *zPath, in kvvfsAccess() argument
869 SQLITE_KV_LOG(("xAccess(\"%s\")\n", zPath)); in kvvfsAccess()
870 if( strcmp(zPath, "local-journal")==0 ){ in kvvfsAccess()
873 if( strcmp(zPath, "session-journal")==0 ){ in kvvfsAccess()
876 if( strcmp(zPath, "local")==0 ){ in kvvfsAccess()
879 if( strcmp(zPath, "session")==0 ){ in kvvfsAccess()
896 const char *zPath, in kvvfsFullPathname() argument
902 zPath = "local"; in kvvfsFullPathname()
904 nPath = strlen(zPath); in kvvfsFullPathname()
905 SQLITE_KV_LOG(("xFullPathname(\"%s\")\n", zPath)); in kvvfsFullPathname()
907 memcpy(zOut, zPath, nPath); in kvvfsFullPathname()
915 static void *kvvfsDlOpen(sqlite3_vfs *pVfs, const char *zPath){ in kvvfsDlOpen() argument