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

/art/runtime/gc/space/
H A Dimage_space.cc942 // Relocate an image space mapped at target_base which possibly used to be at a different base
947 uint8_t* target_base,
953 if (image_header.GetImageBegin() == target_base) {
1002 reinterpret_cast<uintptr_t>(target_base),
1023 uintptr_t objects_begin = reinterpret_cast<uintptr_t>(target_base + objects_section.Offset());
1024 uintptr_t objects_end = reinterpret_cast<uintptr_t>(target_base + objects_section.End());
1031 target_base,
1049 CHECK_EQ(image_header.GetImageBegin(), target_base);
1111 image_header.VisitPackedArtMethods(&method_visitor, target_base, pointer_size);
1118 image_header.VisitPackedArtFields(&field_visitor, target_base);
946 RelocateInPlace(ImageHeader& image_header, uint8_t* target_base, accounting::ContinuousSpaceBitmap* bitmap, const OatFile* app_oat_file, std::string* error_msg) argument
[all...]
/art/runtime/
H A Druntime.cc716 const char* target_base = getenv("EMULATED_STORAGE_TARGET"); local
717 if (target_base != nullptr) {
718 if (mount("tmpfs", target_base, "tmpfs", MS_NOSUID | MS_NODEV,
720 PLOG(ERROR) << "Failed to mount tmpfs to " << target_base;

Completed in 97 milliseconds