Home
last modified time | relevance | path

Searched refs:location_ (Results 1 – 18 of 18) sorted by relevance

/art/openjdkjvmti/
Dti_breakpoint.h60 return method_ == other.method_ && location_ == other.location_;
68 return location_; in GetLocation()
73 jlocation location_; variable
Dti_breakpoint.cc121 ^ std::hash<jlocation> {}(location_); in hash()
124 Breakpoint::Breakpoint(art::ArtMethod* m, jlocation loc) : method_(m), location_(loc) { in Breakpoint()
/art/libelffile/stream/
Doutput_stream.h36 explicit OutputStream(const std::string& location) : location_(location) {} in OutputStream()
41 return location_; in GetLocation()
57 const std::string location_;
/art/libdexfile/dex/
Ddex_file_loader.cc178 ZipArchive::OpenFromOwnedFd(file_->Fd(), location_.c_str(), error_msg) : in GetMultiDexChecksum()
180 root_container_->Begin(), root_container_->Size(), location_.c_str(), error_msg)); in GetMultiDexChecksum()
265 DEXFILE_SCOPED_TRACE(std::string("Open dex file ") + location_); in OpenOne()
277 location_, in OpenOne()
293 *error_msg = StringPrintf("Unable to open '%s' : Size is too small", location_.c_str()); in InitAndReadMagic()
355 DEXFILE_SCOPED_TRACE(std::string("Open dex file ") + location_); in Open()
367 ZipArchive::OpenFromOwnedFd(file_->Fd(), location_.c_str(), error_msg) : in Open()
369 root_container_->Begin(), root_container_->Size(), location_.c_str(), error_msg)); in Open()
379 location_, in Open()
395 LOG(WARNING) << location_ << " has in excess of " << kWarnOnManyDexFilesThreshold in Open()
[all …]
Ddex_file_loader.h164 : filename_(filename), file_(file), location_(location) { in DexFileLoader()
169 : root_container_(std::move(container)), location_(location) { in DexFileLoader()
209 CHECK(dex_file == nullptr || dex_file->IsDexContainerLastEntry()) << location_; in Open()
341 const std::string location_; variable
Ddex_file.cc160 location_(location), in DexFile()
204 location_.c_str()); in Init()
214 location_.c_str(), in Init()
222 location_.c_str(), in Init()
Ddex_file.h274 return location_; in GetLocation()
967 const std::string location_; variable
Ddex_file_verifier.cc132 location_(location), in DexFileVerifier()
369 failure_reason_ = StringPrintf("Failure to verify dex file '%s': ", location_); in ErrorStringPrintf()
404 const char* const location_; member in art::dex::DexFileVerifier
/art/runtime/oat/
Doat_file_assistant.h131 Location GetLocation() { return location_; } in GetLocation()
132 bool IsVdexUsable() { return location_ != kLocationNoneOrError; } in IsVdexUsable()
135 Location location_ = kLocationNoneOrError;
Doat_file.h209 return location_; in GetLocation()
427 const std::string location_;
Doat_file_assistant.cc338 dexopt_status->location_ = kLocationNoneOrError; in GetDexOptNeeded()
342 dexopt_status->location_ = GetLocation(info); in GetDexOptNeeded()
Doat_file.cc2021 : location_(location), in OatFile()
2037 CHECK(!location_.empty()); in OatFile()
/art/runtime/mirror/
Ddex_cache.cc156 SetFieldObject<false>(OFFSET_OF_OBJECT_MEMBER(DexCache, location_), location); in SetLocation()
Ddex_cache-inl.h351 OFFSET_OF_OBJECT_MEMBER(DexCache, location_)); in GetLocation()
Ddex_cache.h577 HeapReference<String> location_; variable
/art/compiler/utils/riscv64/
Dassembler_riscv64.cc6625 OffsetBits offset_size_needed = GetOffsetSizeNeeded(location_, target_); in InitializeType()
6740 location_(location), in Branch()
6762 location_(location), in Branch()
6785 location_(location), in Branch()
6802 location_(location), in Branch()
6866 uint32_t Riscv64Assembler::Branch::GetLocation() const { return location_; } in GetLocation()
6931 if (location_ > expand_location) { in Relocate()
6932 location_ += delta; in Relocate()
6985 if (target_ <= location_) { in PromoteIfNeeded()
6987 needed_size = GetOffsetSizeNeeded(location_ + branch_info_[cond21Type].pc_offset, target_); in PromoteIfNeeded()
[all …]
Dassembler_riscv64.h2094 uint32_t location_; // Offset into assembler buffer in bytes. variable
/art/runtime/
Dclass_linker_test.cc688 addOffset(OFFSETOF_MEMBER(mirror::DexCache, location_), "location"); in DexCacheOffsets()