Home | History | Annotate | Download | only in dist

Lines Matching defs:pFd

28340 ** If successful, *pFd is set to the opened file descriptor and
28342 ** or SQLITE_CANTOPEN is returned and *pFd is set to an undefined
28356 ** *pFd set to a negative number.
28359 ** the file descriptor *pFd using close().
28361 static int openDirectory(const char *zFilename, int *pFd){
28378 *pFd = fd;
28842 static void unixShmPurge(unixFile *pFd){
28843 unixShmNode *p = pFd->pInode->pShmNode;
28847 assert( p->pInode==pFd->pInode );
28858 robust_close(pFd, p->h, __LINE__);
39230 #define isOpen(pFd) ((pFd)->pMethods)
48004 sqlite3_file *pFd; /* The WAL file to which we write */
48027 rc = sqlite3OsWrite(p->pFd, pContent, iFirstAmt, iOffset);
48033 rc = sqlite3OsSync(p->pFd, p->syncFlags);
48036 rc = sqlite3OsWrite(p->pFd, pContent, iAmt, iOffset);
48154 w.pFd = pWal->pWalFd;
48198 rc = sqlite3OsSync(w.pFd, sync_flags & SQLITE_SYNC_MASK);
58334 sqlite3_file *pFd; /* File descriptor for database pTo */
58340 pFd = sqlite3PagerFile(sqlite3BtreePager(pTo));
58341 if( pFd->pMethods ){
58343 rc = sqlite3OsFileControl(pFd, SQLITE_FCNTL_OVERWRITE, &nByte);