Searched refs:stop_reason (Results 1 – 4 of 4) sorted by relevance
295 unwinding_result_.stop_reason = UnwindingResult::EXCEED_MAX_FRAMES_LIMIT; in UnwindCallChain()302 unwinding_result_.stop_reason = UnwindingResult::ACCESS_STACK_FAILED; in UnwindCallChain()304 unwinding_result_.stop_reason = UnwindingResult::ACCESS_MEM_FAILED; in UnwindCallChain()310 unwinding_result_.stop_reason = UnwindingResult::MAP_MISSING; in UnwindCallChain()313 unwinding_result_.stop_reason = UnwindingResult::UNKNOWN_REASON; in UnwindCallChain()
42 } stop_reason; member
1237 uint64_t stop_reason; in UnwindingResultRecord() local1238 MoveFromBinaryFormat(stop_reason, p); in UnwindingResultRecord()1239 unwinding_result.stop_reason = static_cast<decltype(unwinding_result.stop_reason)>(stop_reason); in UnwindingResultRecord()1257 uint64_t stop_reason = unwinding_result.stop_reason; in UnwindingResultRecord() local1258 MoveToBinaryFormat(stop_reason, p); in UnwindingResultRecord()1279 PrintIndented(indent, "stop_reason %s\n", map[unwinding_result.stop_reason].c_str()); in DumpData()1280 if (unwinding_result.stop_reason == UnwindingResult::ACCESS_REG_FAILED) { in DumpData()1282 } else if (unwinding_result.stop_reason == UnwindingResult::ACCESS_STACK_FAILED || in DumpData()1283 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]: