Lines Matching defs:pOther
53261 sqlite3_pcache_page *pOther;
53266 pOther = sqlite3GlobalConfig.pcache2.xFetch(pCache->pCache, newPgno, 0);
53267 if( pOther ){
53268 PgHdr *pXPage = (PgHdr*)pOther->pExtra;
54438 PCache1 *pOther;
54443 pOther = pPage->pCache;
54444 if( pOther->szAlloc != pCache->szAlloc ){
54448 pGroup->nPurgeable -= (pOther->bPurgeable - pCache->bPurgeable);
77350 BtCursor *pOther;
77351 for(pOther=pCur->pBt->pCursor; pOther; pOther=pOther->pNext){
77352 if( pOther!=pCur
77353 && pOther->eState==CURSOR_VALID
77354 && pOther->pPage==pCur->pPage
120005 Table *pOther = sqliteHashData(k);
120006 assert( pOther->zName!=0 );
120007 if( !IsOrdinaryTable(pOther) ) continue;
120008 if( pOther->tabFlags & TF_Shadow ) continue;
120009 if( sqlite3StrNICmp(pOther->zName, pTab->zName, nName)==0
120010 && pOther->zName[nName]=='_'
120011 && pMod->pModule->xShadowName(pOther->zName+nName+1)
120013 pOther->tabFlags |= TF_Shadow;
123512 FuncDef *pOther;
123517 pOther = sqlite3FunctionSearch(h, zName);
123518 if( pOther ){
123519 assert( pOther!=&aDef[i] && pOther->pNext!=&aDef[i] );
123520 aDef[i].pNext = pOther->pNext;
123521 pOther->pNext = &aDef[i];
123612 FuncDef *pOther;
123619 pOther = (FuncDef*)sqlite3HashInsert(&db->aFunc, pBest->zName, pBest);
123620 if( pOther==pBest ){
123625 pBest->pNext = pOther;
155416 WhereTerm *pOther = &pOrWc->a[pOrTerm->iParent];
155417 b |= sqlite3WhereGetMask(&pWInfo->sMaskSet, pOther->leftCursor);
178499 ** (call it pOther) in the same process was busy using the same shared
178500 ** cache. pOther is found by looking at db->pBlockingConnection.
178505 ** If pOther is already blocked on db, then report SQLITE_LOCKED, to indicate
178508 ** Otherwise, make arrangements to invoke xNotify when pOther drops
232874 Fts5SegIter *pOther = &pIter->aSeg[iChanged ^ 0x0001];
232880 assert( pRes->bTermEq==0 || pOther->pLeaf );
232883 if( pNew->iRowid==pOther->iRowid ){
232885 }else if( (pOther->iRowid>pNew->iRowid)==pIter->bRev ){
232886 pIter->iSwitchRowid = pOther->iRowid;
232887 pNew = pOther;
232888 }else if( (pOther->iRowid>pIter->iSwitchRowid)==pIter->bRev ){
232889 pIter->iSwitchRowid = pOther->iRowid;
232895 pOther = &pIter->aSeg[ pIter->aFirst[i ^ 0x0001].iFirst ];