Home | History | Annotate | Download | only in runtime

Lines Matching full:dexfile

28   const DexFile* dex(OpenTestDexFile("Nested"));
58 static const DexFile* OpenDexFileBase64(const char* base64,
76 const DexFile* dex_file = DexFile::Open(location, location);
85 UniquePtr<const DexFile> raw(OpenDexFileBase64(kRawDex, tmp.GetFilename()));
88 const DexFile::Header& header = raw->GetHeader();
116 const DexFile* raw(OpenTestDexFile("Main"));
123 EXPECT_TRUE(DexFile::GetChecksum(GetLibCoreDexFileName(), &checksum));
129 const DexFile* raw(OpenTestDexFile("Nested"));
133 const DexFile::ClassDef& c0 = raw->GetClassDef(0);
136 const DexFile::ClassDef& c1 = raw->GetClassDef(1);
142 const DexFile* raw(OpenTestDexFile("CreateMethodSignature"));
146 const DexFile::ClassDef& class_def = raw->GetClassDef(0);
158 const DexFile::MethodId& method_id = raw->GetMethodId(it.GetMemberIndex());
171 const DexFile::MethodId& method_id = raw->GetMethodId(it.GetMemberIndex());
184 const DexFile::MethodId& method_id = raw->GetMethodId(it.GetMemberIndex());
198 const DexFile* raw(OpenTestDexFile("CreateMethodSignature"));
206 const DexFile::StringId* str_id = raw->FindStringId(str);
215 const DexFile::StringId* type_str_id = java_lang_dex_file_->FindStringId(type_str);
218 const DexFile::TypeId* type_id = java_lang_dex_file_->FindTypeId(type_str_idx);
226 const DexFile::ProtoId& to_find = java_lang_dex_file_->GetProtoId(i);
227 const DexFile::TypeList* to_find_tl = java_lang_dex_file_->GetProtoParameters(to_find);
234 const DexFile::ProtoId* found =
243 const DexFile::MethodId& to_find = java_lang_dex_file_->GetMethodId(i);
244 const DexFile::TypeId& klass = java_lang_dex_file_->GetTypeId(to_find.class_idx_);
245 const DexFile::StringId& name = java_lang_dex_file_->GetStringId(to_find.name_idx_);
246 const DexFile::ProtoId& signature = java_lang_dex_file_->GetProtoId(to_find.proto_idx_);
247 const DexFile::MethodId* found = java_lang_dex_file_->FindMethodId(klass, name, signature);
259 const DexFile::FieldId& to_find = java_lang_dex_file_->GetFieldId(i);
260 const DexFile::TypeId& klass = java_lang_dex_file_->GetTypeId(to_find.class_idx_);
261 const DexFile::StringId& name = java_lang_dex_file_->GetStringId(to_find.name_idx_);
262 const DexFile::TypeId& type = java_lang_dex_file_->GetTypeId(to_find.type_idx_);
263 const DexFile::FieldId* found = java_lang_dex_file_->FindFieldId(klass, name, type);