Lines Matching refs:pstChild
259 LosRbNode *pstChild = NULL; in OsRbDeleteNode() local
298 pstChild = ((pstNilT != pstZ->pstLeft) ? pstZ->pstLeft : pstZ->pstRight); in OsRbDeleteNode()
299 if (NULL == pstChild) { /* Edit by r60958 for Coverity */ in OsRbDeleteNode()
303 pstChild->pstParent = pstZ->pstParent; in OsRbDeleteNode()
306 pstTree->pstRoot = pstChild; in OsRbDeleteNode()
309 pstZ->pstParent->pstLeft = pstChild; in OsRbDeleteNode()
311 pstZ->pstParent->pstRight = pstChild; in OsRbDeleteNode()
316 OsRbDeleteNodeFixup(pstTree, pstChild); in OsRbDeleteNode()
340 pstChild = pstZ->pstRight; in OsRbDeleteNode()
341 if (NULL == pstChild) { /* Edit by r60958 for Coverity */ in OsRbDeleteNode()
348 pstChild->pstParent = pstZ->pstParent; in OsRbDeleteNode()
352 pstTree->pstRoot = pstChild; in OsRbDeleteNode()
355 pstZ->pstParent->pstLeft = pstChild; in OsRbDeleteNode()
357 pstZ->pstParent->pstRight = pstChild; in OsRbDeleteNode()
382 OsRbDeleteNodeFixup(pstTree, pstChild); in OsRbDeleteNode()