Home | History | Annotate | Download | only in dist

Lines Matching refs:pMethod

22949   const sqlite3_io_methods *pMethod;  /* Always the first entry */
24475 pFile->pMethod = &os2IoMethod;
25023 sqlite3_io_methods const *pMethod; /* Always the first entry */
29814 pNew->pMethod = pLockingStyle;
31107 rc = conchFile->pMethod->xLock((sqlite3_file*)conchFile, lockType);
31158 rc = conchFile->pMethod->xLock((sqlite3_file*)conchFile, SHARED_LOCK);
31161 rc = conchFile->pMethod->xLock((sqlite3_file*)conchFile, lockType);
31284 rc = conchFile->pMethod->xLock((sqlite3_file*)conchFile, EXCLUSIVE_LOCK);
31332 conchFile->pMethod->xUnlock((sqlite3_file*)conchFile, SHARED_LOCK);
31377 if( pCtx->lockProxy->pMethod == &afpIoMethods ){
31383 conchFile->pMethod->xUnlock((sqlite3_file*)conchFile, NO_LOCK);
31407 rc = conchFile->pMethod->xUnlock((sqlite3_file*)conchFile, NO_LOCK);
31481 rc=lockProxy->pMethod->xClose((sqlite3_file *)lockProxy);
31501 if( pFile->pMethod == &afpIoMethods ){
31508 if( pFile->pMethod == &dotlockIoMethods ){
31527 ** ->pMethod
31591 ** switch the locking context and pMethod then return.
31595 pCtx->pOldMethod = pFile->pMethod;
31596 pFile->pMethod = &proxyIoMethods;
31599 pCtx->conchFile->pMethod->xClose((sqlite3_file *)pCtx->conchFile);
31620 if( pFile->pMethod == &proxyIoMethods ){
31636 int isProxyStyle = (pFile->pMethod == &proxyIoMethods);
31693 return proxy->pMethod->xCheckReservedLock((sqlite3_file*)proxy, pResOut);
31732 rc = proxy->pMethod->xLock((sqlite3_file*)proxy, eFileLock);
31756 rc = proxy->pMethod->xUnlock((sqlite3_file*)proxy, eFileLock);
31777 rc = lockProxy->pMethod->xUnlock((sqlite3_file*)lockProxy, NO_LOCK);
31779 rc = lockProxy->pMethod->xClose((sqlite3_file*)lockProxy);
31789 rc = conchFile->pMethod->xClose((sqlite3_file*)conchFile);
31796 /* restore the original locking context and pMethod then close it */
31798 pFile->pMethod = pCtx->pOldMethod;
31800 return pFile->pMethod->xClose(id);
32198 const sqlite3_io_methods *pMethod; /*** Must be first ***/
35335 pFile->pMethod = &winIoMethod;
72591 sqlite3_io_methods *pMethod; /* I/O methods on journal files */
72775 p->pMethod = &JournalFileMethods;
72865 sqlite3_io_methods *pMethod; /* Parent class. MUST BE FIRST */
73046 p->pMethod = (sqlite3_io_methods*)&MemJournalMethods;