Lines Matching refs:pVfs

585   sqlite3_vfs *pVfs,  in fsOpen()  argument
591 fs_vfs_t *pFsVfs = (fs_vfs_t *)pVfs; in fsOpen()
686 static int fsDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ in fsDelete() argument
688 fs_vfs_t *pFsVfs = (fs_vfs_t *)pVfs; in fsDelete()
713 sqlite3_vfs *pVfs, in fsAccess() argument
718 fs_vfs_t *pFsVfs = (fs_vfs_t *)pVfs; in fsAccess()
724 sqlite3_vfs *pParent = ((fs_vfs_t *)pVfs)->pParent; in fsAccess()
747 sqlite3_vfs *pVfs, /* Pointer to vfs object */ in fsFullPathname() argument
752 sqlite3_vfs *pParent = ((fs_vfs_t *)pVfs)->pParent; in fsFullPathname()
759 static void *fsDlOpen(sqlite3_vfs *pVfs, const char *zPath){ in fsDlOpen() argument
760 sqlite3_vfs *pParent = ((fs_vfs_t *)pVfs)->pParent; in fsDlOpen()
769 static void fsDlError(sqlite3_vfs *pVfs, int nByte, char *zErrMsg){ in fsDlError() argument
770 sqlite3_vfs *pParent = ((fs_vfs_t *)pVfs)->pParent; in fsDlError()
777 static void (*fsDlSym(sqlite3_vfs *pVfs, void *pH, const char *zSym))(void){ in fsDlSym() argument
778 sqlite3_vfs *pParent = ((fs_vfs_t *)pVfs)->pParent; in fsDlSym()
785 static void fsDlClose(sqlite3_vfs *pVfs, void *pHandle){ in fsDlClose() argument
786 sqlite3_vfs *pParent = ((fs_vfs_t *)pVfs)->pParent; in fsDlClose()
794 static int fsRandomness(sqlite3_vfs *pVfs, int nByte, char *zBufOut){ in fsRandomness() argument
795 sqlite3_vfs *pParent = ((fs_vfs_t *)pVfs)->pParent; in fsRandomness()
803 static int fsSleep(sqlite3_vfs *pVfs, int nMicro){ in fsSleep() argument
804 sqlite3_vfs *pParent = ((fs_vfs_t *)pVfs)->pParent; in fsSleep()
811 static int fsCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){ in fsCurrentTime() argument
812 sqlite3_vfs *pParent = ((fs_vfs_t *)pVfs)->pParent; in fsCurrentTime()