Home
last modified time | relevance | path

Searched refs:first_failure (Results 1 – 1 of 1) sorted by relevance

/art/odrefresh/
Dodrefresh.cc2188 std::optional<std::pair<OdrMetrics::Stage, OdrMetrics::Status>> first_failure; in Compile() local
2203 first_failure = first_failure.value_or(std::make_pair(stage, bcp_result.status)); in Compile()
2215 first_failure = first_failure.value_or(std::make_pair(stage, ss_result.status)); in Compile()
2219 if (first_failure.has_value()) { in Compile()
2220 LOG(ERROR) << "Compilation failed, stage: " << first_failure->first in Compile()
2221 << " status: " << first_failure->second; in Compile()
2222 metrics.SetStage(first_failure->first); in Compile()
2223 metrics.SetStatus(first_failure->second); in Compile()