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

  /external/compiler-rt/include/sanitizer/
asan_interface.h 100 bool __asan_get_ownership(const void *p);
  /external/compiler-rt/lib/asan/
asan_interface_internal.h 112 bool __asan_get_ownership(const void *p)
asan_rtl.cc 287 case 23: __asan_get_ownership(0); break;
asan_allocator.cc 799 bool __asan_get_ownership(const void *p) {
asan_allocator2.cc 680 bool __asan_get_ownership(const void *p) { function
  /external/compiler-rt/lib/asan/tests/
asan_noinst_test.cc 372 EXPECT_EQ(true, __asan_get_ownership(array));
374 EXPECT_EQ(true, __asan_get_ownership(int_ptr));
380 EXPECT_FALSE(__asan_get_ownership(wild_addr));
382 EXPECT_FALSE(__asan_get_ownership(array + kArraySize / 2));
387 EXPECT_FALSE(__asan_get_ownership(NULL));
393 EXPECT_FALSE(__asan_get_ownership(array));
401 EXPECT_TRUE(__asan_get_ownership(zero_alloc));
843 EXPECT_FALSE(__asan_get_ownership(&pointers));
844 EXPECT_FALSE(__asan_get_ownership((void*)0x1234));
846 EXPECT_TRUE(__asan_get_ownership(pointers[idx]))
    [all...]

Completed in 986 milliseconds