Home
last modified time | relevance | path

Searched refs:AllocatorType (Results 1 – 19 of 19) sorted by relevance

/art/runtime/entrypoints/
Dentrypoint_utils.h62 gc::AllocatorType allocator_type)
70 … gc::AllocatorType allocator_type)
78 … gc::AllocatorType allocator_type)
98 gc::AllocatorType allocator_type)
106 … gc::AllocatorType allocator_type)
112 gc::AllocatorType allocator_type)
119 gc::AllocatorType allocator_type)
Dentrypoint_utils-inl.h126 gc::AllocatorType allocator_type) { in AllocObjectFromCode()
145 gc::AllocatorType allocator_type) { in AllocObjectFromCodeResolved()
167 gc::AllocatorType allocator_type) { in AllocObjectFromCodeInitialized()
216 gc::AllocatorType allocator_type) { in AllocArrayFromCode()
238 gc::AllocatorType allocator_type) { in AllocArrayFromCodeResolved()
Dentrypoint_utils.cc83 gc::AllocatorType /* allocator_type */) { in CheckAndAllocArrayFromCode() argument
103 gc::AllocatorType /* allocator_type */) { in CheckAndAllocArrayFromCodeInstrumented() argument
/art/runtime/entrypoints/quick/
Dquick_alloc_entrypoints.h26 enum AllocatorType;
36 void SetQuickAllocEntryPointsAllocator(gc::AllocatorType allocator)
Dquick_alloc_entrypoints.cc165 static gc::AllocatorType entry_points_allocator = gc::kAllocatorTypeDlMalloc;
167 void SetQuickAllocEntryPointsAllocator(gc::AllocatorType allocator) { in SetQuickAllocEntryPointsAllocator()
/art/runtime/gc/space/
Dvalgrind_malloc_space.h30 template <typename BaseMallocSpaceType, typename AllocatorType>
49 ValgrindMallocSpace(const std::string& name, MemMap* mem_map, AllocatorType allocator,
/art/runtime/gc/
Dheap.h194 Thread* self, mirror::Class* klass, size_t byte_count, AllocatorType allocator,
198 AllocatorType GetCurrentAllocator() const { in GetCurrentAllocator()
202 AllocatorType GetCurrentNonMovingAllocator() const { in GetCurrentNonMovingAllocator()
217 void ChangeAllocator(AllocatorType allocator)
621 static ALWAYS_INLINE bool AllocatorHasAllocationStack(AllocatorType allocator_type) { in AllocatorHasAllocationStack()
626 static ALWAYS_INLINE bool AllocatorMayHaveConcurrentGC(AllocatorType allocator_type) { in AllocatorMayHaveConcurrentGC()
652 mirror::Object* AllocateInternalWithGc(Thread* self, AllocatorType allocator, size_t num_bytes,
670 ALWAYS_INLINE mirror::Object* TryToAllocate(Thread* self, AllocatorType allocator_type,
675 void ThrowOutOfMemoryError(Thread* self, size_t byte_count, AllocatorType allocator_type)
679 bool IsOutOfMemoryOnAllocation(AllocatorType allocator_type, size_t alloc_size);
[all …]
Dallocator_type.h24 enum AllocatorType { enum
Dheap-inl.h40 size_t byte_count, AllocatorType allocator, in AllocObjectWithAllocator()
195 inline mirror::Object* Heap::TryToAllocate(Thread* self, AllocatorType allocator_type, in TryToAllocate()
303 inline bool Heap::IsOutOfMemoryOnAllocation(AllocatorType allocator_type, size_t alloc_size) { in IsOutOfMemoryOnAllocation()
Dheap.cc517 void Heap::ChangeAllocator(AllocatorType allocator) { in ChangeAllocator()
934 void Heap::ThrowOutOfMemoryError(Thread* self, size_t byte_count, AllocatorType allocator_type) { in ThrowOutOfMemoryError()
1280 mirror::Object* Heap::AllocateInternalWithGc(Thread* self, AllocatorType allocator, in AllocateInternalWithGc()
/art/runtime/entrypoints/portable/
Dportable_alloc_entrypoints.cc23 static constexpr gc::AllocatorType kPortableAllocatorType =
/art/runtime/mirror/
Dobject_array.h34 gc::AllocatorType allocator_type)
Dobject_array-inl.h36 int32_t length, gc::AllocatorType allocator_type) { in Alloc()
251 gc::AllocatorType allocator_type = heap->IsMovableObject(this) ? heap->GetCurrentAllocator() : in CopyOf()
Darray.h41 size_t component_size, gc::AllocatorType allocator_type,
Darray-inl.h134 size_t component_size, gc::AllocatorType allocator_type, in Alloc()
Dclass-inl.h554 inline Object* Class::Alloc(Thread* self, gc::AllocatorType allocator_type) { in Alloc()
Dclass.h465 ALWAYS_INLINE Object* Alloc(Thread* self, gc::AllocatorType allocator_type)
/art/runtime/native/
Ddalvik_system_VMRuntime.cc77 gc::AllocatorType allocator = runtime->GetHeap()->GetCurrentNonMovingAllocator(); in VMRuntime_newNonMovableArray()
101 gc::AllocatorType allocator = runtime->GetHeap()->GetCurrentAllocator(); in VMRuntime_newUnpaddedArray()
/art/runtime/interpreter/
Dinterpreter.cc38 gc::AllocatorType allocator = runtime->GetHeap()->GetCurrentAllocator(); in UnstartedRuntimeJni()