Lines Matching refs:pVfs

8865 static void (*apndDlSym(sqlite3_vfs *pVfs, void *p, const char*zSym))(void);
9273 static int apndDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ in apndDelete() argument
9274 return ORIGVFS(pVfs)->xDelete(ORIGVFS(pVfs), zPath, dirSync); in apndDelete()
9281 sqlite3_vfs *pVfs, in apndAccess() argument
9286 return ORIGVFS(pVfs)->xAccess(ORIGVFS(pVfs), zPath, flags, pResOut); in apndAccess()
9289 sqlite3_vfs *pVfs, in apndFullPathname() argument
9294 return ORIGVFS(pVfs)->xFullPathname(ORIGVFS(pVfs),zPath,nOut,zOut); in apndFullPathname()
9296 static void *apndDlOpen(sqlite3_vfs *pVfs, const char *zPath){ in apndDlOpen() argument
9297 return ORIGVFS(pVfs)->xDlOpen(ORIGVFS(pVfs), zPath); in apndDlOpen()
9299 static void apndDlError(sqlite3_vfs *pVfs, int nByte, char *zErrMsg){ in apndDlError() argument
9300 ORIGVFS(pVfs)->xDlError(ORIGVFS(pVfs), nByte, zErrMsg); in apndDlError()
9302 static void (*apndDlSym(sqlite3_vfs *pVfs, void *p, const char *zSym))(void){ in apndDlSym() argument
9303 return ORIGVFS(pVfs)->xDlSym(ORIGVFS(pVfs), p, zSym); in apndDlSym()
9305 static void apndDlClose(sqlite3_vfs *pVfs, void *pHandle){ in apndDlClose() argument
9306 ORIGVFS(pVfs)->xDlClose(ORIGVFS(pVfs), pHandle); in apndDlClose()
9308 static int apndRandomness(sqlite3_vfs *pVfs, int nByte, char *zBufOut){ in apndRandomness() argument
9309 return ORIGVFS(pVfs)->xRandomness(ORIGVFS(pVfs), nByte, zBufOut); in apndRandomness()
9311 static int apndSleep(sqlite3_vfs *pVfs, int nMicro){ in apndSleep() argument
9312 return ORIGVFS(pVfs)->xSleep(ORIGVFS(pVfs), nMicro); in apndSleep()
9314 static int apndCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){ in apndCurrentTime() argument
9315 return ORIGVFS(pVfs)->xCurrentTime(ORIGVFS(pVfs), pTimeOut); in apndCurrentTime()
9317 static int apndGetLastError(sqlite3_vfs *pVfs, int a, char *b){ in apndGetLastError() argument
9318 return ORIGVFS(pVfs)->xGetLastError(ORIGVFS(pVfs), a, b); in apndGetLastError()
9320 static int apndCurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *p){ in apndCurrentTimeInt64() argument
9321 return ORIGVFS(pVfs)->xCurrentTimeInt64(ORIGVFS(pVfs), p); in apndCurrentTimeInt64()
9324 sqlite3_vfs *pVfs, in apndSetSystemCall() argument
9328 return ORIGVFS(pVfs)->xSetSystemCall(ORIGVFS(pVfs),zName,pCall); in apndSetSystemCall()
9331 sqlite3_vfs *pVfs, in apndGetSystemCall() argument
9334 return ORIGVFS(pVfs)->xGetSystemCall(ORIGVFS(pVfs),zName); in apndGetSystemCall()
9336 static const char *apndNextSystemCall(sqlite3_vfs *pVfs, const char *zName){ in apndNextSystemCall() argument
9337 return ORIGVFS(pVfs)->xNextSystemCall(ORIGVFS(pVfs), zName); in apndNextSystemCall()
10882 sqlite3_vfs *pVfs = sqlite3_vfs_find(0); in zipfileTime() local
10884 if( pVfs==0 ) return 0; in zipfileTime()
10885 if( pVfs->iVersion>=2 && pVfs->xCurrentTimeInt64 ){ in zipfileTime()
10887 pVfs->xCurrentTimeInt64(pVfs, &ms); in zipfileTime()
10891 pVfs->xCurrentTime(pVfs, &day); in zipfileTime()
29494 sqlite3_vfs *pVfs = 0; in do_meta_command() local
29496 sqlite3_file_control(p->db, zDbName, SQLITE_FCNTL_VFS_POINTER, &pVfs); in do_meta_command()
29497 if( pVfs ){ in do_meta_command()
29498 oputf("vfs.zName = \"%s\"\n", pVfs->zName); in do_meta_command()
29499 oputf("vfs.iVersion = %d\n", pVfs->iVersion); in do_meta_command()
29500 oputf("vfs.szOsFile = %d\n", pVfs->szOsFile); in do_meta_command()
29501 oputf("vfs.mxPathname = %d\n", pVfs->mxPathname); in do_meta_command()
29507 sqlite3_vfs *pVfs; in do_meta_command() local
29512 for(pVfs=sqlite3_vfs_find(0); pVfs; pVfs=pVfs->pNext){ in do_meta_command()
29513 oputf("vfs.zName = \"%s\"%s\n", pVfs->zName, in do_meta_command()
29514 pVfs==pCurrent ? " <--- CURRENT" : ""); in do_meta_command()
29515 oputf("vfs.iVersion = %d\n", pVfs->iVersion); in do_meta_command()
29516 oputf("vfs.szOsFile = %d\n", pVfs->szOsFile); in do_meta_command()
29517 oputf("vfs.mxPathname = %d\n", pVfs->mxPathname); in do_meta_command()
29518 if( pVfs->pNext ){ in do_meta_command()
30617 sqlite3_vfs *pVfs = sqlite3_vfs_find(zVfs); local
30618 if( pVfs ){
30619 sqlite3_vfs_register(pVfs, 1);
30986 sqlite3_vfs * pVfs = 0; local
30989 SQLITE_FCNTL_VFS_POINTER, &pVfs);
30991 return pVfs;