HomeSort by relevance Sort by last modified time
    Searched refs:MEMORY_TOOL_MAKE_NOACCESS (Results 1 - 7 of 7) sorted by null

  /art/runtime/base/
memory_tool.h 32 #define MEMORY_TOOL_MAKE_NOACCESS(p, s) __asan_poison_memory_region(p, s)
37 #define MEMORY_TOOL_MAKE_NOACCESS(p, s) do { (void)(p); (void)(s); } while (0)
54 #define MEMORY_TOOL_MAKE_NOACCESS(p, s) VALGRIND_MAKE_MEM_NOACCESS(p, s)
scoped_arena_allocator.cc 102 MEMORY_TOOL_MAKE_NOACCESS(ptr, top_end_ - ptr);
arena_allocator.cc 157 MEMORY_TOOL_MAKE_NOACCESS(ptr, size);
339 MEMORY_TOOL_MAKE_NOACCESS(noaccess_begin, noaccess_end - noaccess_begin);
scoped_arena_containers.h 212 MEMORY_TOOL_MAKE_NOACCESS(ptr, size);
  /art/runtime/gc/space/
memory_tool_malloc_space-inl.h 54 MEMORY_TOOL_MAKE_NOACCESS(obj_with_rdz, kMemoryToolRedZoneBytes);
67 MEMORY_TOOL_MAKE_NOACCESS(reinterpret_cast<uint8_t*>(result) + num_bytes,
large_object_space.cc 60 MEMORY_TOOL_MAKE_NOACCESS(reinterpret_cast<void*>(obj), kMemoryToolRedZoneBytes);
61 MEMORY_TOOL_MAKE_NOACCESS(
  /art/runtime/
mem_map.cc 450 MEMORY_TOOL_MAKE_NOACCESS(actual, real_start - actual);
451 MEMORY_TOOL_MAKE_NOACCESS(real_end, mapping_end - real_end);
603 MEMORY_TOOL_MAKE_NOACCESS(base_begin, begin_ - base_begin);
    [all...]

Completed in 951 milliseconds