Lines Matching refs:pVfs
3731 static void (*apndDlSym(sqlite3_vfs *pVfs, void *p, const char*zSym))(void);
4032 sqlite3_vfs *pVfs, in apndOpen() argument
4043 pSubVfs = ORIGVFS(pVfs); in apndOpen()
4080 static int apndDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ in apndDelete() argument
4081 return ORIGVFS(pVfs)->xDelete(ORIGVFS(pVfs), zPath, dirSync); in apndDelete()
4084 sqlite3_vfs *pVfs, in apndAccess() argument
4089 return ORIGVFS(pVfs)->xAccess(ORIGVFS(pVfs), zPath, flags, pResOut); in apndAccess()
4092 sqlite3_vfs *pVfs, in apndFullPathname() argument
4097 return ORIGVFS(pVfs)->xFullPathname(ORIGVFS(pVfs),zPath,nOut,zOut); in apndFullPathname()
4099 static void *apndDlOpen(sqlite3_vfs *pVfs, const char *zPath){ in apndDlOpen() argument
4100 return ORIGVFS(pVfs)->xDlOpen(ORIGVFS(pVfs), zPath); in apndDlOpen()
4102 static void apndDlError(sqlite3_vfs *pVfs, int nByte, char *zErrMsg){ in apndDlError() argument
4103 ORIGVFS(pVfs)->xDlError(ORIGVFS(pVfs), nByte, zErrMsg); in apndDlError()
4105 static void (*apndDlSym(sqlite3_vfs *pVfs, void *p, const char *zSym))(void){ in apndDlSym() argument
4106 return ORIGVFS(pVfs)->xDlSym(ORIGVFS(pVfs), p, zSym); in apndDlSym()
4108 static void apndDlClose(sqlite3_vfs *pVfs, void *pHandle){ in apndDlClose() argument
4109 ORIGVFS(pVfs)->xDlClose(ORIGVFS(pVfs), pHandle); in apndDlClose()
4111 static int apndRandomness(sqlite3_vfs *pVfs, int nByte, char *zBufOut){ in apndRandomness() argument
4112 return ORIGVFS(pVfs)->xRandomness(ORIGVFS(pVfs), nByte, zBufOut); in apndRandomness()
4114 static int apndSleep(sqlite3_vfs *pVfs, int nMicro){ in apndSleep() argument
4115 return ORIGVFS(pVfs)->xSleep(ORIGVFS(pVfs), nMicro); in apndSleep()
4117 static int apndCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){ in apndCurrentTime() argument
4118 return ORIGVFS(pVfs)->xCurrentTime(ORIGVFS(pVfs), pTimeOut); in apndCurrentTime()
4120 static int apndGetLastError(sqlite3_vfs *pVfs, int a, char *b){ in apndGetLastError() argument
4121 return ORIGVFS(pVfs)->xGetLastError(ORIGVFS(pVfs), a, b); in apndGetLastError()
4123 static int apndCurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *p){ in apndCurrentTimeInt64() argument
4124 return ORIGVFS(pVfs)->xCurrentTimeInt64(ORIGVFS(pVfs), p); in apndCurrentTimeInt64()
4127 sqlite3_vfs *pVfs, in apndSetSystemCall() argument
4131 return ORIGVFS(pVfs)->xSetSystemCall(ORIGVFS(pVfs),zName,pCall); in apndSetSystemCall()
4134 sqlite3_vfs *pVfs, in apndGetSystemCall() argument
4137 return ORIGVFS(pVfs)->xGetSystemCall(ORIGVFS(pVfs),zName); in apndGetSystemCall()
4139 static const char *apndNextSystemCall(sqlite3_vfs *pVfs, const char *zName){ in apndNextSystemCall() argument
4140 return ORIGVFS(pVfs)->xNextSystemCall(ORIGVFS(pVfs), zName); in apndNextSystemCall()
5864 sqlite3_vfs *pVfs = sqlite3_vfs_find(0); in zipfileTime() local
5866 if( pVfs->iVersion>=2 && pVfs->xCurrentTimeInt64 ){ in zipfileTime()
5868 pVfs->xCurrentTimeInt64(pVfs, &ms); in zipfileTime()
5872 pVfs->xCurrentTime(pVfs, &day); in zipfileTime()
18495 sqlite3_vfs *pVfs = 0; in do_meta_command() local
18497 sqlite3_file_control(p->db, zDbName, SQLITE_FCNTL_VFS_POINTER, &pVfs); in do_meta_command()
18498 if( pVfs ){ in do_meta_command()
18499 utf8_printf(p->out, "vfs.zName = \"%s\"\n", pVfs->zName); in do_meta_command()
18500 raw_printf(p->out, "vfs.iVersion = %d\n", pVfs->iVersion); in do_meta_command()
18501 raw_printf(p->out, "vfs.szOsFile = %d\n", pVfs->szOsFile); in do_meta_command()
18502 raw_printf(p->out, "vfs.mxPathname = %d\n", pVfs->mxPathname); in do_meta_command()
18508 sqlite3_vfs *pVfs; in do_meta_command() local
18513 for(pVfs=sqlite3_vfs_find(0); pVfs; pVfs=pVfs->pNext){ in do_meta_command()
18514 utf8_printf(p->out, "vfs.zName = \"%s\"%s\n", pVfs->zName, in do_meta_command()
18515 pVfs==pCurrent ? " <--- CURRENT" : ""); in do_meta_command()
18516 raw_printf(p->out, "vfs.iVersion = %d\n", pVfs->iVersion); in do_meta_command()
18517 raw_printf(p->out, "vfs.szOsFile = %d\n", pVfs->szOsFile); in do_meta_command()
18518 raw_printf(p->out, "vfs.mxPathname = %d\n", pVfs->mxPathname); in do_meta_command()
18519 if( pVfs->pNext ){ in do_meta_command()
19272 sqlite3_vfs *pVfs = sqlite3_vfs_find(zVfs); local
19273 if( pVfs ){
19274 sqlite3_vfs_register(pVfs, 1);