Lines Matching defs:pFd
28322 ** If successful, *pFd is set to the opened file descriptor and
28324 ** or SQLITE_CANTOPEN is returned and *pFd is set to an undefined
28338 ** *pFd set to a negative number.
28341 ** the file descriptor *pFd using close().
28343 static int openDirectory(const char *zFilename, int *pFd){
28360 *pFd = fd;
28822 static void unixShmPurge(unixFile *pFd){
28823 unixShmNode *p = pFd->pInode->pShmNode;
28827 assert( p->pInode==pFd->pInode );
28838 robust_close(pFd, p->h, __LINE__);
39202 #define isOpen(pFd) ((pFd)->pMethods)
47976 sqlite3_file *pFd
47999 rc = sqlite3OsWrite(p->pFd, pContent, iFirstAmt, iOffset);
48005 rc = sqlite3OsSync(p->pFd, p->syncFlags);
48008 rc = sqlite3OsWrite(p->pFd, pContent, iAmt, iOffset);
48126 w.pFd = pWal->pWalFd;
48170 rc = sqlite3OsSync(w.pFd, sync_flags & SQLITE_SYNC_MASK);
58306 sqlite3_file *pFd; /* File descriptor for database pTo */
58312 pFd = sqlite3PagerFile(sqlite3BtreePager(pTo));
58313 if( pFd->pMethods ){
58315 rc = sqlite3OsFileControl(pFd, SQLITE_FCNTL_OVERWRITE, &nByte);