Searched refs:nodeKey (Results 1 – 4 of 4) sorted by relevance
30 NodeKey nodeKey; in NodeInit() local33 nodeKey.methodKey.frameId.pandaFilePtr = ROOT_NODE_PTR; in NodeInit()34 nodesMap_.emplace(nodeKey, nodesMap_.size() + 1); in NodeInit()40 nodeKey.methodKey.frameId.pandaFilePtr = PROGRAM_NODE_PTR; in NodeInit()41 nodesMap_.emplace(nodeKey, nodesMap_.size() + 1); in NodeInit()47 nodeKey.methodKey.frameId.pandaFilePtr = IDLE_NODE_PTR; in NodeInit()48 nodesMap_.emplace(nodeKey, nodesMap_.size() + 1); in NodeInit()147 NodeKey nodeKey; in ProcessSingleCallStackData() local148 nodeKey.parentId = nodeId; in ProcessSingleCallStackData()149 nodeKey.methodKey.lineNumber = frameInfo->lineNumber; in ProcessSingleCallStackData()[all …]
82 bool operator<(const NodeKey &nodeKey) const84 return std::tie(parentId, methodKey) < std::tie(nodeKey.parentId, nodeKey.methodKey);
59 bool operator < (const NodeKey &nodeKey) const61 return parentId < nodeKey.parentId ||62 (parentId == nodeKey.parentId && methodKey < nodeKey.methodKey);
45 struct NodeKey nodeKey; in NodeInit() local48 nodeKey.methodKey.methodIdentifier = reinterpret_cast<void *>(INT_MAX - 1); in NodeInit()49 nodeMap_.emplace(nodeKey, nodeMap_.size() + 1); in NodeInit()55 … nodeKey.methodKey.methodIdentifier = reinterpret_cast<void *>(INT_MAX - 2); // 2:program node id in NodeInit()56 nodeMap_.emplace(nodeKey, nodeMap_.size() + 1); in NodeInit()62 nodeKey.methodKey.methodIdentifier = reinterpret_cast<void *>(INT_MAX - 3); // 3:idle node id in NodeInit()63 nodeMap_.emplace(nodeKey, nodeMap_.size() + 1); in NodeInit()80 struct NodeKey nodeKey; in AddSample() local84 nodeKey.methodKey = frame->frameStack[frameStackLength - 1]; in AddSample()85 methodNode.parentId = nodeKey.parentId = methodNode.id; in AddSample()[all …]