Searched refs:stop_reason (Results 1 – 4 of 4) sorted by relevance
259 unwinding_result_.stop_reason = UnwindingResult::EXCEED_MAX_FRAMES_LIMIT; in UnwindCallChain()266 unwinding_result_.stop_reason = UnwindingResult::ACCESS_STACK_FAILED; in UnwindCallChain()268 unwinding_result_.stop_reason = UnwindingResult::ACCESS_MEM_FAILED; in UnwindCallChain()274 unwinding_result_.stop_reason = UnwindingResult::MAP_MISSING; in UnwindCallChain()277 unwinding_result_.stop_reason = UnwindingResult::UNKNOWN_REASON; in UnwindCallChain()
47 } stop_reason; member
1136 uint64_t stop_reason; in UnwindingResultRecord() local1137 MoveFromBinaryFormat(stop_reason, p); in UnwindingResultRecord()1138 unwinding_result.stop_reason = static_cast<decltype(unwinding_result.stop_reason)>(stop_reason); in UnwindingResultRecord()1156 uint64_t stop_reason = unwinding_result.stop_reason; in UnwindingResultRecord() local1157 MoveToBinaryFormat(stop_reason, p); in UnwindingResultRecord()1178 PrintIndented(indent, "stop_reason %s\n", map[unwinding_result.stop_reason].c_str()); in DumpData()1179 if (unwinding_result.stop_reason == UnwindingResult::ACCESS_REG_FAILED) { in DumpData()1181 } else if (unwinding_result.stop_reason == UnwindingResult::ACCESS_STACK_FAILED || in DumpData()1182 unwinding_result.stop_reason == UnwindingResult::ACCESS_MEM_FAILED) { in DumpData()
180 stop_reason = sample_result.unwinding_result['stop_reason']181 result_list = self.sample_results.get(stop_reason)183 result_list = self.sample_results[stop_reason] = []193 for stop_reason in sorted(self.sample_results):194 for sample_result in self.sample_results[stop_reason]: