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

/art/dex2oat/
H A Ddex2oat.cc823 std::string zip_location; local
891 zip_location = option.substr(strlen("--zip-location=")).data();
1116 if (!dex_filenames.empty() && !zip_location.empty()) {
1128 if (zip_fd != -1 && zip_location.empty()) {
1319 std::unique_ptr<ZipArchive> zip_archive(ZipArchive::OpenFromFd(zip_fd, zip_location.c_str(),
1322 LOG(ERROR) << "Failed to open zip from file descriptor for '" << zip_location << "': "
1326 if (!DexFile::OpenFromZip(*zip_archive.get(), zip_location, &error_msg, &dex_files)) {
1327 LOG(ERROR) << "Failed to open dex from file descriptor for zip file '" << zip_location

Completed in 158 milliseconds