Lines Matching refs:target
1042 OrderNode& target = GetNode(index); in Use() local
1044 if (! IsLockedNode(target)) in Use()
1047 Unlink(target); in Use()
1052 target.nextIndex = root.nextIndex; in Use()
1053 target.prevIndex = first.prevIndex; in Use()
1063 OrderNode& target = GetNode(index); in Unuse() local
1065 if (! IsLockedNode(target)) in Unuse()
1068 Unlink(target); in Unuse()
1074 target.prevIndex = root.prevIndex; in Unuse()
1075 target.nextIndex = last.nextIndex; in Unuse()
1084 OrderNode& target = GetNode(index); in Lock() local
1086 if (! IsLockedNode(target)) in Lock()
1089 Unlink(target); in Lock()
1092 MarkLocked(target); in Lock()
1101 OrderNode& target = GetNode(index); in Unlock() local
1103 if (IsLockedNode(target)) in Unlock()
1110 target.nextIndex = root.nextIndex; in Unlock()
1111 target.prevIndex = first.prevIndex; in Unlock()