Lines Matching defs:stackId
119 uint64_t UniqueStackTable::PutIpsInTable(StackId *stackId, u64 *ips, u64 nr)
136 CHECK_TRUE(stackId == nullptr, 0, 0, "");
137 stackId->section.id = prev;
138 stackId->section.nr = nr;
155 Node* UniqueStackTable::GetFrame(uint64_t stackId)
159 CHECK_TRUE(stackId >= totalNodes_, nullptr, 1, "Failed to find frame by index: %" PRIu64 "", stackId);
161 return reinterpret_cast<Node *>(&tableHead[stackId]);
164 bool UniqueStackTable::GetIpsByStackId(StackId stackId, std::vector<u64>& ips)
167 uint64_t nr = stackId.section.nr;
168 uint64_t tailIdx = stackId.section.id;