Home
last modified time | relevance | path

Searched refs:pFd (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/sqlite3/
H A Dshell.c18655 static int recoverVfsUnfetch(sqlite3_file *pFd, sqlite3_int64 iOff, void *p);
18679 static int recoverVfsClose(sqlite3_file *pFd){ in recoverVfsClose() argument
18680 assert( pFd->pMethods!=&recover_methods ); in recoverVfsClose()
18681 return pFd->pMethods->xClose(pFd); in recoverVfsClose()
18718 sqlite3_file *pFd, /* File-handle open on input database */ in recoverVfsDetectPagesize() argument
18743 rc = pFd->pMethods->xRead(pFd, aPg, nByte, iBlk*nMax); in recoverVfsDetectPagesize()
18774 static int recoverVfsRead(sqlite3_file *pFd, void *aBuf, int nByte, i64 iOff){ in recoverVfsRead() argument
18776 if( pFd->pMethods==&recover_methods ){ in recoverVfsRead()
18777 pFd->pMethods = recover_g.pMethods; in recoverVfsRead()
18778 rc = pFd->pMethods->xRead(pFd, aBuf, nByte, iOff); in recoverVfsRead()
[all …]
H A Dsqlite3.c40485 static int unixMapfile(unixFile *pFd, i64 nByte);
40486 static void unixUnmapfile(unixFile *pFd);
42092 static int openDirectory(const char *zFilename, int *pFd){
42109 *pFd = fd;
42496 static void setDeviceCharacteristics(unixFile *pFd){
42497 assert( pFd->deviceCharacteristics==0 || pFd->sectorSize!=0 );
42498 if( pFd->sectorSize==0 ){
42504 res = osIoctl(pFd->h, F2FS_IOC_GET_FEATURES, &f);
42506 pFd->deviceCharacteristics = SQLITE_IOCAP_BATCH_ATOMIC;
42511 if( pFd->ctrlFlags & UNIXFILE_PSOW ){
[all …]