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

  /external/compiler-rt/test/sanitizer_common/TestCases/
malloc_hook.cc 18 if (__sanitizer_get_ownership(ptr) && sz == 4) {
24 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));
414 EXPECT_FALSE(__sanitizer_get_ownership(&pointers));
415 EXPECT_FALSE(__sanitizer_get_ownership((void*)0x1234));
417 EXPECT_TRUE(__sanitizer_get_ownership(pointers[idx]))
    [all...]
  /external/compiler-rt/lib/tsan/tests/unit/
tsan_mman_test.cc 122 EXPECT_TRUE(__sanitizer_get_ownership(p));
  /external/compiler-rt/lib/lsan/
lsan_allocator.cc 246 int __sanitizer_get_ownership(const void *p) { return Metadata(p) != nullptr; } function
  /external/compiler-rt/lib/msan/
msan_allocator.cc 242 int __sanitizer_get_ownership(const void *p) { return AllocationSize(p) != 0; } function
  /external/compiler-rt/lib/asan/
asan_win_dll_thunk.cc 323 INTERFACE_FUNCTION(__sanitizer_get_ownership)
asan_allocator.cc 894 int __sanitizer_get_ownership(const void *p) { function
  /external/compiler-rt/lib/tsan/rtl/
tsan_mman.cc 289 int __sanitizer_get_ownership(const void *p) { function
  /external/compiler-rt/lib/scudo/
scudo_allocator.cpp 629 int __sanitizer_get_ownership(const void *p) { function in namespace:__scudo
  /external/compiler-rt/lib/msan/tests/
msan_test.cc     [all...]

Completed in 1208 milliseconds