Home | History | Annotate | Download | only in dist

Lines Matching refs:pMethods

1133 ** for their own use.  The pMethods entry is a pointer to an
1139 const struct sqlite3_io_methods *pMethods; /* Methods for an open file */
1151 ** If the [sqlite3_vfs.xOpen] method sets the sqlite3_file.pMethods element
1155 ** is for the [sqlite3_vfs.xOpen] to set the sqlite3_file.pMethods element
1523 ** the xOpen method must set the sqlite3_file.pMethods to either
1525 ** this even if the open fails. SQLite expects that the sqlite3_file.pMethods
14732 if( pId->pMethods ){
14733 rc = pId->pMethods->xClose(pId);
14734 pId->pMethods = 0;
14740 return id->pMethods->xRead(id, pBuf, amt, offset);
14744 return id->pMethods->xWrite(id, pBuf, amt, offset);
14747 return id->pMethods->xTruncate(id, size);
14751 return id->pMethods->xSync(id, flags);
14755 return id->pMethods->xFileSize(id, pSize);
14759 return id->pMethods->xLock(id, lockType);
14762 return id->pMethods->xUnlock(id, lockType);
14766 return id->pMethods->xCheckReservedLock(id, pResOut);
14779 return id->pMethods->xFileControl(id, op, pArg);
14782 (void)id->pMethods->xFileControl(id, op, pArg);
14786 int (*xSectorSize)(sqlite3_file*) = id->pMethods->xSectorSize;
14790 return id->pMethods->xDeviceCharacteristics(id);
14793 return id->pMethods->xShmLock(id, offset, n, flags);
14796 id->pMethods->xShmBarrier(id);
14799 return id->pMethods->xShmUnmap(id, deleteFlag);
14809 return id->pMethods->xShmMap(id, iPage, pgsz, bExtend, pp);
14830 assert( rc==SQLITE_OK || pFile->pMethods==0 );
29534 const sqlite3_io_methods *pMethods; /* Appropriate locking method */
29558 return aMap[i].pMethods;
30289 ** pFile->pMethods will be NULL so sqlite3OsClose will be a no-op
39228 ** if( pPager->jfd->pMethods ){ ...
39230 #define isOpen(pFd) ((pFd)->pMethods)
41203 if( pPager->fd->pMethods ){
45181 const sqlite3_io_methods *pMethods = pPager->fd->pMethods;
45182 return pPager->exclusiveMode || (pMethods->iVersion>=2 && pMethods->xShmMap);
53367 && (fd = sqlite3PagerFile(pBt->pPager))->pMethods /* (3) */
58341 if( pFd->pMethods ){
72788 if( p->pMethods!=&JournalFileMethods ){
73054 return pJfd->pMethods==&MemJournalMethods;
115194 }else if( fd->pMethods ){