Home
last modified time | relevance | path

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

/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Darrayop.c209 FuncDeclaration **pFd = (FuncDeclaration **)dmd_aaGet(&arrayfuncs, (void *)ident); in arrayOp() local
210 FuncDeclaration *fd = *pFd; in arrayOp()
229 *pFd = fd; in arrayOp()
/netbsd-src/external/public-domain/sqlite/dist/
H A Dshell.c17392 static int recoverVfsUnfetch(sqlite3_file *pFd, sqlite3_int64 iOff, void *p);
17416 static int recoverVfsClose(sqlite3_file *pFd){ in recoverVfsClose() argument
17417 assert( pFd->pMethods!=&recover_methods ); in recoverVfsClose()
17418 return pFd->pMethods->xClose(pFd); in recoverVfsClose()
17455 sqlite3_file *pFd, /* File-handle open on input database */ in recoverVfsDetectPagesize() argument
17480 rc = pFd->pMethods->xRead(pFd, aPg, nByte, iBlk*nMax); in recoverVfsDetectPagesize()
17511 static int recoverVfsRead(sqlite3_file *pFd, void *aBuf, int nByte, i64 iOff){ in recoverVfsRead() argument
17513 if( pFd->pMethods==&recover_methods ){ in recoverVfsRead()
17514 pFd->pMethods = recover_g.pMethods; in recoverVfsRead()
17515 rc = pFd->pMethods->xRead(pFd, aBuf, nByte, iOff); in recoverVfsRead()
[all …]
H A Dsqlite3.c40141 static int unixMapfile(unixFile *pFd, i64 nByte);
40142 static void unixUnmapfile(unixFile *pFd);
41748 static int openDirectory(const char *zFilename, int *pFd){
41765 *pFd = fd;
42152 static void setDeviceCharacteristics(unixFile *pFd){
42153 assert( pFd->deviceCharacteristics==0 || pFd->sectorSize!=0 );
42154 if( pFd->sectorSize==0 ){
42160 res = osIoctl(pFd->h, F2FS_IOC_GET_FEATURES, &f);
42162 pFd->deviceCharacteristics = SQLITE_IOCAP_BATCH_ATOMIC;
42167 if( pFd->ctrlFlags & UNIXFILE_PSOW ){
[all …]