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

/art/runtime/
H A Dzip_archive.cc2 * Copyright (C) 2008 The Android Open Source Project
91 ZipArchive* ZipArchive::Open(const char* filename, std::string* error_msg) { function in class:art::ZipArchive
H A Dtype_lookup_table.cc2 * Copyright (C) 2015 The Android Open Source Project
68 TypeLookupTable* TypeLookupTable::Open(const uint8_t* raw_data, const DexFile& dex_file) { function in class:art::TypeLookupTable
H A Doat_file.cc2 * Copyright (C) 2011 The Android Open Source Project
56 // Whether OatFile::Open will try dlopen. Fallback is our own ELF loader.
59 // Whether OatFile::Open will try dlopen on the host. On the host we're not linking against
65 // For debugging, Open will print DlOpen error message if set to true.
70 // These are used in OatFile::Open to try all our loaders.
820 ScopedTrace trace("Open elf file " + location);
891 elf_file_.reset(ElfFile::Open(file,
944 OatFile* OatFile::Open(const std::string& filename, function in class:art::OatFile
952 ScopedTrace trace("Open oat file " + location);
1170 return DexFile::Open(dex_file_pointer
[all...]
H A Delf_file.cc2 * Copyright (C) 2012 The Android Open Source Project
59 ElfFileImpl<ElfTypes>* ElfFileImpl<ElfTypes>::Open(File* file, function in class:art::ElfFileImpl
83 ElfFileImpl<ElfTypes>* ElfFileImpl<ElfTypes>::Open(File* file, function in class:art::ElfFileImpl
399 // We'd also like to confirm a shstrtab in program_header_only_ mode (else Open() does this for
419 // MemMap::Open should have already set an error.
763 // TODO: we need to change this to calculate base_address_ in ::Open,
1160 // TODO: base_address_ needs to be calculated in ::Open, otherwise
1677 ElfFile* ElfFile::Open(File* file, function in class:art::ElfFile
1701 ElfFileImpl64* elf_file_impl = ElfFileImpl64::Open(file,
1711 ElfFileImpl32* elf_file_impl = ElfFileImpl32::Open(fil
1730 ElfFile* ElfFile::Open(File* file, int mmap_prot, int mmap_flags, std::string* error_msg) { function in class:art::ElfFile
[all...]
H A Ddex_file.cc2 * Copyright (C) 2011 The Android Open Source Project
123 bool DexFile::Open(const char* filename, const char* location, std::string* error_msg, function in class:art::DexFile
125 ScopedTrace trace(std::string("Open dex file ") + location);
126 DCHECK(dex_files != nullptr) << "DexFile::Open: out-param is nullptr";
205 std::unique_ptr<const DexFile> DexFile::Open(const uint8_t* base, size_t size, function in class:art::DexFile
211 ScopedTrace trace(std::string("Open dex file from RAM ") + location);
232 ScopedTrace trace(std::string("Open dex file ") + location);
313 std::unique_ptr<const DexFile> DexFile::Open(const ZipArchive& zip_archive, const char* entry_name, function in class:art::DexFile
365 std::unique_ptr<const DexFile> dex_file(Open(zip_archive, kClassesDex, location, error_msg,
381 std::unique_ptr<const DexFile> next_dex_file(Open(zip_archiv
[all...]
/art/runtime/base/unix_file/
H A Dfd_file.cc2 * Copyright (C) 2009 The Android Open Source Project
100 bool FdFile::Open(const std::string& path, int flags) { function in class:unix_file::FdFile
101 return Open(path, flags, 0640);
104 bool FdFile::Open(const std::string& path, int flags, mode_t mode) { function in class:unix_file::FdFile

Completed in 6936 milliseconds