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

  /external/compiler-rt/test/sanitizer_common/TestCases/
malloc_hook.cc 16 if (__sanitizer_get_ownership(ptr)) {
22 if (__sanitizer_get_ownership(ptr) && ptr == global_ptr)
  /external/compiler-rt/include/sanitizer/
allocator_interface.h 28 int __sanitizer_get_ownership(const volatile void *p);
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_allocator_interface.h 24 SANITIZER_INTERFACE_ATTRIBUTE int __sanitizer_get_ownership(const void *p);
  /external/compiler-rt/lib/asan/tests/
asan_interface_test.cc 35 EXPECT_EQ(true, __sanitizer_get_ownership(array));
37 EXPECT_EQ(true, __sanitizer_get_ownership(int_ptr));
43 EXPECT_FALSE(__sanitizer_get_ownership(wild_addr));
46 EXPECT_FALSE(__sanitizer_get_ownership(array + kArraySize / 2));
52 EXPECT_FALSE(__sanitizer_get_ownership(NULL));
58 EXPECT_FALSE(__sanitizer_get_ownership(array));
67 EXPECT_TRUE(__sanitizer_get_ownership(zero_alloc));
424 EXPECT_FALSE(__sanitizer_get_ownership(&pointers));
425 EXPECT_FALSE(__sanitizer_get_ownership((void*)0x1234));
427 EXPECT_TRUE(__sanitizer_get_ownership(pointers[idx]))
    [all...]
  /external/compiler-rt/lib/msan/
msan_allocator.cc 219 int __sanitizer_get_ownership(const void *p) { return AllocationSize(p) != 0; } function
221 return __sanitizer_get_ownership(p);
  /external/compiler-rt/lib/tsan/rtl/
tsan_mman.cc 225 int __sanitizer_get_ownership(const void *p) { function
229 return __sanitizer_get_ownership(p);
  /external/compiler-rt/lib/tsan/tests/unit/
tsan_mman_test.cc 122 EXPECT_TRUE(__sanitizer_get_ownership(p));
  /external/compiler-rt/lib/asan/
asan_allocator2.cc 771 int __sanitizer_get_ownership(const void *p) { function
776 return __sanitizer_get_ownership(p);
  /external/compiler-rt/lib/msan/tests/
msan_test.cc     [all...]

Completed in 133 milliseconds