Home
last modified time | relevance | path

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

/art/runtime/base/
Darena_allocator.h155 bool IsRunningOnMemoryTool() { return is_running_on_valgrind_; } in IsRunningOnMemoryTool() function
165 bool IsRunningOnMemoryTool() { return kAvailable; } in IsRunningOnMemoryTool() function
173 using ArenaAllocatorMemoryToolCheck::IsRunningOnMemoryTool;
176 if (UNLIKELY(IsRunningOnMemoryTool())) { in MakeDefined()
181 if (UNLIKELY(IsRunningOnMemoryTool())) { in MakeUndefined()
186 if (UNLIKELY(IsRunningOnMemoryTool())) { in MakeInaccessible()
282 using ArenaAllocatorMemoryTool::IsRunningOnMemoryTool;
292 if (UNLIKELY(IsRunningOnMemoryTool())) {
310 if (UNLIKELY(IsRunningOnMemoryTool())) {
340 DCHECK(!IsRunningOnMemoryTool() || ptr_ == nullptr);
Dscoped_arena_allocator.h49 using ArenaAllocatorMemoryTool::IsRunningOnMemoryTool;
90 if (UNLIKELY(IsRunningOnMemoryTool())) { in Alloc()
/art/compiler/utils/
Dassembler.cc48 if (arena_->IsRunningOnMemoryTool()) { in ~AssemblerBuffer()
/art/runtime/gc/space/
Drosalloc_space.cc62 bool running_on_memory_tool = Runtime::Current()->IsRunningOnMemoryTool(); in CreateFromMemMap()
181 if (Runtime::Current()->IsRunningOnMemoryTool()) { in CreateInstance()
368 Runtime::Current()->IsRunningOnMemoryTool()); in Clear()
Ddlmalloc_space.cc68 if (Runtime::Current()->IsRunningOnMemoryTool()) { in CreateFromMemMap()
158 if (Runtime::Current()->IsRunningOnMemoryTool()) { in CreateInstance()
Dlarge_object_space.cc128 if (Runtime::Current()->IsRunningOnMemoryTool()) { in Create()
/art/runtime/
Druntime.h522 bool IsRunningOnMemoryTool() const { in IsRunningOnMemoryTool() function
/art/runtime/gc/
Dheap.cc261 is_running_on_memory_tool_(Runtime::Current()->IsRunningOnMemoryTool()), in Heap()