Home | History | Annotate | Download | only in namespace

Lines Matching refs:Peer

312     /* Find the node that is the previous peer in the parent's child list */
317 NextNode = NextNode->Peer;
324 PrevNode->Peer = Node->Peer;
329 * Node is first child (has no previous peer).
330 * Link peer list to parent
332 ParentNode->Child = Node->Peer;
400 Node->Peer = NULL;
410 /* Add node to the end of the peer list */
412 while (ChildNode->Peer)
414 ChildNode = ChildNode->Peer;
417 ChildNode->Peer = Node;
482 NextNode = NextNode->Peer;