Lines Matching refs:location

83 void OatFile::CheckLocation(const std::string& location) {  in CheckLocation()  argument
84 CHECK(!location.empty()); in CheckLocation()
88 const std::string& location, in OpenWithElfFile() argument
91 std::unique_ptr<OatFile> oat_file(new OatFile(location, false)); in OpenWithElfFile()
103 const std::string& location, in Open() argument
109 CHECK(!filename.empty()) << location; in Open()
110 CheckLocation(location); in Open()
120 ret.reset(OpenDlopen(filename, location, requested_base, abs_dex_location, error_msg)); in Open()
147 ret.reset(OpenElfFile(file.get(), location, requested_base, oat_file_begin, false, executable, in Open()
156 OatFile* OatFile::OpenWritable(File* file, const std::string& location, in OpenWritable() argument
159 CheckLocation(location); in OpenWritable()
160 return OpenElfFile(file, location, nullptr, nullptr, true, false, abs_dex_location, error_msg); in OpenWritable()
163 OatFile* OatFile::OpenReadable(File* file, const std::string& location, in OpenReadable() argument
166 CheckLocation(location); in OpenReadable()
167 return OpenElfFile(file, location, nullptr, nullptr, false, false, abs_dex_location, error_msg); in OpenReadable()
171 const std::string& location, in OpenDlopen() argument
175 std::unique_ptr<OatFile> oat_file(new OatFile(location, true)); in OpenDlopen()
184 const std::string& location, in OpenElfFile() argument
191 std::unique_ptr<OatFile> oat_file(new OatFile(location, executable)); in OpenElfFile()
201 OatFile::OatFile(const std::string& location, bool is_executable) in OatFile() argument
202 : location_(location), begin_(nullptr), end_(nullptr), bss_begin_(nullptr), bss_end_(nullptr), in OatFile()
796 std::string& location = *it; in CheckStaticDexFileDependencies() local
807 if (DexFile::GetChecksum(DexFile::GetDexCanonicalLocation(location.c_str()).c_str(), in CheckStaticDexFileDependencies()
812 location.c_str(), converted, dex_checksum); in CheckStaticDexFileDependencies()
818 *msg = StringPrintf("Could not retrieve checksum for %s: %s", location.c_str(), in CheckStaticDexFileDependencies()