Home
last modified time | relevance | path

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

/frameworks/native/cmds/installd/
Drun_dex2oat.cpp62 RunDex2Oat::RunDex2Oat(const char* dex2oat_bin, ExecVHelper* execv_helper) in RunDex2Oat() function in android::installd::RunDex2Oat
65 void RunDex2Oat::Initialize(const UniqueFile& output_oat, in Initialize()
111 RunDex2Oat::~RunDex2Oat() {} in ~RunDex2Oat()
113 void RunDex2Oat::PrepareBootImageFlags(bool use_jitzygote) { in PrepareBootImageFlags()
123 void RunDex2Oat::PrepareInputFileFlags(const UniqueFile& output_oat, in PrepareInputFileFlags()
177 void RunDex2Oat::PrepareCompilerConfigFlags(const UniqueFile& input_vdex, in PrepareCompilerConfigFlags()
277 void RunDex2Oat::PrepareCompilerRuntimeAndPerfConfigFlags(bool post_bootcomplete, in PrepareCompilerRuntimeAndPerfConfigFlags()
328 void RunDex2Oat::Exec(int exit_code) { in Exec()
332 void RunDex2Oat::AddArg(const std::string& arg) { in AddArg()
336 void RunDex2Oat::AddRuntimeArg(const std::string& arg) { in AddRuntimeArg()
[all …]
Drun_dex2oat.h30 class RunDex2Oat {
32 explicit RunDex2Oat(const char* dex2oat_bin, ExecVHelper* execv_helper);
33 virtual ~RunDex2Oat();
Drun_dex2oat_test.cpp52 class FakeRunDex2Oat : public RunDex2Oat {
59 : RunDex2Oat("/dir/bin/dex2oat", execv_helper), properties_(properties) { } in FakeRunDex2Oat()
Ddexopt.cpp1963 RunDex2Oat runner(dex2oat_bin, execv_helper.get()); in dexopt()