Lines Matching refs:pMethod

34456   sqlite3_io_methods const *pMethod;  /* Always the first entry */
41509 rc = conchFile->pMethod->xLock((sqlite3_file*)conchFile, lockType);
41560 rc = conchFile->pMethod->xLock((sqlite3_file*)conchFile, SHARED_LOCK);
41563 rc = conchFile->pMethod->xLock((sqlite3_file*)conchFile, lockType);
41736 conchFile->pMethod->xUnlock((sqlite3_file*)conchFile, SHARED_LOCK);
41781 if( pCtx->lockProxy->pMethod == &afpIoMethods ){
41787 conchFile->pMethod->xUnlock((sqlite3_file*)conchFile, NO_LOCK);
41811 rc = conchFile->pMethod->xUnlock((sqlite3_file*)conchFile, NO_LOCK);
41885 rc=lockProxy->pMethod->xClose((sqlite3_file *)lockProxy);
41905 if( pFile->pMethod == &afpIoMethods ){
41913 if( pFile->pMethod == &dotlockIoMethods ){
42000 pCtx->pOldMethod = pFile->pMethod;
42001 pFile->pMethod = &proxyIoMethods;
42004 pCtx->conchFile->pMethod->xClose((sqlite3_file *)pCtx->conchFile);
42025 if( pFile->pMethod == &proxyIoMethods ){
42041 int isProxyStyle = (pFile->pMethod == &proxyIoMethods);
42101 return proxy->pMethod->xCheckReservedLock((sqlite3_file*)proxy, pResOut);
42140 rc = proxy->pMethod->xLock((sqlite3_file*)proxy, eFileLock);
42164 rc = proxy->pMethod->xUnlock((sqlite3_file*)proxy, eFileLock);
42185 rc = lockProxy->pMethod->xUnlock((sqlite3_file*)lockProxy, NO_LOCK);
42187 rc = lockProxy->pMethod->xClose((sqlite3_file*)lockProxy);
42197 rc = conchFile->pMethod->xClose((sqlite3_file*)conchFile);
42206 pFile->pMethod = pCtx->pOldMethod;
42208 return pFile->pMethod->xClose(id);
42632 const sqlite3_io_methods *pMethod; /*** Must be first ***/
42666 const sqlite3_io_methods *pMethod; /* The file I/O methods to use. */
47641 id->pMethods = pAppData ? pAppData->pMethod : &winIoMethod;
98957 const sqlite3_io_methods *pMethod; /* Parent class. MUST BE FIRST */