Lines Matching refs:zip_fd
106 static OatFileBase* OpenOatFile(int zip_fd,
118 static OatFileBase* OpenOatFile(int zip_fd,
167 bool Setup(int zip_fd, const char* abs_dex_location, std::string* error_msg);
189 OatFileBase* OatFileBase::OpenOatFile(int zip_fd, in OpenOatFile() argument
222 if (!ret->Setup(zip_fd, abs_dex_location, error_msg)) { in OpenOatFile()
230 OatFileBase* OatFileBase::OpenOatFile(int zip_fd, in OpenOatFile() argument
262 if (!ret->Setup(zip_fd, abs_dex_location, error_msg)) { in OpenOatFile()
475 bool OatFileBase::Setup(int zip_fd, const char* abs_dex_location, std::string* error_msg) { in Setup() argument
642 if (zip_fd != -1) { in Setup()
643 loaded = dex_file_loader.OpenZip(zip_fd, in Setup()
1226 static ElfOatFile* OpenElfFile(int zip_fd,
1236 bool InitializeFromElfFile(int zip_fd,
1287 ElfOatFile* ElfOatFile::OpenElfFile(int zip_fd, in OpenElfFile() argument
1314 if (!oat_file->Setup(zip_fd, abs_dex_location, error_msg)) { in OpenElfFile()
1321 bool ElfOatFile::InitializeFromElfFile(int zip_fd, in InitializeFromElfFile() argument
1339 return Setup(zip_fd, abs_dex_location, error_msg); in InitializeFromElfFile()
1570 OatFile* OatFile::OpenWithElfFile(int zip_fd, in OpenWithElfFile() argument
1577 return oat_file->InitializeFromElfFile(zip_fd, elf_file, vdex_file, abs_dex_location, error_msg) in OpenWithElfFile()
1582 OatFile* OatFile::Open(int zip_fd, in Open() argument
1607 OatFile* with_dlopen = OatFileBase::OpenOatFile<DlOpenOatFile>(zip_fd, in Open()
1636 OatFile* with_internal = OatFileBase::OpenOatFile<ElfOatFile>(zip_fd, in Open()
1649 OatFile* OatFile::Open(int zip_fd, in Open() argument
1662 OatFile* with_internal = OatFileBase::OpenOatFile<ElfOatFile>(zip_fd, in Open()
1676 OatFile* OatFile::OpenWritable(int zip_fd, in OpenWritable() argument
1682 return ElfOatFile::OpenElfFile(zip_fd, in OpenWritable()
1693 OatFile* OatFile::OpenReadable(int zip_fd, in OpenReadable() argument
1699 return ElfOatFile::OpenElfFile(zip_fd, in OpenReadable()