Searched refs:pParent (Results 1 - 3 of 3) sorted by relevance

/illumos-gate/usr/src/lib/libsqlite/src/
H A Dbtree_rb.c129 BtRbNode *pParent; /* Nodes parent node, NULL for the tree head */ member in struct:BtRbNode
215 pY->pParent = pX->pParent;
216 if( pX->pParent ){
217 if( pX->pParent->pLeft == pX ) pX->pParent->pLeft = pY;
218 else pX->pParent->pRight = pY;
221 pX->pParent = pY;
223 if( pb ) pb->pParent = pX;
247 pY->pParent
517 do_delete_balancing(BtRbTree *pTree, BtRbNode *pX, BtRbNode *pParent) argument
[all...]
H A Dbtree.c323 ** The pParent field points back to the parent page. This allows us to
336 MemPage *pParent; /* The parent of this page. NULL for root */ member in struct:MemPage
337 int idxParent; /* Index in pParent->apCell[] of this node */
576 ** The pParent parameter must be a pointer to the MemPage which
579 ** pParent==NULL.
587 static int initPage(Bt *pBt, MemPage *pPage, Pgno pgnoThis, MemPage *pParent){ argument
594 if( pPage->pParent ){
595 assert( pPage->pParent==pParent );
598 if( pParent ){
670 MemPage *pParent = pPage->pParent; local
1433 MemPage *pParent; local
2187 MemPage *pParent; /* The parent of pPage */ local
3291 checkTreePage( IntegrityCk *pCheck, int iPage, MemPage *pParent, char *zParentContext, char *zLowerBound, int nLower, char *zUpperBound, int nUpper ) argument
[all...]
H A Dselect.c1991 ** The pParent, parentTab, and *pParentAgg fields are filled in if this
1998 ** Example 1: The meaning of the pParent parameter.
2006 ** pParent will be NULL. During the processing of the outer query, this
2008 ** call, pParent will point to the outer query. Because the subquery is
2017 Select *pParent, /* Another SELECT for which this is a sub-query */
2018 int parentTab, /* Index in pParent->pSrc of this query */
2019 int *pParentAgg /* True if pParent uses aggregate functions */
2237 if( pParent && pParentAgg &&
2238 flattenSubquery(pParse, pParent, parentTab, *pParentAgg, isAgg) ){
2419 if( pParent ){
2012 sqliteSelect( Parse *pParse, Select *p, int eDest, int iParm, Select *pParent, int parentTab, int *pParentAgg ) argument
[all...]

Completed in 76 milliseconds