Searched refs:ORIGVFS (Results 1 – 2 of 2) sorted by relevance
/netbsd-src/external/public-domain/sqlite/dist/ |
H A D | shell.c | 8712 #define ORIGVFS(p) ((sqlite3_vfs*)((p)->pAppData)) macro 9137 sqlite3_vfs *pBaseVfs = ORIGVFS(pApndVfs); in apndOpen() 9196 return ORIGVFS(pVfs)->xDelete(ORIGVFS(pVfs), zPath, dirSync); in apndDelete() 9208 return ORIGVFS(pVfs)->xAccess(ORIGVFS(pVfs), zPath, flags, pResOut); in apndAccess() 9216 return ORIGVFS(pVfs)->xFullPathname(ORIGVFS(pVfs),zPath,nOut,zOut); in apndFullPathname() 9219 return ORIGVFS(pVfs)->xDlOpen(ORIGVFS(pVfs), zPath); in apndDlOpen() 9222 ORIGVFS(pVfs)->xDlError(ORIGVFS(pVfs), nByte, zErrMsg); in apndDlError() 9225 return ORIGVFS(pVfs)->xDlSym(ORIGVFS(pVfs), p, zSym); in apndDlSym() 9228 ORIGVFS(pVfs)->xDlClose(ORIGVFS(pVfs), pHandle); in apndDlClose() 9231 return ORIGVFS(pVfs)->xRandomness(ORIGVFS(pVfs), nByte, zBufOut); in apndRandomness() [all …]
|
H A D | sqlite3.c | 52546 #define ORIGVFS(p) ((sqlite3_vfs*)((p)->pAppData)) 53186 return ORIGVFS(pVfs)->xDlOpen(ORIGVFS(pVfs), zPath); 53195 ORIGVFS(pVfs)->xDlError(ORIGVFS(pVfs), nByte, zErrMsg); 53202 return ORIGVFS(pVfs)->xDlSym(ORIGVFS(pVfs), p, zSym); 53209 ORIGVFS(pVfs)->xDlClose(ORIGVFS(pVfs), pHandle); 53217 return ORIGVFS(pVfs)->xRandomness(ORIGVFS(pVfs), nByte, zBufOut); 53225 return ORIGVFS(pVfs)->xSleep(ORIGVFS(pVfs), nMicro); 53233 return ORIGVFS(pVfs)->xCurrentTime(ORIGVFS(pVfs), pTimeOut); 53238 return ORIGVFS(pVfs)->xGetLastError(ORIGVFS(pVfs), a, b); 53241 return ORIGVFS(pVfs)->xCurrentTimeInt64(ORIGVFS(pVfs), p);
|