Lines Matching refs:target_dex_file

136                                  const DexFile* target_dex_file,  in MethodPatch()  argument
138 LinkerPatch patch(literal_offset, Type::kMethod, target_dex_file); in MethodPatch()
144 const DexFile* target_dex_file, in CodePatch() argument
146 LinkerPatch patch(literal_offset, Type::kCall, target_dex_file); in CodePatch()
152 const DexFile* target_dex_file, in RelativeCodePatch() argument
154 LinkerPatch patch(literal_offset, Type::kCallRelative, target_dex_file); in RelativeCodePatch()
160 const DexFile* target_dex_file, in TypePatch() argument
162 LinkerPatch patch(literal_offset, Type::kType, target_dex_file); in TypePatch()
168 const DexFile* target_dex_file, in RelativeTypePatch() argument
171 LinkerPatch patch(literal_offset, Type::kTypeRelative, target_dex_file); in RelativeTypePatch()
178 const DexFile* target_dex_file, in TypeBssEntryPatch() argument
181 LinkerPatch patch(literal_offset, Type::kTypeBssEntry, target_dex_file); in TypeBssEntryPatch()
188 const DexFile* target_dex_file, in StringPatch() argument
190 LinkerPatch patch(literal_offset, Type::kString, target_dex_file); in StringPatch()
196 const DexFile* target_dex_file, in RelativeStringPatch() argument
199 LinkerPatch patch(literal_offset, Type::kStringRelative, target_dex_file); in RelativeStringPatch()
206 const DexFile* target_dex_file, in StringBssEntryPatch() argument
209 LinkerPatch patch(literal_offset, Type::kStringBssEntry, target_dex_file); in StringBssEntryPatch()
216 const DexFile* target_dex_file, in DexCacheArrayPatch() argument
219 LinkerPatch patch(literal_offset, Type::kDexCacheArray, target_dex_file); in DexCacheArrayPatch()
325 LinkerPatch(size_t literal_offset, Type patch_type, const DexFile* target_dex_file) in LinkerPatch() argument
326 : target_dex_file_(target_dex_file), in LinkerPatch()