Home
last modified time | relevance | path

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

/art/runtime/
Dexec_utils_test.cc111 exec_utils_ = std::make_unique<AlwaysFallbackExecUtils>(); in SetUp()
114 exec_utils_ = std::make_unique<NeverFallbackExecUtils>(); in SetUp()
121 std::unique_ptr<TestingExecUtils> exec_utils_; member in art::ExecUtilsTest
130 EXPECT_TRUE(exec_utils_->Exec(command, &error_msg)); in TEST_P()
140 ExecResult result = exec_utils_->ExecAndReturnResult(command, /*timeout_sec=*/-1, &error_msg); in TEST_P()
158 EXPECT_FALSE(exec_utils_->Exec(command, &error_msg)); in TEST_P()
177 EXPECT_TRUE(exec_utils_->Exec(command, &error_msg)); in TEST_P()
195 EXPECT_EQ(exec_utils_->ExecAndReturnResult(command, kWaitSeconds, &error_msg).status, in TEST_P()
206 EXPECT_EQ(exec_utils_->ExecAndReturnResult(command, kWaitSeconds, &error_msg).status, in TEST_P()
219 EXPECT_CALL(*exec_utils_, GetProcStat(_)) in TEST_P()
[all …]
/art/artd/
Dartd.h108 exec_utils_(std::move(exec_utils)), in options_()
330 const std::unique_ptr<ExecUtils> exec_utils_; variable
Dartd.cc1724 ExecResult result = exec_utils_->ExecAndReturnResult( in ExecAndReturnCode()
/art/odrefresh/
Dodrefresh.h387 std::unique_ptr<ExecUtils> exec_utils_; variable
Dodrefresh.cc702 exec_utils_(std::move(exec_utils)), in OnDeviceRefresh()
1802 ExecResult dex2oat_result = exec_utils_->ExecAndReturnResult(args.Get(), timeout, &error_msg); in RunDex2oat()