Home | History | Annotate | Download | only in orig

Lines Matching defs:pOther

45840     PCache1 *pOther;
45845 pOther = pPage->pCache;
45846 if( pOther->szAlloc != pCache->szAlloc ){
45850 pGroup->nCurrentPage -= (pOther->bPurgeable - pCache->bPurgeable);
102868 Index *pOther = pTab->pIndex;
102869 while( pOther->pNext && pOther->pNext->onError!=OE_Replace ){
102870 pOther = pOther->pNext;
102872 pIndex->pNext = pOther->pNext;
102873 pOther->pNext = pIndex;
104211 FuncDef *pOther;
104215 pOther = functionSearch(h, zName);
104216 if( pOther ){
104217 assert( pOther!=&aDef[i] && pOther->pNext!=&aDef[i] );
104218 aDef[i].pNext = pOther->pNext;
104219 pOther->pNext = &aDef[i];
104310 FuncDef *pOther;
104315 pOther = (FuncDef*)sqlite3HashInsert(&db->aFunc, pBest->zName, pBest);
104316 if( pOther==pBest ){
104321 pBest->pNext = pOther;
128977 WhereTerm *pOther = &pOrWc->a[pOrTerm->iParent];
128978 b |= sqlite3WhereGetMask(&pWInfo->sMaskSet, pOther->leftCursor);
144136 ** (call it pOther) in the same process was busy using the same shared
144137 ** cache. pOther is found by looking at db->pBlockingConnection.
144142 ** If pOther is already blocked on db, then report SQLITE_LOCKED, to indicate
144145 ** Otherwise, make arrangements to invoke xNotify when pOther drops
191946 Fts5SegIter *pOther = &pIter->aSeg[iChanged ^ 0x0001];
191952 assert( pRes->bTermEq==0 || pOther->pLeaf );
191955 if( pNew->iRowid==pOther->iRowid ){
191957 }else if( (pOther->iRowid>pNew->iRowid)==pIter->bRev ){
191958 pIter->iSwitchRowid = pOther->iRowid;
191959 pNew = pOther;
191960 }else if( (pOther->iRowid>pIter->iSwitchRowid)==pIter->bRev ){
191961 pIter->iSwitchRowid = pOther->iRowid;
191967 pOther = &pIter->aSeg[ pIter->aFirst[i ^ 0x0001].iFirst ];