Home | History | Annotate | Download | only in orig

Lines Matching refs:pMethod

22949   const sqlite3_io_methods *pMethod;  /* Always the first entry */
24475 pFile->pMethod = &os2IoMethod;
25016 sqlite3_io_methods const *pMethod; /* Always the first entry */
29786 pNew->pMethod = pLockingStyle;
31079 rc = conchFile->pMethod->xLock((sqlite3_file*)conchFile, lockType);
31130 rc = conchFile->pMethod->xLock((sqlite3_file*)conchFile, SHARED_LOCK);
31133 rc = conchFile->pMethod->xLock((sqlite3_file*)conchFile, lockType);
31256 rc = conchFile->pMethod->xLock((sqlite3_file*)conchFile, EXCLUSIVE_LOCK);
31304 conchFile->pMethod->xUnlock((sqlite3_file*)conchFile, SHARED_LOCK);
31349 if( pCtx->lockProxy->pMethod == &afpIoMethods ){
31355 conchFile->pMethod->xUnlock((sqlite3_file*)conchFile, NO_LOCK);
31379 rc = conchFile->pMethod->xUnlock((sqlite3_file*)conchFile, NO_LOCK);
31453 rc=lockProxy->pMethod->xClose((sqlite3_file *)lockProxy);
31473 if( pFile->pMethod == &afpIoMethods ){
31480 if( pFile->pMethod == &dotlockIoMethods ){
31499 ** ->pMethod
31563 ** switch the locking context and pMethod then return.
31567 pCtx->pOldMethod = pFile->pMethod;
31568 pFile->pMethod = &proxyIoMethods;
31571 pCtx->conchFile->pMethod->xClose((sqlite3_file *)pCtx->conchFile);
31592 if( pFile->pMethod == &proxyIoMethods ){
31608 int isProxyStyle = (pFile->pMethod == &proxyIoMethods);
31665 return proxy->pMethod->xCheckReservedLock((sqlite3_file*)proxy, pResOut);
31704 rc = proxy->pMethod->xLock((sqlite3_file*)proxy, eFileLock);
31728 rc = proxy->pMethod->xUnlock((sqlite3_file*)proxy, eFileLock);
31749 rc = lockProxy->pMethod->xUnlock((sqlite3_file*)lockProxy, NO_LOCK);
31751 rc = lockProxy->pMethod->xClose((sqlite3_file*)lockProxy);
31761 rc = conchFile->pMethod->xClose((sqlite3_file*)conchFile);
31768 /* restore the original locking context and pMethod then close it */
31770 pFile->pMethod = pCtx->pOldMethod;
31772 return pFile->pMethod->xClose(id);
32170 const sqlite3_io_methods *pMethod; /*** Must be first ***/
35307 pFile->pMethod = &winIoMethod;
72563 sqlite3_io_methods *pMethod; /* I/O methods on journal files */
72739 p->pMethod = &JournalFileMethods;
72829 sqlite3_io_methods *pMethod; /* Parent class. MUST BE FIRST */
73010 p->pMethod = (sqlite3_io_methods*)&MemJournalMethods;