Searched defs:host_prefix (Results 1 - 2 of 2) sorted by relevance

/art/dex2oat/
H A Ddex2oat.cc227 const std::string* host_prefix,
278 if (host_prefix != NULL && StartsWith(image_file_location, host_prefix->c_str())) {
279 image_file_location = image_file_location.substr(host_prefix->size());
588 UniquePtr<std::string> host_prefix; local
668 host_prefix.reset(new std::string(option.substr(strlen("--host-prefix=")).data()));
724 if (host_prefix.get() == NULL) {
727 host_prefix.reset(new std::string(android_product_out));
741 if (host_prefix.get() == NULL) {
744 boot_image_filename += *host_prefix
226 CreateOatFile(const std::string& boot_image_option, const std::string* host_prefix, const std::string& android_root, bool is_host, const std::vector<const DexFile*>& dex_files, File* oat_file, const std::string& bitcode_filename, bool image, UniquePtr<CompilerDriver::DescriptorSet>& image_classes, bool dump_stats, base::TimingLogger& timings) argument
[all...]
/art/oatdump/
H A Doatdump.cc99 explicit OatDumper(const std::string& host_prefix, const OatFile& oat_file) argument
100 : host_prefix_(host_prefix),
666 const std::string& host_prefix, gc::space::ImageSpace& image_space,
668 : os_(os), image_filename_(image_filename), host_prefix_(host_prefix),
1367 UniquePtr<std::string> host_prefix; local
1380 host_prefix.reset(new std::string(option.substr(strlen("--host-prefix=")).data()));
1405 if (host_prefix.get() == NULL) {
1408 host_prefix.reset(new std::string(android_product_out));
1410 host_prefix.reset(new std::string(""));
1421 OatDumper oat_dumper(*host_prefix
665 ImageDumper(std::ostream* os, const std::string& image_filename, const std::string& host_prefix, gc::space::ImageSpace& image_space, const ImageHeader& image_header) argument
[all...]

Completed in 201 milliseconds