Lines Matching defs:self
49 mirror::Object* AllocWithGrowth(Thread* self, size_t num_bytes, size_t* bytes_allocated,
52 mirror::Object* Alloc(Thread* self, size_t num_bytes, size_t* bytes_allocated,
54 return AllocNonvirtual(self, num_bytes, bytes_allocated, usable_size,
57 mirror::Object* AllocThreadUnsafe(Thread* self, size_t num_bytes, size_t* bytes_allocated,
60 return AllocNonvirtualThreadUnsafe(self, num_bytes, bytes_allocated, usable_size,
66 size_t Free(Thread* self, mirror::Object* ptr) OVERRIDE
68 size_t FreeList(Thread* self, size_t num_ptrs, mirror::Object** ptrs) OVERRIDE
71 mirror::Object* AllocNonvirtual(Thread* self, size_t num_bytes, size_t* bytes_allocated,
74 return AllocCommon(self, num_bytes, bytes_allocated, usable_size,
77 mirror::Object* AllocNonvirtualThreadUnsafe(Thread* self, size_t num_bytes,
81 return AllocCommon<false>(self, num_bytes, bytes_allocated, usable_size,
87 ALWAYS_INLINE bool CanAllocThreadLocal(Thread* self, size_t num_bytes);
90 ALWAYS_INLINE mirror::Object* AllocThreadLocal(Thread* self, size_t num_bytes,
157 mirror::Object* AllocCommon(Thread* self, size_t num_bytes, size_t* bytes_allocated,