Lines Matching refs:literal_offset
58 static LinkerPatch IntrinsicReferencePatch(size_t literal_offset, in IntrinsicReferencePatch() argument
61 LinkerPatch patch(literal_offset, Type::kIntrinsicReference, /* target_dex_file= */ nullptr); in IntrinsicReferencePatch()
67 static LinkerPatch DataBimgRelRoPatch(size_t literal_offset, in DataBimgRelRoPatch() argument
70 LinkerPatch patch(literal_offset, Type::kDataBimgRelRo, /* target_dex_file= */ nullptr); in DataBimgRelRoPatch()
76 static LinkerPatch RelativeMethodPatch(size_t literal_offset, in RelativeMethodPatch() argument
80 LinkerPatch patch(literal_offset, Type::kMethodRelative, target_dex_file); in RelativeMethodPatch()
86 static LinkerPatch MethodBssEntryPatch(size_t literal_offset, in MethodBssEntryPatch() argument
90 LinkerPatch patch(literal_offset, Type::kMethodBssEntry, target_dex_file); in MethodBssEntryPatch()
96 static LinkerPatch RelativeCodePatch(size_t literal_offset, in RelativeCodePatch() argument
99 LinkerPatch patch(literal_offset, Type::kCallRelative, target_dex_file); in RelativeCodePatch()
104 static LinkerPatch RelativeTypePatch(size_t literal_offset, in RelativeTypePatch() argument
108 LinkerPatch patch(literal_offset, Type::kTypeRelative, target_dex_file); in RelativeTypePatch()
114 static LinkerPatch TypeBssEntryPatch(size_t literal_offset, in TypeBssEntryPatch() argument
118 LinkerPatch patch(literal_offset, Type::kTypeBssEntry, target_dex_file); in TypeBssEntryPatch()
124 static LinkerPatch RelativeStringPatch(size_t literal_offset, in RelativeStringPatch() argument
128 LinkerPatch patch(literal_offset, Type::kStringRelative, target_dex_file); in RelativeStringPatch()
134 static LinkerPatch StringBssEntryPatch(size_t literal_offset, in StringBssEntryPatch() argument
138 LinkerPatch patch(literal_offset, Type::kStringBssEntry, target_dex_file); in StringBssEntryPatch()
144 static LinkerPatch BakerReadBarrierBranchPatch(size_t literal_offset,
147 LinkerPatch patch(literal_offset,
230 LinkerPatch(size_t literal_offset, Type patch_type, const DexFile* target_dex_file) in LinkerPatch() argument
232 literal_offset_(literal_offset), in LinkerPatch()
238 DCHECK(IsUint<24>(literal_offset)); in LinkerPatch()