Searched refs:location_ (Results 1 – 12 of 12) sorted by relevance
/art/compiler/ |
D | output_stream.h | 36 explicit OutputStream(const std::string& location) : location_(location) {} in OutputStream() 41 return location_; in GetLocation() 49 const std::string location_;
|
/art/runtime/ |
D | dex_file_verifier.h | 38 : dex_file_(dex_file), begin_(begin), size_(size), location_(location), in DexFileVerifier() 117 const char* const location_; variable
|
D | oat_file.h | 94 return location_; in GetLocation() 298 const std::string location_; variable
|
D | dex_file.h | 413 return location_; in GetLocation() 445 return GetBaseLocation(location_); in GetBaseLocation() 992 const std::string location_; variable
|
D | oat_file.cc | 202 : location_(location), begin_(nullptr), end_(nullptr), bss_begin_(nullptr), bss_end_(nullptr), in OatFile() 205 CHECK(!location_.empty()); in OatFile()
|
D | dex_file.cc | 402 location_(location), in DexFile()
|
D | dex_file_verifier.cc | 2137 failure_reason_ = StringPrintf("Failure to verify dex file '%s': ", location_); in ErrorStringPrintf()
|
D | class_linker_test.cc | 569 addOffset(OFFSETOF_MEMBER(mirror::DexCache, location_), "location"); in DexCacheOffsets()
|
/art/runtime/mirror/ |
D | dex_cache.h | 57 return GetFieldObject<String>(OFFSET_OF_OBJECT_MEMBER(DexCache, location_)); in GetLocation() 152 HeapReference<String> location_; variable
|
D | dex_cache.cc | 45 SetFieldObject<false>(OFFSET_OF_OBJECT_MEMBER(DexCache, location_), location); in Init()
|
/art/compiler/utils/arm/ |
D | assembler_thumb2.h | 523 assembler_(assembler), type_(type), location_(location), in assembler_() 532 assembler_(assembler), type_(type), location_(location), in Branch() 541 assembler_(assembler), type_(type), location_(location), in assembler_() 568 location_ += delta; in Move() 577 if (location_ > oldlocation) { in Relocate() 578 location_ += delta; in Relocate() 606 return location_; in GetLocation() 642 int32_t delta = target_ - location_ - 4; in CalculateSize() 679 uint32_t location_; // Offset into assembler buffer in bytes. variable
|
D | assembler_thumb2.cc | 1286 int32_t offset = target_ - location_; in Emit() 1316 buffer->Store<int16_t>(location_, static_cast<int16_t>(encoding >> 16)); in Emit() 1317 buffer->Store<int16_t>(location_+2, static_cast<int16_t>(encoding & 0xffff)); in Emit() 1329 buffer->Store<int16_t>(location_, encoding); in Emit() 1341 buffer->Store<int16_t>(location_, encoding); in Emit()
|