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

/art/runtime/interpreter/
H A Dunstarted_runtime.cc366 const char* entry_name,
375 std::unique_ptr<ZipEntry> zip_entry(zip_archive->Find(entry_name, error_msg));
380 zip_entry->ExtractToMemMap(jar_file.c_str(), entry_name, error_msg));
365 FindAndExtractEntry(const std::string& jar_file, const char* entry_name, size_t* size, std::string* error_msg) argument
/art/runtime/
H A Ddex_file.cc313 std::unique_ptr<const DexFile> DexFile::Open(const ZipArchive& zip_archive, const char* entry_name, argument
318 std::unique_ptr<ZipEntry> zip_entry(zip_archive.Find(entry_name, error_msg));
323 std::unique_ptr<MemMap> map(zip_entry->ExtractToMemMap(location.c_str(), entry_name, error_msg));
325 *error_msg = StringPrintf("Failed to extract '%s' from '%s': %s", entry_name, location.c_str(),

Completed in 991 milliseconds