Lines Matching refs:pRoot

17095   sqlite3_vfs *pRoot = pInfo->pRootVfs;  in vfstraceOpen()  local
17099 rc = pRoot->xOpen(pRoot, zName, p->pReal, flags, pOutFlags); in vfstraceOpen()
17148 sqlite3_vfs *pRoot = pInfo->pRootVfs; in vfstraceDelete() local
17153 rc = pRoot->xDelete(pRoot, zPath, dirSync); in vfstraceDelete()
17169 sqlite3_vfs *pRoot = pInfo->pRootVfs; in vfstraceAccess() local
17174 rc = pRoot->xAccess(pRoot, zPath, flags, pResOut); in vfstraceAccess()
17192 sqlite3_vfs *pRoot = pInfo->pRootVfs; in vfstraceFullPathname() local
17197 rc = pRoot->xFullPathname(pRoot, zPath, nOut, zOut); in vfstraceFullPathname()
17208 sqlite3_vfs *pRoot = pInfo->pRootVfs; in vfstraceDlOpen() local
17211 return pRoot->xDlOpen(pRoot, zPath); in vfstraceDlOpen()
17221 sqlite3_vfs *pRoot = pInfo->pRootVfs; in vfstraceDlError() local
17224 pRoot->xDlError(pRoot, nByte, zErrMsg); in vfstraceDlError()
17233 sqlite3_vfs *pRoot = pInfo->pRootVfs; in vfstraceDlSym() local
17235 return pRoot->xDlSym(pRoot, p, zSym); in vfstraceDlSym()
17243 sqlite3_vfs *pRoot = pInfo->pRootVfs; in vfstraceDlClose() local
17246 pRoot->xDlClose(pRoot, pHandle); in vfstraceDlClose()
17255 sqlite3_vfs *pRoot = pInfo->pRootVfs; in vfstraceRandomness() local
17258 return pRoot->xRandomness(pRoot, nByte, zBufOut); in vfstraceRandomness()
17267 sqlite3_vfs *pRoot = pInfo->pRootVfs; in vfstraceSleep() local
17270 return pRoot->xSleep(pRoot, nMicro); in vfstraceSleep()
17278 sqlite3_vfs *pRoot = pInfo->pRootVfs; in vfstraceCurrentTime() local
17282 rc = pRoot->xCurrentTime(pRoot, pTimeOut); in vfstraceCurrentTime()
17288 sqlite3_vfs *pRoot = pInfo->pRootVfs; in vfstraceCurrentTimeInt64() local
17292 rc = pRoot->xCurrentTimeInt64(pRoot, pTimeOut); in vfstraceCurrentTimeInt64()
17302 sqlite3_vfs *pRoot = pInfo->pRootVfs; in vfstraceGetLastError() local
17307 rc = pRoot->xGetLastError(pRoot, nErr, zErr); in vfstraceGetLastError()
17321 sqlite3_vfs *pRoot = pInfo->pRootVfs; in vfstraceSetSystemCall() local
17322 return pRoot->xSetSystemCall(pRoot, zName, pFunc); in vfstraceSetSystemCall()
17329 sqlite3_vfs *pRoot = pInfo->pRootVfs; in vfstraceGetSystemCall() local
17330 return pRoot->xGetSystemCall(pRoot, zName); in vfstraceGetSystemCall()
17334 sqlite3_vfs *pRoot = pInfo->pRootVfs; in vfstraceNextSystemCall() local
17335 return pRoot->xNextSystemCall(pRoot, zName); in vfstraceNextSystemCall()
17355 sqlite3_vfs *pRoot; in vfstrace_register() local
17360 pRoot = sqlite3_vfs_find(zOldVfsName); in vfstrace_register()
17361 if( pRoot==0 ) return SQLITE_NOTFOUND; in vfstrace_register()
17368 pNew->iVersion = pRoot->iVersion; in vfstrace_register()
17369 pNew->szOsFile = pRoot->szOsFile + sizeof(vfstrace_file); in vfstrace_register()
17370 pNew->mxPathname = pRoot->mxPathname; in vfstrace_register()
17378 pNew->xDlOpen = pRoot->xDlOpen==0 ? 0 : vfstraceDlOpen; in vfstrace_register()
17379 pNew->xDlError = pRoot->xDlError==0 ? 0 : vfstraceDlError; in vfstrace_register()
17380 pNew->xDlSym = pRoot->xDlSym==0 ? 0 : vfstraceDlSym; in vfstrace_register()
17381 pNew->xDlClose = pRoot->xDlClose==0 ? 0 : vfstraceDlClose; in vfstrace_register()
17385 pNew->xGetLastError = pRoot->xGetLastError==0 ? 0 : vfstraceGetLastError; in vfstrace_register()
17387 pNew->xCurrentTimeInt64 = pRoot->xCurrentTimeInt64==0 ? 0 : in vfstrace_register()
17390 pNew->xSetSystemCall = pRoot->xSetSystemCall==0 ? 0 : in vfstrace_register()
17392 pNew->xGetSystemCall = pRoot->xGetSystemCall==0 ? 0 : in vfstrace_register()
17394 pNew->xNextSystemCall = pRoot->xNextSystemCall==0 ? 0 : in vfstrace_register()
17398 pInfo->pRootVfs = pRoot; in vfstrace_register()
17406 pInfo->zVfsName, pRoot->zName); in vfstrace_register()