Home | History | Annotate | Download | only in dist

Lines Matching refs:pMethod

20229   const sqlite3_io_methods *pMethod;  /* Always the first entry */
21018 pFile->pMethod = &os2IoMethod;
21479 sqlite3_io_methods const *pMethod; /* Always the first entry */
25173 pNew->pMethod = pLockingStyle;
26300 pNew->pMethod->xClose((sqlite3_file *)pNew);
26337 rc = conchFile->pMethod->xLock((sqlite3_file*)conchFile, SHARED_LOCK);
26393 pMethod->xLock((sqlite3_file*)conchFile, EXCLUSIVE_LOCK);
26419 conchFile->pMethod->xUnlock((sqlite3_file*)conchFile, SHARED_LOCK);
26455 if( pCtx->lockProxy->pMethod == &afpIoMethods ){
26489 rc = conchFile->pMethod->xLock((sqlite3_file*)conchFile, EXCLUSIVE_LOCK);
26534 conchFile->pMethod->xUnlock((sqlite3_file*)conchFile, SHARED_LOCK);
26586 if( pCtx->lockProxy->pMethod == &afpIoMethods ){
26592 conchFile->pMethod->xUnlock((sqlite3_file*)conchFile, NO_LOCK);
26599 conchFile->pMethod->xUnlock((sqlite3_file*)conchFile, NO_LOCK);
26621 rc = conchFile->pMethod->xUnlock((sqlite3_file*)conchFile, NO_LOCK);
26693 rc=lockProxy->pMethod->xClose((sqlite3_file *)lockProxy);
26713 if( pFile->pMethod == &afpIoMethods ){
26720 if( pFile->pMethod == &dotlockIoMethods ){
26739 ** ->pMethod
26776 ** switch the locking context and pMethod then return.
26781 pCtx->pOldMethod = pFile->pMethod;
26782 pFile->pMethod = &proxyIoMethods;
26785 rc = pCtx->conchFile->pMethod->xClose((sqlite3_file *)pCtx->conchFile);
26806 if( pFile->pMethod == &proxyIoMethods ){
26822 int isProxyStyle = (pFile->pMethod == &proxyIoMethods);
26878 return proxy->pMethod->xCheckReservedLock((sqlite3_file*)proxy, pResOut);
26913 rc = proxy->pMethod->xLock((sqlite3_file*)proxy, locktype);
26933 rc = proxy->pMethod->xUnlock((sqlite3_file*)proxy, locktype);
26951 rc = lockProxy->pMethod->xUnlock((sqlite3_file*)lockProxy, NO_LOCK);
26953 rc = lockProxy->pMethod->xClose((sqlite3_file*)lockProxy);
26963 rc = conchFile->pMethod->xClose((sqlite3_file*)conchFile);
26970 /* restore the original locking context and pMethod then close it */
26972 pFile->pMethod = pCtx->pOldMethod;
26974 return pFile->pMethod->xClose(id);
27415 const sqlite3_io_methods *pMethod;/* Must be first */
28747 pFile->pMethod = &winIoMethod;
58717 sqlite3_io_methods *pMethod; /* I/O methods on journal files */
58889 p->pMethod = &JournalFileMethods;
58979 sqlite3_io_methods *pMethod; /* Parent class. MUST BE FIRST */
59157 p->pMethod = &MemJournalMethods;