Lines Matching refs:self
30 uint32_t type_idx, mirror::ArtMethod* method, Thread* self, \
33 FinishCalleeSaveFrameSetup(self, sp, Runtime::kRefsOnly); \
34 return AllocObjectFromCode<false, instrumented_bool>(type_idx, method, self, allocator_type); \
37 mirror::Class* klass, mirror::ArtMethod* method, Thread* self, \
40 FinishCalleeSaveFrameSetup(self, sp, Runtime::kRefsOnly); \
41 return AllocObjectFromCodeResolved<instrumented_bool>(klass, method, self, allocator_type); \
44 mirror::Class* klass, mirror::ArtMethod* method, Thread* self, \
47 FinishCalleeSaveFrameSetup(self, sp, Runtime::kRefsOnly); \
48 return AllocObjectFromCodeInitialized<instrumented_bool>(klass, method, self, allocator_type); \
51 uint32_t type_idx, mirror::ArtMethod* method, Thread* self, \
54 FinishCalleeSaveFrameSetup(self, sp, Runtime::kRefsOnly); \
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, \
61 FinishCalleeSaveFrameSetup(self, sp, Runtime::kRefsOnly); \
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, \
69 FinishCalleeSaveFrameSetup(self, sp, Runtime::kRefsOnly); \
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, \
77 FinishCalleeSaveFrameSetup(self, sp, Runtime::kRefsOnly); \
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, \
85 FinishCalleeSaveFrameSetup(self, sp, Runtime::kRefsOnly); \
87 …return CheckAndAllocArrayFromCode(type_idx, method, component_count, self, false, allocator_type);…
89 …return CheckAndAllocArrayFromCodeInstrumented(type_idx, method, component_count, self, false, allo…
93 uint32_t type_idx, mirror::ArtMethod* method, int32_t component_count, Thread* self, \
96 FinishCalleeSaveFrameSetup(self, sp, Runtime::kRefsOnly); \
98 …return CheckAndAllocArrayFromCode(type_idx, method, component_count, self, true, allocator_type); \
100 …return CheckAndAllocArrayFromCodeInstrumented(type_idx, method, component_count, self, true, alloc…