Home
last modified time | relevance | path

Searched refs:pChild (Results 1 – 5 of 5) sorted by relevance

/sqlite-3.40.0/ext/misc/
H A Dvtshim.c180 rc = pAux->pMod->xDestroy(pVtab->pChild); in vtshimDestroy()
198 rc = pAux->pMod->xOpen(pVtab->pChild, &pCur->pChild); in vtshimOpen()
204 pCur->pChild->pVtab = pVtab->pChild; in vtshimOpen()
219 rc = pAux->pMod->xClose(pCur->pChild); in vtshimClose()
255 rc = pAux->pMod->xNext(pCur->pChild); in vtshimNext()
268 rc = pAux->pMod->xEof(pCur->pChild); in vtshimEof()
321 rc = pAux->pMod->xBegin(pVtab->pChild); in vtshimBegin()
333 rc = pAux->pMod->xSync(pVtab->pChild); in vtshimSync()
345 rc = pAux->pMod->xCommit(pVtab->pChild); in vtshimCommit()
357 rc = pAux->pMod->xRollback(pVtab->pChild); in vtshimRollback()
[all …]
/sqlite-3.40.0/ext/fts5/
H A Dfts5_expr.c1224 Fts5ExprNode *pChild = pNode->apChild[i]; in fts5ExprNodeTest_OR() local
1226 if( cmp>0 || (cmp==0 && pChild->bNomatch==0) ){ in fts5ExprNodeTest_OR()
1227 pNext = pChild; in fts5ExprNodeTest_OR()
1296 assert( pChild->bEof || fts5RowidCmp(pExpr, iLast, pChild->iRowid)<=0 ); in fts5ExprNodeTest_AND()
1297 if( pChild->bEof ){ in fts5ExprNodeTest_AND()
1301 }else if( iLast!=pChild->iRowid ){ in fts5ExprNodeTest_AND()
1303 iLast = pChild->iRowid; in fts5ExprNodeTest_AND()
1306 if( pChild->bNomatch ){ in fts5ExprNodeTest_AND()
1442 Fts5ExprNode *pChild = pNode->apChild[i]; in fts5ExprNodeFirst() local
1444 assert( pChild->bEof==0 || pChild->bEof==1 ); in fts5ExprNodeFirst()
[all …]
H A Dfts5_index.c1423 Fts5DlidxLvl *pChild = &pLvl[-1]; in fts5DlidxIterLast() local
1424 fts5DataRelease(pChild->pData); in fts5DlidxIterLast()
1425 memset(pChild, 0, sizeof(Fts5DlidxLvl)); in fts5DlidxIterLast()
1426 pChild->pData = fts5DataRead(p, in fts5DlidxIterLast()
/sqlite-3.40.0/ext/rtree/
H A Drtree.c2217 RtreeNode *pChild = 0; in ChooseLeaf() local
2245 pNode = pChild; in ChooseLeaf()
2569 if( pChild ){ in updateMapping()
2572 pChild->pParent = pNode; in updateMapping()
2729 RtreeNode *pChild = pLeaf; in fixLeafParent() local
2730 while( rc==SQLITE_OK && pChild->iNode!=1 && pChild->pParent==0 ){ in fixLeafParent()
2755 pChild = pChild->pParent; in fixLeafParent()
2984 if( pChild ){ in rtreeInsertCell()
2987 pChild->pParent = pNode; in rtreeInsertCell()
3103 RtreeNode *pChild = 0; in rtreeDeleteRowid() local
[all …]
/sqlite-3.40.0/src/
H A Dbtree.c8653 MemPage *pChild = 0; /* Pointer to a new child page */ in balance_deeper() local
8666 rc = allocateBtreePage(pBt,&pChild,&pgnoChild,pRoot->pgno,0); in balance_deeper()
8667 copyNodeContent(pRoot, pChild, &rc); in balance_deeper()
8674 releasePage(pChild); in balance_deeper()
8677 assert( sqlite3PagerIswriteable(pChild->pDbPage) ); in balance_deeper()
8679 assert( pChild->nCell==pRoot->nCell || CORRUPT_DB ); in balance_deeper()
8684 memcpy(pChild->aiOvfl, pRoot->aiOvfl, in balance_deeper()
8686 memcpy(pChild->apOvfl, pRoot->apOvfl, in balance_deeper()
8688 pChild->nOverflow = pRoot->nOverflow; in balance_deeper()
8691 zeroPage(pRoot, pChild->aData[0] & ~PTF_LEAF); in balance_deeper()
[all …]