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

  /external/compiler-rt/lib/asan/lit_tests/TestCases/
malloc_hook.cc 7 bool __asan_get_ownership(const void *p);
14 if (__asan_get_ownership(ptr)) {
20 if (__asan_get_ownership(ptr) && ptr == global_ptr)
  /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 117 bool __asan_get_ownership(const void *p)
asan_rtl.cc 303 case 23: __asan_get_ownership(0); break;
asan_allocator2.cc 795 bool __asan_get_ownership(const void *p) { function
  /external/compiler-rt/lib/asan/tests/
asan_noinst_test.cc 368 EXPECT_EQ(true, __asan_get_ownership(array));
370 EXPECT_EQ(true, __asan_get_ownership(int_ptr));
376 EXPECT_FALSE(__asan_get_ownership(wild_addr));
378 EXPECT_FALSE(__asan_get_ownership(array + kArraySize / 2));
383 EXPECT_FALSE(__asan_get_ownership(NULL));
389 EXPECT_FALSE(__asan_get_ownership(array));
397 EXPECT_TRUE(__asan_get_ownership(zero_alloc));
752 EXPECT_FALSE(__asan_get_ownership(&pointers));
753 EXPECT_FALSE(__asan_get_ownership((void*)0x1234));
755 EXPECT_TRUE(__asan_get_ownership(pointers[idx]))
    [all...]

Completed in 76 milliseconds