Lines Matching refs:pMethod

38616   sqlite3_io_methods const *pMethod;  /* Always the first entry */
45784 rc = conchFile->pMethod->xLock((sqlite3_file*)conchFile, lockType);
45835 rc = conchFile->pMethod->xLock((sqlite3_file*)conchFile, SHARED_LOCK);
45838 rc = conchFile->pMethod->xLock((sqlite3_file*)conchFile, lockType);
46011 conchFile->pMethod->xUnlock((sqlite3_file*)conchFile, SHARED_LOCK);
46056 if( pCtx->lockProxy->pMethod == &afpIoMethods ){
46062 conchFile->pMethod->xUnlock((sqlite3_file*)conchFile, NO_LOCK);
46086 rc = conchFile->pMethod->xUnlock((sqlite3_file*)conchFile, NO_LOCK);
46160 rc=lockProxy->pMethod->xClose((sqlite3_file *)lockProxy);
46180 if( pFile->pMethod == &afpIoMethods ){
46188 if( pFile->pMethod == &dotlockIoMethods ){
46275 pCtx->pOldMethod = pFile->pMethod;
46276 pFile->pMethod = &proxyIoMethods;
46279 pCtx->conchFile->pMethod->xClose((sqlite3_file *)pCtx->conchFile);
46300 if( pFile->pMethod == &proxyIoMethods ){
46316 int isProxyStyle = (pFile->pMethod == &proxyIoMethods);
46376 return proxy->pMethod->xCheckReservedLock((sqlite3_file*)proxy, pResOut);
46415 rc = proxy->pMethod->xLock((sqlite3_file*)proxy, eFileLock);
46439 rc = proxy->pMethod->xUnlock((sqlite3_file*)proxy, eFileLock);
46460 rc = lockProxy->pMethod->xUnlock((sqlite3_file*)lockProxy, NO_LOCK);
46462 rc = lockProxy->pMethod->xClose((sqlite3_file*)lockProxy);
46472 rc = conchFile->pMethod->xClose((sqlite3_file*)conchFile);
46481 pFile->pMethod = pCtx->pOldMethod;
46483 return pFile->pMethod->xClose(id);
46915 const sqlite3_io_methods *pMethod; /*** Must be first ***/
46949 const sqlite3_io_methods *pMethod; /* The file I/O methods to use. */
51960 id->pMethods = pAppData ? pAppData->pMethod : &winIoMethod;
106088 const sqlite3_io_methods *pMethod; /* Parent class. MUST BE FIRST */