Lines Matching refs:pVfs
166 static void (*apndDlSym(sqlite3_vfs *pVfs, void *p, const char*zSym))(void);
574 static int apndDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ in apndDelete() argument
575 return ORIGVFS(pVfs)->xDelete(ORIGVFS(pVfs), zPath, dirSync); in apndDelete()
582 sqlite3_vfs *pVfs, in apndAccess() argument
587 return ORIGVFS(pVfs)->xAccess(ORIGVFS(pVfs), zPath, flags, pResOut); in apndAccess()
590 sqlite3_vfs *pVfs, in apndFullPathname() argument
595 return ORIGVFS(pVfs)->xFullPathname(ORIGVFS(pVfs),zPath,nOut,zOut); in apndFullPathname()
597 static void *apndDlOpen(sqlite3_vfs *pVfs, const char *zPath){ in apndDlOpen() argument
598 return ORIGVFS(pVfs)->xDlOpen(ORIGVFS(pVfs), zPath); in apndDlOpen()
600 static void apndDlError(sqlite3_vfs *pVfs, int nByte, char *zErrMsg){ in apndDlError() argument
601 ORIGVFS(pVfs)->xDlError(ORIGVFS(pVfs), nByte, zErrMsg); in apndDlError()
603 static void (*apndDlSym(sqlite3_vfs *pVfs, void *p, const char *zSym))(void){ in apndDlSym() argument
604 return ORIGVFS(pVfs)->xDlSym(ORIGVFS(pVfs), p, zSym); in apndDlSym()
606 static void apndDlClose(sqlite3_vfs *pVfs, void *pHandle){ in apndDlClose() argument
607 ORIGVFS(pVfs)->xDlClose(ORIGVFS(pVfs), pHandle); in apndDlClose()
609 static int apndRandomness(sqlite3_vfs *pVfs, int nByte, char *zBufOut){ in apndRandomness() argument
610 return ORIGVFS(pVfs)->xRandomness(ORIGVFS(pVfs), nByte, zBufOut); in apndRandomness()
612 static int apndSleep(sqlite3_vfs *pVfs, int nMicro){ in apndSleep() argument
613 return ORIGVFS(pVfs)->xSleep(ORIGVFS(pVfs), nMicro); in apndSleep()
615 static int apndCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){ in apndCurrentTime() argument
616 return ORIGVFS(pVfs)->xCurrentTime(ORIGVFS(pVfs), pTimeOut); in apndCurrentTime()
618 static int apndGetLastError(sqlite3_vfs *pVfs, int a, char *b){ in apndGetLastError() argument
619 return ORIGVFS(pVfs)->xGetLastError(ORIGVFS(pVfs), a, b); in apndGetLastError()
621 static int apndCurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *p){ in apndCurrentTimeInt64() argument
622 return ORIGVFS(pVfs)->xCurrentTimeInt64(ORIGVFS(pVfs), p); in apndCurrentTimeInt64()
625 sqlite3_vfs *pVfs, in apndSetSystemCall() argument
629 return ORIGVFS(pVfs)->xSetSystemCall(ORIGVFS(pVfs),zName,pCall); in apndSetSystemCall()
632 sqlite3_vfs *pVfs, in apndGetSystemCall() argument
635 return ORIGVFS(pVfs)->xGetSystemCall(ORIGVFS(pVfs),zName); in apndGetSystemCall()
637 static const char *apndNextSystemCall(sqlite3_vfs *pVfs, const char *zName){ in apndNextSystemCall() argument
638 return ORIGVFS(pVfs)->xNextSystemCall(ORIGVFS(pVfs), zName); in apndNextSystemCall()