Lines Matching refs:dex_file
54 for (const std::unique_ptr<const DexFile>& dex_file : sdk_dex_files_) { in ShouldDenyAccess() local
55 const dex::TypeId* declaring_type_id = dex_file->FindTypeId(declaring_class_descriptor); in ShouldDenyAccess()
59 const dex::StringId* name_id = dex_file->FindStringId(name); in ShouldDenyAccess()
66 if (!dex_file->CreateTypeList( in ShouldDenyAccess()
70 const dex::ProtoId* proto_id = dex_file->FindProtoId(return_type_idx, param_type_idxs); in ShouldDenyAccess()
76 dex_file->FindMethodId(*declaring_type_id, *name_id, *proto_id); in ShouldDenyAccess()
101 for (const std::unique_ptr<const DexFile>& dex_file : sdk_dex_files_) { in ShouldDenyAccess() local
102 const dex::TypeId* declaring_type_id = dex_file->FindTypeId(declaring_class_descriptor); in ShouldDenyAccess()
106 const dex::StringId* name_id = dex_file->FindStringId(name); in ShouldDenyAccess()
110 const dex::TypeId* type_id = dex_file->FindTypeId(type_descriptor); in ShouldDenyAccess()
115 const dex::FieldId* field_id = dex_file->FindFieldId(*declaring_type_id, *name_id, *type_id); in ShouldDenyAccess()
136 for (const std::unique_ptr<const DexFile>& dex_file : sdk_dex_files_) { in ShouldDenyAccess() local
137 const dex::TypeId* type_id = dex_file->FindTypeId(descriptor); in ShouldDenyAccess()
139 dex::TypeIndex type_idx = dex_file->GetIndexForTypeId(*type_id); in ShouldDenyAccess()
140 if (dex_file->FindClassDef(type_idx) != nullptr) { in ShouldDenyAccess()