Lines Matching refs:pMethod

33883   sqlite3_io_methods const *pMethod;  /* Always the first entry */
41073 rc = conchFile->pMethod->xLock((sqlite3_file*)conchFile, lockType);
41124 rc = conchFile->pMethod->xLock((sqlite3_file*)conchFile, SHARED_LOCK);
41127 rc = conchFile->pMethod->xLock((sqlite3_file*)conchFile, lockType);
41300 conchFile->pMethod->xUnlock((sqlite3_file*)conchFile, SHARED_LOCK);
41345 if( pCtx->lockProxy->pMethod == &afpIoMethods ){
41351 conchFile->pMethod->xUnlock((sqlite3_file*)conchFile, NO_LOCK);
41375 rc = conchFile->pMethod->xUnlock((sqlite3_file*)conchFile, NO_LOCK);
41449 rc=lockProxy->pMethod->xClose((sqlite3_file *)lockProxy);
41469 if( pFile->pMethod == &afpIoMethods ){
41477 if( pFile->pMethod == &dotlockIoMethods ){
41496 ** ->pMethod
41560 ** switch the locking context and pMethod then return.
41564 pCtx->pOldMethod = pFile->pMethod;
41565 pFile->pMethod = &proxyIoMethods;
41568 pCtx->conchFile->pMethod->xClose((sqlite3_file *)pCtx->conchFile);
41589 if( pFile->pMethod == &proxyIoMethods ){
41605 int isProxyStyle = (pFile->pMethod == &proxyIoMethods);
41665 return proxy->pMethod->xCheckReservedLock((sqlite3_file*)proxy, pResOut);
41704 rc = proxy->pMethod->xLock((sqlite3_file*)proxy, eFileLock);
41728 rc = proxy->pMethod->xUnlock((sqlite3_file*)proxy, eFileLock);
41749 rc = lockProxy->pMethod->xUnlock((sqlite3_file*)lockProxy, NO_LOCK);
41751 rc = lockProxy->pMethod->xClose((sqlite3_file*)lockProxy);
41761 rc = conchFile->pMethod->xClose((sqlite3_file*)conchFile);
41768 /* restore the original locking context and pMethod then close it */
41770 pFile->pMethod = pCtx->pOldMethod;
41772 return pFile->pMethod->xClose(id);
42372 const sqlite3_io_methods *pMethod; /*** Must be first ***/
42406 const sqlite3_io_methods *pMethod; /* The file I/O methods to use. */
46744 &winIoMethod, /* pMethod */
46750 &winIoNolockMethod, /* pMethod */
47381 id->pMethods = pAppData ? pAppData->pMethod : &winIoMethod;
98009 const sqlite3_io_methods *pMethod; /* Parent class. MUST BE FIRST */