Lines Matching refs:suffix

28 #define GENERATE_ENTRYPOINTS_FOR_ALLOCATOR_INST(suffix, suffix2, instrumented_bool, allocator_type)…  argument
29 extern "C" mirror::Object* artAllocObjectFromCode ##suffix##suffix2( \
36 extern "C" mirror::Object* artAllocObjectFromCodeResolved##suffix##suffix2( \
43 extern "C" mirror::Object* artAllocObjectFromCodeInitialized##suffix##suffix2( \
50 extern "C" mirror::Object* artAllocObjectFromCodeWithAccessCheck##suffix##suffix2( \
57 extern "C" mirror::Array* artAllocArrayFromCode##suffix##suffix2( \
65 extern "C" mirror::Array* artAllocArrayFromCodeResolved##suffix##suffix2( \
73 extern "C" mirror::Array* artAllocArrayFromCodeWithAccessCheck##suffix##suffix2( \
81 extern "C" mirror::Array* artCheckAndAllocArrayFromCode##suffix##suffix2( \
92 extern "C" mirror::Array* artCheckAndAllocArrayFromCodeWithAccessCheck##suffix##suffix2( \
104 #define GENERATE_ENTRYPOINTS_FOR_ALLOCATOR(suffix, allocator_type) \ argument
105 GENERATE_ENTRYPOINTS_FOR_ALLOCATOR_INST(suffix, Instrumented, true, allocator_type) \
106 GENERATE_ENTRYPOINTS_FOR_ALLOCATOR_INST(suffix, , false, allocator_type)
113 #define GENERATE_ENTRYPOINTS(suffix) \ argument
114 extern "C" void* art_quick_alloc_array##suffix(uint32_t, void*, int32_t); \
115 extern "C" void* art_quick_alloc_array_resolved##suffix(void* klass, void*, int32_t); \
116 extern "C" void* art_quick_alloc_array_with_access_check##suffix(uint32_t, void*, int32_t); \
117 extern "C" void* art_quick_alloc_object##suffix(uint32_t type_idx, void* method); \
118 extern "C" void* art_quick_alloc_object_resolved##suffix(void* klass, void* method); \
119 extern "C" void* art_quick_alloc_object_initialized##suffix(void* klass, void* method); \
120 extern "C" void* art_quick_alloc_object_with_access_check##suffix(uint32_t type_idx, void* method);…
121 extern "C" void* art_quick_check_and_alloc_array##suffix(uint32_t, void*, int32_t); \
122 extern "C" void* art_quick_check_and_alloc_array_with_access_check##suffix(uint32_t, void*, int32_t…
123 extern "C" void* art_quick_alloc_array##suffix##_instrumented(uint32_t, void*, int32_t); \
124 extern "C" void* art_quick_alloc_array_resolved##suffix##_instrumented(void* klass, void*, int32_t)…
125 extern "C" void* art_quick_alloc_array_with_access_check##suffix##_instrumented(uint32_t, void*, in…
126 extern "C" void* art_quick_alloc_object##suffix##_instrumented(uint32_t type_idx, void* method); \
127 extern "C" void* art_quick_alloc_object_resolved##suffix##_instrumented(void* klass, void* method);…
128 extern "C" void* art_quick_alloc_object_initialized##suffix##_instrumented(void* klass, void* metho…
129 extern "C" void* art_quick_alloc_object_with_access_check##suffix##_instrumented(uint32_t type_idx,…
130 extern "C" void* art_quick_check_and_alloc_array##suffix##_instrumented(uint32_t, void*, int32_t); \
131 extern "C" void* art_quick_check_and_alloc_array_with_access_check##suffix##_instrumented(uint32_t,…
132 void SetQuickAllocEntryPoints##suffix(QuickEntryPoints* qpoints, bool instrumented) { \
134 qpoints->pAllocArray = art_quick_alloc_array##suffix##_instrumented; \
135 qpoints->pAllocArrayResolved = art_quick_alloc_array_resolved##suffix##_instrumented; \
136 …qpoints->pAllocArrayWithAccessCheck = art_quick_alloc_array_with_access_check##suffix##_instrument…
137 qpoints->pAllocObject = art_quick_alloc_object##suffix##_instrumented; \
138 qpoints->pAllocObjectResolved = art_quick_alloc_object_resolved##suffix##_instrumented; \
139 qpoints->pAllocObjectInitialized = art_quick_alloc_object_initialized##suffix##_instrumented; \
140 …qpoints->pAllocObjectWithAccessCheck = art_quick_alloc_object_with_access_check##suffix##_instrume…
141 qpoints->pCheckAndAllocArray = art_quick_check_and_alloc_array##suffix##_instrumented; \
142 …cArrayWithAccessCheck = art_quick_check_and_alloc_array_with_access_check##suffix##_instrumented; \
144 qpoints->pAllocArray = art_quick_alloc_array##suffix; \
145 qpoints->pAllocArrayResolved = art_quick_alloc_array_resolved##suffix; \
146 qpoints->pAllocArrayWithAccessCheck = art_quick_alloc_array_with_access_check##suffix; \
147 qpoints->pAllocObject = art_quick_alloc_object##suffix; \
148 qpoints->pAllocObjectResolved = art_quick_alloc_object_resolved##suffix; \
149 qpoints->pAllocObjectInitialized = art_quick_alloc_object_initialized##suffix; \
150 qpoints->pAllocObjectWithAccessCheck = art_quick_alloc_object_with_access_check##suffix; \
151 qpoints->pCheckAndAllocArray = art_quick_check_and_alloc_array##suffix; \
152 …->pCheckAndAllocArrayWithAccessCheck = art_quick_check_and_alloc_array_with_access_check##suffix; \