Lines Matching refs:pMethod
24245 sqlite3_io_methods const *pMethod; /* Always the first entry */
29636 pNew->pMethod = pLockingStyle;
30950 rc = conchFile->pMethod->xLock((sqlite3_file*)conchFile, lockType);
31001 rc = conchFile->pMethod->xLock((sqlite3_file*)conchFile, SHARED_LOCK);
31004 rc = conchFile->pMethod->xLock((sqlite3_file*)conchFile, lockType);
31127 rc = conchFile->pMethod->xLock((sqlite3_file*)conchFile, EXCLUSIVE_LOCK);
31175 conchFile->pMethod->xUnlock((sqlite3_file*)conchFile, SHARED_LOCK);
31220 if( pCtx->lockProxy->pMethod == &afpIoMethods ){
31226 conchFile->pMethod->xUnlock((sqlite3_file*)conchFile, NO_LOCK);
31250 rc = conchFile->pMethod->xUnlock((sqlite3_file*)conchFile, NO_LOCK);
31324 rc=lockProxy->pMethod->xClose((sqlite3_file *)lockProxy);
31344 if( pFile->pMethod == &afpIoMethods ){
31351 if( pFile->pMethod == &dotlockIoMethods ){
31370 ** ->pMethod
31434 ** switch the locking context and pMethod then return.
31438 pCtx->pOldMethod = pFile->pMethod;
31439 pFile->pMethod = &proxyIoMethods;
31442 pCtx->conchFile->pMethod->xClose((sqlite3_file *)pCtx->conchFile);
31463 if( pFile->pMethod == &proxyIoMethods ){
31479 int isProxyStyle = (pFile->pMethod == &proxyIoMethods);
31536 return proxy->pMethod->xCheckReservedLock((sqlite3_file*)proxy, pResOut);
31575 rc = proxy->pMethod->xLock((sqlite3_file*)proxy, eFileLock);
31599 rc = proxy->pMethod->xUnlock((sqlite3_file*)proxy, eFileLock);
31620 rc = lockProxy->pMethod->xUnlock((sqlite3_file*)lockProxy, NO_LOCK);
31622 rc = lockProxy->pMethod->xClose((sqlite3_file*)lockProxy);
31632 rc = conchFile->pMethod->xClose((sqlite3_file*)conchFile);
31639 /* restore the original locking context and pMethod then close it */
31641 pFile->pMethod = pCtx->pOldMethod;
31643 return pFile->pMethod->xClose(id);
32222 const sqlite3_io_methods *pMethod; /*** Must be first ***/
36746 pFile->pMethod = &winIoMethod;
76132 sqlite3_io_methods *pMethod; /* I/O methods on journal files */
76316 p->pMethod = &JournalFileMethods;
76410 sqlite3_io_methods *pMethod; /* Parent class. MUST BE FIRST */
76593 p->pMethod = (sqlite3_io_methods*)&MemJournalMethods;