Searched defs:Alloc (Results 1 - 6 of 6) sorted by relevance

/art/runtime/mirror/
H A Dstack_trace_element.cc40 StackTraceElement* StackTraceElement::Alloc(Thread* self, function in class:art::mirror::StackTraceElement
H A Dobject_array-inl.h32 inline ObjectArray<T>* ObjectArray<T>::Alloc(Thread* self, Class* object_array_class, int32_t length) { function in class:art::mirror::ObjectArray
33 Array* array = Array::Alloc(self, object_array_class, length, sizeof(Object*));
137 ObjectArray<T>* new_array = Alloc(self, GetClass(), new_length);
H A Darray.cc35 Array* Array::Alloc(Thread* self, Class* array_class, int32_t component_count, function in class:art::mirror::Array
63 Array* Array::Alloc(Thread* self, Class* array_class, int32_t component_count) { function in class:art::mirror::Array
65 return Alloc(self, array_class, component_count, array_class->GetComponentSize());
80 SirtRef<Array> new_array(self, Array::Alloc(self, array_class, array_length));
146 PrimitiveArray<T>* PrimitiveArray<T>::Alloc(Thread* self, size_t length) { function in class:art::mirror::PrimitiveArray
148 Array* raw_array = Array::Alloc(self, array_class_, length, sizeof(T));
H A Dstring.cc120 String* string = Alloc(self, GetJavaLangString(), utf16_length);
150 String* string = Alloc(self, GetJavaLangString(), utf16_length);
161 String* String::Alloc(Thread* self, Class* java_lang_String, int32_t utf16_length) { function in class:art::mirror::String
162 SirtRef<CharArray> array(self, CharArray::Alloc(self, utf16_length));
166 return Alloc(self, java_lang_String, array.get());
169 String* String::Alloc(Thread* self, Class* java_lang_String, CharArray* array) { function in class:art::mirror::String
/art/runtime/gc/space/
H A Dlarge_object_space.cc58 mirror::Object* LargeObjectMapSpace::Alloc(Thread* self, size_t num_bytes, size_t* bytes_allocated) { function in class:art::gc::space::LargeObjectMapSpace
249 mirror::Object* FreeListSpace::Alloc(Thread* self, size_t num_bytes, size_t* bytes_allocated) { function in class:art::gc::space::FreeListSpace
H A Ddlmalloc_space.cc65 virtual mirror::Object* Alloc(Thread* self, size_t num_bytes, size_t* bytes_allocated) { function in class:art::gc::space::ValgrindDlMallocSpace
66 void* obj_with_rdz = DlMallocSpace::Alloc(self, num_bytes + 2 * kValgrindRedZoneBytes,
247 mirror::Object* DlMallocSpace::Alloc(Thread* self, size_t num_bytes, size_t* bytes_allocated) { function in class:art::gc::space::DlMallocSpace

Completed in 82 milliseconds