Lines Matching refs:target_dex_file
78 const DexFile* target_dex_file, in RelativeMethodPatch() argument
81 LinkerPatch patch(literal_offset, Type::kMethodRelative, target_dex_file); in RelativeMethodPatch()
88 const DexFile* target_dex_file, in MethodBssEntryPatch() argument
91 LinkerPatch patch(literal_offset, Type::kMethodBssEntry, target_dex_file); in MethodBssEntryPatch()
98 const DexFile* target_dex_file, in RelativeCodePatch() argument
100 LinkerPatch patch(literal_offset, Type::kCallRelative, target_dex_file); in RelativeCodePatch()
106 const DexFile* target_dex_file, in RelativeTypePatch() argument
109 LinkerPatch patch(literal_offset, Type::kTypeRelative, target_dex_file); in RelativeTypePatch()
116 const DexFile* target_dex_file, in TypeBssEntryPatch() argument
119 LinkerPatch patch(literal_offset, Type::kTypeBssEntry, target_dex_file); in TypeBssEntryPatch()
126 const DexFile* target_dex_file, in RelativeStringPatch() argument
129 LinkerPatch patch(literal_offset, Type::kStringRelative, target_dex_file); in RelativeStringPatch()
136 const DexFile* target_dex_file, in StringBssEntryPatch() argument
139 LinkerPatch patch(literal_offset, Type::kStringBssEntry, target_dex_file); in StringBssEntryPatch()
245 LinkerPatch(size_t literal_offset, Type patch_type, const DexFile* target_dex_file) in LinkerPatch() argument
246 : target_dex_file_(target_dex_file), in LinkerPatch()