Lines Matching refs:node
87 Node node; in PutIpInSlot() local
88 node.section.ip = thisIp; in PutIpInSlot()
89 node.section.prevIdx = prevIdx; in PutIpInSlot()
90 node.section.inKernel = !!(thisIp & IP_IN_KERNEL); in PutIpInSlot()
96 tableNode->value = node.value; in PutIpInSlot()
101 if (tableNode->value == node.value) { in PutIpInSlot()
179 Node *node = GetFrame(tailIdx); in GetIpsByStackId() local
180 while (node != nullptr && nr > 0) { in GetIpsByStackId()
182 node->section.inKernel ? (node->section.ip | KERNEL_PREFIX) : node->section.ip); in GetIpsByStackId()
183 if (node->section.prevIdx == HEAD_NODE_INDEX) { in GetIpsByStackId()
186 node = GetFrame(node->section.prevIdx); in GetIpsByStackId()
192 bool UniqueStackTable::ImportNode(uint32_t index, const Node& node) in ImportNode() argument
198 tableHead_[index].value = node.value; in ImportNode()