Searched refs:stage (Results 1 – 10 of 10) sorted by relevance
/art/odrefresh/ |
D | odr_metrics.h | 125 void SetStage(Stage stage) { stage_ = stage; } in SetStage() argument 128 void SetDex2OatResult(Stage stage, 133 void SetBcpCompilationType(Stage stage, BcpCompilationType type); 193 std::ostream& operator<<(std::ostream& os, OdrMetrics::Stage stage);
|
D | odr_metrics.cc | 72 void OdrMetrics::SetDex2OatResult(Stage stage, in SetDex2OatResult() argument 75 switch (stage) { in SetDex2OatResult() 96 void OdrMetrics::SetBcpCompilationType(Stage stage, BcpCompilationType type) { in SetBcpCompilationType() argument 97 switch (stage) { in SetBcpCompilationType()
|
D | odrefresh.cc | 2065 OdrMetrics::Stage stage = (isa == bcp_instruction_sets.front()) ? in Compile() local 2070 metrics.SetDex2OatResult(stage, bcp_result.elapsed_time_ms, bcp_result.dex2oat_result); in Compile() 2071 metrics.SetBcpCompilationType(stage, boot_images_to_generate.GetTypeForMetrics()); in Compile() 2076 first_failure = first_failure.value_or(std::make_pair(stage, bcp_result.status)); in Compile() 2082 OdrMetrics::Stage stage = OdrMetrics::Stage::kSystemServerClasspath; in Compile() local 2085 metrics.SetDex2OatResult(stage, ss_result.elapsed_time_ms, ss_result.dex2oat_result); in Compile() 2087 first_failure = first_failure.value_or(std::make_pair(stage, ss_result.status)); in Compile()
|
/art/compiler/optimizing/ |
D | register_allocator_graph_color.cc | 113 std::ostream& operator<<(std::ostream& os, const CoalesceStage& stage) { in operator <<() argument 114 return os << static_cast<typename std::underlying_type<CoalesceStage>::type>(stage); in operator <<() 126 stage(CoalesceStage::kWorklist), in CoalesceOpportunity() 141 CoalesceStage stage; member 158 std::ostream& operator<<(std::ostream& os, const NodeStage& stage) { in operator <<() argument 159 return os << static_cast<typename std::underlying_type<NodeStage>::type>(stage); in operator <<() 222 : stage(NodeStage::kInitial), in InterferenceNode() 240 DCHECK_NE(stage, NodeStage::kPruned); in AddInterference() 241 DCHECK_NE(other->stage, NodeStage::kPruned); in AddInterference() 261 DCHECK_EQ(other->stage, NodeStage::kPruned) << "Should only remove interferences when pruning"; in RemoveInterference() [all …]
|
/art/dex2oat/ |
D | dex2oat_cts_test.cc | 52 if (res.stage != ForkAndExecResult::kFinished) { in Dex2Oat()
|
/art/libartbase/base/ |
D | common_art_test.h | 204 Stage stage; member 208 return stage == kFinished && WIFEXITED(status_code) && WEXITSTATUS(status_code) == 0; in StandardSuccess()
|
D | common_art_test.cc | 600 result.stage = ForkAndExecResult::kLink; in ForkAndExec() 620 result.stage = ForkAndExecResult::kFork; in ForkAndExec() 646 result.stage = ForkAndExecResult::kWaitpid; in ForkAndExec() 662 result.stage = ForkAndExecResult::kFinished; in ForkAndExec()
|
/art/oatdump/ |
D | oatdump_test.h | 161 if (res.stage != ForkAndExecResult::kFinished) { in GenerateAppOdexFile() 337 if (res.stage != ForkAndExecResult::kFinished) {
|
/art/runtime/ |
D | dex2oat_environment_test.h | 229 if (res.stage != ForkAndExecResult::kFinished) { in Dex2Oat()
|
D | common_runtime_test.cc | 530 if (res.stage != ForkAndExecResult::kFinished) { in RunDex2Oat()
|