Searched refs:pChild (Results 1 - 2 of 2) sorted by relevance
/illumos-gate/usr/src/lib/libsqlite/src/ |
H A D | btree_rb.c | 926 BtRbNode *pChild; /* The child of the spliced out node */ local 1001 pChild = ((pZ->pLeft)?pZ->pLeft:pZ->pRight); 1006 *ppParentSlot = pChild; 1008 pCur->pTree->pHead = pChild; 1010 if( pChild ) pChild->pParent = pZ->pParent; 1013 /* pZ now points at the spliced out node. pChild is the only child of pZ, or 1019 do_delete_balancing(pCur->pTree, pChild, pZ->pParent);
|
H A D | btree.c | 2232 MemPage *pChild; local 2242 rc = sqlitepager_get(pBt->pPager, pgnoChild, (void**)&pChild); 2244 memcpy(pPage, pChild, SQLITE_USABLE_SIZE); 2249 if( pCur && pCur->pPage==pChild ){ 2250 sqlitepager_unref(pChild); 2254 freePage(pBt, pChild, pgnoChild); 2255 sqlitepager_unref(pChild); 2277 rc = allocatePage(pBt, &pChild, &pgnoChild, sqlitepager_pagenumber(pPage)); 2279 assert( sqlitepager_iswriteable(pChild) ); 2280 copyPage(pChild, pPag [all...] |
Completed in 130 milliseconds