Lines Matching refs:pMethod

38276   sqlite3_io_methods const *pMethod;  /* Always the first entry */
45433 rc = conchFile->pMethod->xLock((sqlite3_file*)conchFile, lockType);
45484 rc = conchFile->pMethod->xLock((sqlite3_file*)conchFile, SHARED_LOCK);
45487 rc = conchFile->pMethod->xLock((sqlite3_file*)conchFile, lockType);
45660 conchFile->pMethod->xUnlock((sqlite3_file*)conchFile, SHARED_LOCK);
45705 if( pCtx->lockProxy->pMethod == &afpIoMethods ){
45711 conchFile->pMethod->xUnlock((sqlite3_file*)conchFile, NO_LOCK);
45735 rc = conchFile->pMethod->xUnlock((sqlite3_file*)conchFile, NO_LOCK);
45809 rc=lockProxy->pMethod->xClose((sqlite3_file *)lockProxy);
45829 if( pFile->pMethod == &afpIoMethods ){
45837 if( pFile->pMethod == &dotlockIoMethods ){
45924 pCtx->pOldMethod = pFile->pMethod;
45925 pFile->pMethod = &proxyIoMethods;
45928 pCtx->conchFile->pMethod->xClose((sqlite3_file *)pCtx->conchFile);
45949 if( pFile->pMethod == &proxyIoMethods ){
45965 int isProxyStyle = (pFile->pMethod == &proxyIoMethods);
46025 return proxy->pMethod->xCheckReservedLock((sqlite3_file*)proxy, pResOut);
46064 rc = proxy->pMethod->xLock((sqlite3_file*)proxy, eFileLock);
46088 rc = proxy->pMethod->xUnlock((sqlite3_file*)proxy, eFileLock);
46109 rc = lockProxy->pMethod->xUnlock((sqlite3_file*)lockProxy, NO_LOCK);
46111 rc = lockProxy->pMethod->xClose((sqlite3_file*)lockProxy);
46121 rc = conchFile->pMethod->xClose((sqlite3_file*)conchFile);
46130 pFile->pMethod = pCtx->pOldMethod;
46132 return pFile->pMethod->xClose(id);
46564 const sqlite3_io_methods *pMethod; /*** Must be first ***/
46598 const sqlite3_io_methods *pMethod; /* The file I/O methods to use. */
51609 id->pMethods = pAppData ? pAppData->pMethod : &winIoMethod;
105548 const sqlite3_io_methods *pMethod; /* Parent class. MUST BE FIRST */