• Home
  • Raw
  • Download

Lines Matching refs:mirror

38 static ALWAYS_INLINE inline mirror::Object* artAllocObjectFromCode(  in artAllocObjectFromCode()
39 mirror::Class* klass, in artAllocObjectFromCode()
48 mirror::Object* obj; in artAllocObjectFromCode()
72 extern "C" mirror::Object* artAllocObjectFromCodeWithChecks##suffix##suffix2( \
73 mirror::Class* klass, Thread* self) \
77 extern "C" mirror::Object* artAllocObjectFromCodeResolved##suffix##suffix2( \
78 mirror::Class* klass, Thread* self) \
82 extern "C" mirror::Object* artAllocObjectFromCodeInitialized##suffix##suffix2( \
83 mirror::Class* klass, Thread* self) \
87 extern "C" mirror::String* artAllocStringObject##suffix##suffix2( \
88 mirror::Class* klass, Thread* self) \
92 return mirror::String::AllocEmptyString<instrumented_bool>(self, allocator_type).Ptr(); \
94 extern "C" mirror::Array* artAllocArrayFromCodeResolved##suffix##suffix2( \
95 mirror::Class* klass, int32_t component_count, Thread* self) \
101 extern "C" mirror::String* artAllocStringFromBytesFromCode##suffix##suffix2( \
102 mirror::ByteArray* byte_array, int32_t high, int32_t offset, int32_t byte_count, \
107 Handle<mirror::ByteArray> handle_array(hs.NewHandle(byte_array)); \
108 return mirror::String::AllocFromByteArray<instrumented_bool>( \
111 extern "C" mirror::String* artAllocStringFromCharsFromCode##suffix##suffix2( \
112 int32_t offset, int32_t char_count, mirror::CharArray* char_array, Thread* self) \
115 Handle<mirror::CharArray> handle_array(hs.NewHandle(char_array)); \
116 return mirror::String::AllocFromCharArray<instrumented_bool>( \
119 extern "C" mirror::String* artAllocStringFromStringFromCode##suffix##suffix2( /* NOLINT */ \
120 mirror::String* string, Thread* self) \
123 Handle<mirror::String> handle_string(hs.NewHandle(string)); \
124 return mirror::String::AllocFromString<instrumented_bool>( \
140 extern "C" void* art_quick_alloc_array_resolved##suffix(mirror::Class* klass, int32_t); \
141 extern "C" void* art_quick_alloc_array_resolved8##suffix(mirror::Class* klass, int32_t); \
142 extern "C" void* art_quick_alloc_array_resolved16##suffix(mirror::Class* klass, int32_t); \
143 extern "C" void* art_quick_alloc_array_resolved32##suffix(mirror::Class* klass, int32_t); \
144 extern "C" void* art_quick_alloc_array_resolved64##suffix(mirror::Class* klass, int32_t); \
145 extern "C" void* art_quick_alloc_object_resolved##suffix(mirror::Class* klass); \
146 extern "C" void* art_quick_alloc_object_initialized##suffix(mirror::Class* klass); \
147 extern "C" void* art_quick_alloc_object_with_checks##suffix(mirror::Class* klass); \
148 extern "C" void* art_quick_alloc_string_object##suffix(mirror::Class* klass); \
152 extern "C" void* art_quick_alloc_array_resolved##suffix##_instrumented(mirror::Class* klass, int32_…
153 extern "C" void* art_quick_alloc_array_resolved8##suffix##_instrumented(mirror::Class* klass, int32…
154 extern "C" void* art_quick_alloc_array_resolved16##suffix##_instrumented(mirror::Class* klass, int3…
155 extern "C" void* art_quick_alloc_array_resolved32##suffix##_instrumented(mirror::Class* klass, int3…
156 extern "C" void* art_quick_alloc_array_resolved64##suffix##_instrumented(mirror::Class* klass, int3…
157 extern "C" void* art_quick_alloc_object_resolved##suffix##_instrumented(mirror::Class* klass); \
158 extern "C" void* art_quick_alloc_object_initialized##suffix##_instrumented(mirror::Class* klass); \
159 extern "C" void* art_quick_alloc_object_with_checks##suffix##_instrumented(mirror::Class* klass); \
160 extern "C" void* art_quick_alloc_string_object##suffix##_instrumented(mirror::Class* klass); \