Lines Matching refs:pAsyncVfs
1015 sqlite3_vfs *pAsyncVfs, in asyncOpen() argument
1037 sqlite3_vfs *pVfs = (sqlite3_vfs *)pAsyncVfs->pAppData; in asyncOpen()
1176 static int asyncDelete(sqlite3_vfs *pAsyncVfs, const char *z, int syncDir){ in asyncDelete() argument
1177 UNUSED_PARAMETER(pAsyncVfs); in asyncDelete()
1186 sqlite3_vfs *pAsyncVfs, in asyncAccess() argument
1194 sqlite3_vfs *pVfs = (sqlite3_vfs *)pAsyncVfs->pAppData; in asyncAccess()
1229 sqlite3_vfs *pAsyncVfs, in asyncFullPathname() argument
1235 sqlite3_vfs *pVfs = (sqlite3_vfs *)pAsyncVfs->pAppData; in asyncFullPathname()
1268 static void *asyncDlOpen(sqlite3_vfs *pAsyncVfs, const char *zPath){ in asyncDlOpen() argument
1269 sqlite3_vfs *pVfs = (sqlite3_vfs *)pAsyncVfs->pAppData; in asyncDlOpen()
1272 static void asyncDlError(sqlite3_vfs *pAsyncVfs, int nByte, char *zErrMsg){ in asyncDlError() argument
1273 sqlite3_vfs *pVfs = (sqlite3_vfs *)pAsyncVfs->pAppData; in asyncDlError()
1277 sqlite3_vfs *pAsyncVfs, in asyncDlSym() argument
1281 sqlite3_vfs *pVfs = (sqlite3_vfs *)pAsyncVfs->pAppData; in asyncDlSym()
1284 static void asyncDlClose(sqlite3_vfs *pAsyncVfs, void *pHandle){ in asyncDlClose() argument
1285 sqlite3_vfs *pVfs = (sqlite3_vfs *)pAsyncVfs->pAppData; in asyncDlClose()
1288 static int asyncRandomness(sqlite3_vfs *pAsyncVfs, int nByte, char *zBufOut){ in asyncRandomness() argument
1289 sqlite3_vfs *pVfs = (sqlite3_vfs *)pAsyncVfs->pAppData; in asyncRandomness()
1292 static int asyncSleep(sqlite3_vfs *pAsyncVfs, int nMicro){ in asyncSleep() argument
1293 sqlite3_vfs *pVfs = (sqlite3_vfs *)pAsyncVfs->pAppData; in asyncSleep()
1296 static int asyncCurrentTime(sqlite3_vfs *pAsyncVfs, double *pTimeOut){ in asyncCurrentTime() argument
1297 sqlite3_vfs *pVfs = (sqlite3_vfs *)pAsyncVfs->pAppData; in asyncCurrentTime()