Lines Matching refs:pMethod
36990 sqlite3_io_methods const *pMethod; /* Always the first entry */
44197 rc = conchFile->pMethod->xLock((sqlite3_file*)conchFile, lockType);
44254 rc = conchFile->pMethod->xLock((sqlite3_file*)conchFile, SHARED_LOCK);
44257 rc = conchFile->pMethod->xLock((sqlite3_file*)conchFile, lockType);
44433 conchFile->pMethod->xUnlock((sqlite3_file*)conchFile, SHARED_LOCK);
44478 if( pCtx->lockProxy->pMethod == &afpIoMethods ){
44484 conchFile->pMethod->xUnlock((sqlite3_file*)conchFile, NO_LOCK);
44508 rc = conchFile->pMethod->xUnlock((sqlite3_file*)conchFile, NO_LOCK);
44582 rc=lockProxy->pMethod->xClose((sqlite3_file *)lockProxy);
44602 if( pFile->pMethod == &afpIoMethods ){
44610 if( pFile->pMethod == &dotlockIoMethods ){
44629 ** ->pMethod
44693 ** switch the locking context and pMethod then return.
44697 pCtx->pOldMethod = pFile->pMethod;
44698 pFile->pMethod = &proxyIoMethods;
44701 pCtx->conchFile->pMethod->xClose((sqlite3_file *)pCtx->conchFile);
44722 if( pFile->pMethod == &proxyIoMethods ){
44738 int isProxyStyle = (pFile->pMethod == &proxyIoMethods);
44798 return proxy->pMethod->xCheckReservedLock((sqlite3_file*)proxy, pResOut);
44837 rc = proxy->pMethod->xLock((sqlite3_file*)proxy, eFileLock);
44861 rc = proxy->pMethod->xUnlock((sqlite3_file*)proxy, eFileLock);
44882 rc = lockProxy->pMethod->xUnlock((sqlite3_file*)lockProxy, NO_LOCK);
44884 rc = lockProxy->pMethod->xClose((sqlite3_file*)lockProxy);
44894 rc = conchFile->pMethod->xClose((sqlite3_file*)conchFile);
44901 /* restore the original locking context and pMethod then close it */
44903 pFile->pMethod = pCtx->pOldMethod;
44905 return pFile->pMethod->xClose(id);
45337 const sqlite3_io_methods *pMethod; /*** Must be first ***/
45371 const sqlite3_io_methods *pMethod; /* The file I/O methods to use. */
49720 &winIoMethod, /* pMethod */
49726 &winIoNolockMethod, /* pMethod */
50373 id->pMethods = pAppData ? pAppData->pMethod : &winIoMethod;
103041 const sqlite3_io_methods *pMethod; /* Parent class. MUST BE FIRST */