Searched refs:Stage (Results 1 – 5 of 5) sorted by relevance
/art/odrefresh/ |
D | odr_metrics.cc | 71 void OdrMetrics::SetDex2OatResult(Stage stage, in SetDex2OatResult() 75 case Stage::kPrimaryBootClasspath: in SetDex2OatResult() 79 case Stage::kSecondaryBootClasspath: in SetDex2OatResult() 83 case Stage::kSystemServerClasspath: in SetDex2OatResult() 87 case Stage::kCheck: in SetDex2OatResult() 88 case Stage::kComplete: in SetDex2OatResult() 89 case Stage::kPreparation: in SetDex2OatResult() 90 case Stage::kUnknown: in SetDex2OatResult() 95 void OdrMetrics::SetBcpCompilationType(Stage stage, BcpCompilationType type) { in SetBcpCompilationType() 97 case Stage::kPrimaryBootClasspath: in SetBcpCompilationType() [all …]
|
D | odr_metrics.h | 40 enum class Stage : uint8_t { enum 125 void SetStage(Stage stage) { stage_ = stage; } in SetStage() 128 void SetDex2OatResult(Stage stage, 133 void SetBcpCompilationType(Stage stage, BcpCompilationType type); 159 Stage stage_ = Stage::kUnknown; 193 std::ostream& operator<<(std::ostream& os, OdrMetrics::Stage stage);
|
D | odr_metrics_test.cc | 72 metrics.SetStage(OdrMetrics::Stage::kCheck); in TEST_F() 85 metrics.SetStage(OdrMetrics::Stage::kCheck); in TEST_F() 102 OdrMetrics::Stage::kPrimaryBootClasspath, in TEST_F() 105 metrics.SetBcpCompilationType(OdrMetrics::Stage::kPrimaryBootClasspath, in TEST_F() 137 OdrMetrics::Stage::kPrimaryBootClasspath, in TEST_F() 140 metrics.SetBcpCompilationType(OdrMetrics::Stage::kPrimaryBootClasspath, in TEST_F() 143 OdrMetrics::Stage::kSecondaryBootClasspath, in TEST_F() 146 metrics.SetBcpCompilationType(OdrMetrics::Stage::kSecondaryBootClasspath, in TEST_F() 171 OdrMetrics::Stage::kPrimaryBootClasspath, in TEST_F() 175 OdrMetrics::Stage::kSecondaryBootClasspath, in TEST_F() [all …]
|
D | odrefresh.cc | 1619 metrics.SetStage(OdrMetrics::Stage::kCheck); in CheckArtifactsAreUpToDate() 2125 metrics.SetStage(OdrMetrics::Stage::kPreparation); in Compile() 2188 std::optional<std::pair<OdrMetrics::Stage, OdrMetrics::Status>> first_failure; in Compile() 2192 OdrMetrics::Stage stage = (isa == bcp_instruction_sets.front()) ? in Compile() 2193 OdrMetrics::Stage::kPrimaryBootClasspath : in Compile() 2194 OdrMetrics::Stage::kSecondaryBootClasspath; in Compile() 2210 OdrMetrics::Stage stage = OdrMetrics::Stage::kSystemServerClasspath; in Compile() 2231 metrics.SetStage(OdrMetrics::Stage::kComplete); in Compile()
|
/art/libartbase/base/ |
D | common_art_test.h | 204 enum Stage { enum 210 Stage stage;
|