Searched refs:ForkAndExecResult (Results 1 – 6 of 6) sorted by relevance
/art/oatdump/ |
D | oatdump_test.h | 160 ForkAndExecResult res = ForkAndExec(exec_argv, post_fork_fn, &error_msg); in GenerateAppOdexFile() 161 if (res.stage != ForkAndExecResult::kFinished) { in GenerateAppOdexFile() 334 ForkAndExecResult res = ForkAndExec(exec_argv, post_fork_fn, line_buf_fn); 335 if (res.stage != ForkAndExecResult::kFinished) {
|
D | oatdump_test.cc | 101 ForkAndExecResult res = ForkAndExec({dexdump, "-d", dex_location}, post_fork_fn, &output); in TEST_F()
|
/art/libartbase/base/ |
D | common_art_test.cc | 599 CommonArtTestImpl::ForkAndExecResult CommonArtTestImpl::ForkAndExec( in ForkAndExec() 603 ForkAndExecResult result; in ForkAndExec() 605 result.stage = ForkAndExecResult::kLink; in ForkAndExec() 624 result.stage = ForkAndExecResult::kFork; in ForkAndExec() 650 result.stage = ForkAndExecResult::kWaitpid; in ForkAndExec() 666 result.stage = ForkAndExecResult::kFinished; in ForkAndExec() 670 CommonArtTestImpl::ForkAndExecResult CommonArtTestImpl::ForkAndExec( in ForkAndExec()
|
D | common_art_test.h | 189 struct ForkAndExecResult { struct 205 static ForkAndExecResult ForkAndExec(const std::vector<std::string>& argv, argument 208 static ForkAndExecResult ForkAndExec(const std::vector<std::string>& argv,
|
/art/runtime/ |
D | dex2oat_environment_test.h | 222 ForkAndExecResult res = ForkAndExec(argv, post_fork_fn, output); in Dex2Oat() 223 if (res.stage != ForkAndExecResult::kFinished) { in Dex2Oat()
|
D | common_runtime_test.cc | 504 ForkAndExecResult res = ForkAndExec(args, post_fork_fn, error_msg); in RunDex2Oat() 505 if (res.stage != ForkAndExecResult::kFinished) { in RunDex2Oat()
|