Home
last modified time | relevance | path

Searched refs:IsRunningOnMemoryTool (Results 1 – 8 of 8) sorted by relevance

/art/runtime/base/
Darena_allocator.h158 bool IsRunningOnMemoryTool() { return is_running_on_valgrind_; } in IsRunningOnMemoryTool() function
168 bool IsRunningOnMemoryTool() { return kAvailable; } in IsRunningOnMemoryTool() function
176 using ArenaAllocatorMemoryToolCheck::IsRunningOnMemoryTool;
179 if (UNLIKELY(IsRunningOnMemoryTool())) { in MakeDefined()
184 if (UNLIKELY(IsRunningOnMemoryTool())) { in MakeUndefined()
189 if (UNLIKELY(IsRunningOnMemoryTool())) { in MakeInaccessible()
285 using ArenaAllocatorMemoryTool::IsRunningOnMemoryTool;
295 if (UNLIKELY(IsRunningOnMemoryTool())) {
313 if (UNLIKELY(IsRunningOnMemoryTool())) {
343 DCHECK(!IsRunningOnMemoryTool() || ptr_ == nullptr);
Dscoped_arena_allocator.h50 using ArenaAllocatorMemoryTool::IsRunningOnMemoryTool;
96 if (UNLIKELY(IsRunningOnMemoryTool())) { in Alloc()
/art/compiler/utils/
Dassembler.cc48 if (allocator_->IsRunningOnMemoryTool()) { in ~AssemblerBuffer()
/art/runtime/gc/space/
Drosalloc_space.cc63 bool running_on_memory_tool = Runtime::Current()->IsRunningOnMemoryTool(); in CreateFromMemMap()
182 if (Runtime::Current()->IsRunningOnMemoryTool()) { in CreateInstance()
369 Runtime::Current()->IsRunningOnMemoryTool()); in Clear()
Ddlmalloc_space.cc69 if (Runtime::Current()->IsRunningOnMemoryTool()) { in CreateFromMemMap()
159 if (Runtime::Current()->IsRunningOnMemoryTool()) { in CreateInstance()
Dlarge_object_space.cc130 if (Runtime::Current()->IsRunningOnMemoryTool()) { in Create()
/art/runtime/
Druntime.h599 bool IsRunningOnMemoryTool() const { in IsRunningOnMemoryTool() function
/art/runtime/gc/
Dheap.cc263 is_running_on_memory_tool_(Runtime::Current()->IsRunningOnMemoryTool()), in Heap()