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

/art/runtime/
H A Ddex_file.cc48 const byte DexFile::kDexMagic[] = { 'd', 'e', 'x', '\n' };
49 const byte DexFile::kDexMagicVersion[] = { '0', '3', '5', '\0' };
51 DexFile::ClassPathEntry DexFile::FindInClassPath(const char* descriptor,
54 const DexFile* dex_file = class_path[i];
55 const DexFile::ClassDef* dex_class_def = dex_file->FindClassDef(descriptor);
61 return ClassPathEntry(reinterpret_cast<const DexFile*>(NULL),
62 reinterpret_cast<const DexFile::ClassDef*>(NULL));
84 bool DexFile::GetChecksum(const std::string& filename, uint32_t* checksum) {
105 UniquePtr<const DexFile> dex_fil
[all...]
H A Ddex_file.h46 class DexFile { class in namespace:art
53 // name of the DexFile entry within a zip archive
338 typedef std::pair<const DexFile*, const DexFile::ClassDef*> ClassPathEntry;
339 typedef std::vector<const DexFile*> ClassPath;
353 static const DexFile* Open(const std::string& filename,
357 static const DexFile* Open(const uint8_t* base, size_t size,
364 static const DexFile* Open(const ZipArchive& zip_archive, const std::string& location);
367 virtual ~DexFile();
373 // For DexFiles directly from .dex files, this is the checksum from the DexFile
837 DexFile(const byte* base, size_t size, function in class:art::DexFile
[all...]

Completed in 178 milliseconds