Lines Matching defs:pOther

51104     PCache1 *pOther;
51109 pOther = pPage->pCache;
51110 if( pOther->szAlloc != pCache->szAlloc ){
51114 pGroup->nPurgeable -= (pOther->bPurgeable - pCache->bPurgeable);
73366 BtCursor *pOther;
73367 for(pOther=pCur->pBt->pCursor; pOther; pOther=pOther->pNext){
73368 if( pOther!=pCur
73369 && pOther->eState==CURSOR_VALID
73370 && pOther->pPage==pCur->pPage
117271 FuncDef *pOther;
117276 pOther = sqlite3FunctionSearch(h, zName);
117277 if( pOther ){
117278 assert( pOther!=&aDef[i] && pOther->pNext!=&aDef[i] );
117279 aDef[i].pNext = pOther->pNext;
117280 pOther->pNext = &aDef[i];
117371 FuncDef *pOther;
117378 pOther = (FuncDef*)sqlite3HashInsert(&db->aFunc, pBest->zName, pBest);
117379 if( pOther==pBest ){
117384 pBest->pNext = pOther;
147112 WhereTerm *pOther = &pOrWc->a[pOrTerm->iParent];
147113 b |= sqlite3WhereGetMask(&pWInfo->sMaskSet, pOther->leftCursor);
147662 Expr *pOther = (pAnd->pLeft==pEq) ? pAnd->pRight : pAnd->pLeft;
147665 *ppAnd = pOther;
168864 ** (call it pOther) in the same process was busy using the same shared
168865 ** cache. pOther is found by looking at db->pBlockingConnection.
168870 ** If pOther is already blocked on db, then report SQLITE_LOCKED, to indicate
168873 ** Otherwise, make arrangements to invoke xNotify when pOther drops
222613 Fts5SegIter *pOther = &pIter->aSeg[iChanged ^ 0x0001];
222619 assert( pRes->bTermEq==0 || pOther->pLeaf );
222622 if( pNew->iRowid==pOther->iRowid ){
222624 }else if( (pOther->iRowid>pNew->iRowid)==pIter->bRev ){
222625 pIter->iSwitchRowid = pOther->iRowid;
222626 pNew = pOther;
222627 }else if( (pOther->iRowid>pIter->iSwitchRowid)==pIter->bRev ){
222628 pIter->iSwitchRowid = pOther->iRowid;
222634 pOther = &pIter->aSeg[ pIter->aFirst[i ^ 0x0001].iFirst ];