Lines Matching refs:qpoints
218 void SetQuickAllocEntryPoints##suffix(QuickEntryPoints* qpoints, bool instrumented) { \
220 qpoints->pAllocArray = art_quick_alloc_array##suffix##_instrumented; \
221 qpoints->pAllocArrayResolved = art_quick_alloc_array_resolved##suffix##_instrumented; \
222 …qpoints->pAllocArrayWithAccessCheck = art_quick_alloc_array_with_access_check##suffix##_instrument…
223 qpoints->pAllocObject = art_quick_alloc_object##suffix##_instrumented; \
224 qpoints->pAllocObjectResolved = art_quick_alloc_object_resolved##suffix##_instrumented; \
225 qpoints->pAllocObjectInitialized = art_quick_alloc_object_initialized##suffix##_instrumented; \
226 …qpoints->pAllocObjectWithAccessCheck = art_quick_alloc_object_with_access_check##suffix##_instrume…
227 qpoints->pCheckAndAllocArray = art_quick_check_and_alloc_array##suffix##_instrumented; \
228 …qpoints->pCheckAndAllocArrayWithAccessCheck = art_quick_check_and_alloc_array_with_access_check##s…
229 qpoints->pAllocStringFromBytes = art_quick_alloc_string_from_bytes##suffix##_instrumented; \
230 qpoints->pAllocStringFromChars = art_quick_alloc_string_from_chars##suffix##_instrumented; \
231 qpoints->pAllocStringFromString = art_quick_alloc_string_from_string##suffix##_instrumented; \
233 qpoints->pAllocArray = art_quick_alloc_array##suffix; \
234 qpoints->pAllocArrayResolved = art_quick_alloc_array_resolved##suffix; \
235 qpoints->pAllocArrayWithAccessCheck = art_quick_alloc_array_with_access_check##suffix; \
236 qpoints->pAllocObject = art_quick_alloc_object##suffix; \
237 qpoints->pAllocObjectResolved = art_quick_alloc_object_resolved##suffix; \
238 qpoints->pAllocObjectInitialized = art_quick_alloc_object_initialized##suffix; \
239 qpoints->pAllocObjectWithAccessCheck = art_quick_alloc_object_with_access_check##suffix; \
240 qpoints->pCheckAndAllocArray = art_quick_check_and_alloc_array##suffix; \
241 …qpoints->pCheckAndAllocArrayWithAccessCheck = art_quick_check_and_alloc_array_with_access_check##s…
242 qpoints->pAllocStringFromBytes = art_quick_alloc_string_from_bytes##suffix; \
243 qpoints->pAllocStringFromChars = art_quick_alloc_string_from_chars##suffix; \
244 qpoints->pAllocStringFromString = art_quick_alloc_string_from_string##suffix; \
269 void ResetQuickAllocEntryPoints(QuickEntryPoints* qpoints) { in ResetQuickAllocEntryPoints() argument
273 SetQuickAllocEntryPoints_dlmalloc(qpoints, entry_points_instrumented); in ResetQuickAllocEntryPoints()
277 SetQuickAllocEntryPoints_rosalloc(qpoints, entry_points_instrumented); in ResetQuickAllocEntryPoints()
282 SetQuickAllocEntryPoints_bump_pointer(qpoints, entry_points_instrumented); in ResetQuickAllocEntryPoints()
287 SetQuickAllocEntryPoints_tlab(qpoints, entry_points_instrumented); in ResetQuickAllocEntryPoints()
292 SetQuickAllocEntryPoints_region(qpoints, entry_points_instrumented); in ResetQuickAllocEntryPoints()
297 SetQuickAllocEntryPoints_region_tlab(qpoints, entry_points_instrumented); in ResetQuickAllocEntryPoints()
304 UNUSED(qpoints); in ResetQuickAllocEntryPoints()