• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/Heimdal-398.1.2/lib/sqlite/

Lines Matching refs:pMethod

22514   const sqlite3_io_methods *pMethod;  /* Always the first entry */
24040 pFile->pMethod = &os2IoMethod;
24580 sqlite3_io_methods const *pMethod; /* Always the first entry */
29280 pNew->pMethod = pLockingStyle;
30525 rc = conchFile->pMethod->xLock((sqlite3_file*)conchFile, lockType);
30576 rc = conchFile->pMethod->xLock((sqlite3_file*)conchFile, SHARED_LOCK);
30579 rc = conchFile->pMethod->xLock((sqlite3_file*)conchFile, lockType);
30702 rc = conchFile->pMethod->xLock((sqlite3_file*)conchFile, EXCLUSIVE_LOCK);
30750 conchFile->pMethod->xUnlock((sqlite3_file*)conchFile, SHARED_LOCK);
30796 if( pCtx->lockProxy->pMethod == &afpIoMethods ){
30802 conchFile->pMethod->xUnlock((sqlite3_file*)conchFile, NO_LOCK);
30826 rc = conchFile->pMethod->xUnlock((sqlite3_file*)conchFile, NO_LOCK);
30900 rc=lockProxy->pMethod->xClose((sqlite3_file *)lockProxy);
30920 if( pFile->pMethod == &afpIoMethods ){
30927 if( pFile->pMethod == &dotlockIoMethods ){
30946 ** ->pMethod
31010 ** switch the locking context and pMethod then return.
31014 pCtx->pOldMethod = pFile->pMethod;
31015 pFile->pMethod = &proxyIoMethods;
31018 pCtx->conchFile->pMethod->xClose((sqlite3_file *)pCtx->conchFile);
31039 if( pFile->pMethod == &proxyIoMethods ){
31055 int isProxyStyle = (pFile->pMethod == &proxyIoMethods);
31112 return proxy->pMethod->xCheckReservedLock((sqlite3_file*)proxy, pResOut);
31151 rc = proxy->pMethod->xLock((sqlite3_file*)proxy, eFileLock);
31175 rc = proxy->pMethod->xUnlock((sqlite3_file*)proxy, eFileLock);
31196 rc = lockProxy->pMethod->xUnlock((sqlite3_file*)lockProxy, NO_LOCK);
31198 rc = lockProxy->pMethod->xClose((sqlite3_file*)lockProxy);
31208 rc = conchFile->pMethod->xClose((sqlite3_file*)conchFile);
31215 /* restore the original locking context and pMethod then close it */
31217 pFile->pMethod = pCtx->pOldMethod;
31219 return pFile->pMethod->xClose(id);
31662 const sqlite3_io_methods *pMethod; /*** Must be first ***/
34195 pFile->pMethod = &winIoMethod;
71197 sqlite3_io_methods *pMethod; /* I/O methods on journal files */
71373 p->pMethod = &JournalFileMethods;
71463 sqlite3_io_methods *pMethod; /* Parent class. MUST BE FIRST */
71644 p->pMethod = (sqlite3_io_methods*)&MemJournalMethods;