Home | History | Annotate | Download | only in space

Lines Matching full:mirror

25 #include "mirror/art_method.h"
26 #include "mirror/class-inl.h"
27 #include "mirror/object-inl.h"
156 const mirror::Object* obj = reinterpret_cast<const mirror::Object*>(current);
214 mirror::Object* resolution_method = image_header.GetImageRoot(ImageHeader::kResolutionMethod);
215 runtime->SetResolutionMethod(down_cast<mirror::ArtMethod*>(resolution_method));
217 mirror::Object* callee_save_method = image_header.GetImageRoot(ImageHeader::kCalleeSaveMethod);
218 runtime->SetCalleeSaveMethod(down_cast<mirror::ArtMethod*>(callee_save_method), Runtime::kSaveAll);
220 runtime->SetCalleeSaveMethod(down_cast<mirror::ArtMethod*>(callee_save_method), Runtime::kRefsOnly);
222 runtime->SetCalleeSaveMethod(down_cast<mirror::ArtMethod*>(callee_save_method), Runtime::kRefsAndArgs);
252 mirror::String* oat_location =
253 down_cast<mirror::String*>(image_header.GetImageRoot(ImageHeader::kOatLocation));