Lines Matching defs:stackId
591 uint32_t stackId = 0;
595 stackId = responseLibraryMap_.size() + 1;
597 stackId = callStackMap_.size() + 1;
599 stackmap->set_id(stackId);
620 responseLibraryMap_[callStack_[0]] = stackId;
622 callStackMap_[callStack_] = stackId;
624 return stackId;
673 uint32_t stackId = FindCallStackId(callStack_);
674 if (stackId > 0) {
675 return stackId;
798 uint32_t stackId = FindCallStackId(callStack_);
799 if (stackId > 0) {
800 SetAllocStatisticsData(rawStack, stackId, true);
802 stackId = SetCallStackMap(stackData);
804 SetAllocStatisticsData(rawStack, stackId);
820 uint32_t stackId = FindCallStackId(callStack_);
821 if (stackId > 0) {
822 SetAllocStatisticsData(rawStack, stackId, true);
824 stackId = SetCallStackMap(stackData);
826 SetAllocStatisticsData(rawStack, stackId);
1001 inline void StackPreprocess::SetAllocStatisticsData(const RawStackPtr& rawStack, size_t stackId, bool isExists)
1005 auto recordIter = recordStatisticsMap_.find(stackId);
1012 statisticsPeriodData_[stackId] = &recordIter->second;
1017 record.callstackId = stackId;
1044 auto [recordIter, stat] = recordStatisticsMap_.emplace(stackId, record);
1047 statisticsPeriodData_[stackId] = &recordIter->second;