Lines Matching refs:DexFile
51 class DexFile {
386 std::vector<const DexFile*>* dex_files);
389 static const DexFile* Open(const uint8_t* base, size_t size, in Open()
398 std::string* error_msg, std::vector<const DexFile*>* dex_files);
401 virtual ~DexFile();
557 const FieldId* FindFieldId(const DexFile::TypeId& declaring_klass,
558 const DexFile::StringId& name,
559 const DexFile::TypeId& type) const;
563 const DexFile::TypeId& type_id = GetTypeId(field_id.class_idx_); in GetFieldDeclaringClassDescriptor()
569 const DexFile::TypeId& type_id = GetTypeId(field_id.type_idx_); in GetFieldTypeDescriptor()
597 const MethodId* FindMethodId(const DexFile::TypeId& declaring_klass,
598 const DexFile::StringId& name,
599 const DexFile::ProtoId& signature) const;
603 const DexFile::TypeId& type_id = GetTypeId(method_id.class_idx_); in GetMethodDeclaringClassDescriptor()
892 static const DexFile* OpenFile(int fd, const char* location, bool verify, std::string* error_msg);
896 std::vector<const DexFile*>* dex_files);
909 static const DexFile* Open(const ZipArchive& zip_archive, const char* entry_name,
914 static const DexFile* OpenMemory(const std::string& location,
920 static const DexFile* OpenMemory(const byte* dex_file,
927 DexFile(const byte* base, size_t size,
1002 std::ostream& operator<<(std::ostream& os, const DexFile& dex_file);
1007 DexFileParameterIterator(const DexFile& dex_file, const DexFile::ProtoId& proto_id) in DexFileParameterIterator()
1023 const DexFile& dex_file_;
1024 const DexFile::TypeList* type_list_;
1047 Signature(const DexFile* dex, const DexFile::ProtoId& proto) : dex_file_(dex), proto_id_(&proto) { in Signature()
1053 friend class DexFile; variable
1055 const DexFile* const dex_file_;
1056 const DexFile::ProtoId* const proto_id_;
1063 ClassDataItemIterator(const DexFile& dex_file, const byte* raw_class_data_item) in ClassDataItemIterator()
1154 InvokeType GetMethodInvokeType(const DexFile::ClassDef& class_def) const { in GetMethodInvokeType()
1172 const DexFile::CodeItem* GetMethodCodeItem() const { in GetMethodCodeItem()
1238 const DexFile& dex_file_;
1247 EncodedStaticFieldValueIterator(const DexFile& dex_file, Handle<mirror::DexCache>* dex_cache,
1249 ClassLinker* linker, const DexFile::ClassDef& class_def)
1282 const DexFile& dex_file_;
1297 CatchHandlerIterator(const DexFile::CodeItem& code_item, uint32_t address);
1299 CatchHandlerIterator(const DexFile::CodeItem& code_item,
1300 const DexFile::TryItem& try_item);
1323 void Init(const DexFile::CodeItem& code_item, int32_t offset);