Lines Matching refs:method

30     uint32_t type_idx, mirror::ArtMethod* method, Thread* self, \
34 return AllocObjectFromCode<false, instrumented_bool>(type_idx, method, self, allocator_type); \
37 mirror::Class* klass, mirror::ArtMethod* method, Thread* self, \
41 return AllocObjectFromCodeResolved<instrumented_bool>(klass, method, self, allocator_type); \
44 mirror::Class* klass, mirror::ArtMethod* method, Thread* self, \
48 return AllocObjectFromCodeInitialized<instrumented_bool>(klass, method, self, allocator_type); \
51 uint32_t type_idx, mirror::ArtMethod* method, Thread* self, \
55 return AllocObjectFromCode<true, instrumented_bool>(type_idx, method, self, allocator_type); \
58 uint32_t type_idx, mirror::ArtMethod* method, int32_t component_count, Thread* self, \
62 return AllocArrayFromCode<false, instrumented_bool>(type_idx, method, component_count, self, \
66 mirror::Class* klass, mirror::ArtMethod* method, int32_t component_count, Thread* self, \
70 return AllocArrayFromCodeResolved<false, instrumented_bool>(klass, method, component_count, self, \
74 uint32_t type_idx, mirror::ArtMethod* method, int32_t component_count, Thread* self, \
78 return AllocArrayFromCode<true, instrumented_bool>(type_idx, method, component_count, self, \
82 uint32_t type_idx, mirror::ArtMethod* method, int32_t component_count, Thread* self, \
87 return CheckAndAllocArrayFromCode(type_idx, method, component_count, self, false, allocator_type); \
89 return CheckAndAllocArrayFromCodeInstrumented(type_idx, method, component_count, self, false, allocator_type); \
93 uint32_t type_idx, mirror::ArtMethod* method, int32_t component_count, Thread* self, \
98 return CheckAndAllocArrayFromCode(type_idx, method, component_count, self, true, allocator_type); \
100 return CheckAndAllocArrayFromCodeInstrumented(type_idx, method, component_count, self, true, allocator_type); \
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); \
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* method); \
129 extern "C" void* art_quick_alloc_object_with_access_check##suffix##_instrumented(uint32_t type_idx, void* method); \