Home
last modified time | relevance | path

Searched refs:may_return_null (Results 1 – 13 of 13) sorted by relevance

/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_allocator.h1038 void InitLinkerInitialized(bool may_return_null) { in InitLinkerInitialized() argument
1040 atomic_store(&may_return_null_, may_return_null, memory_order_relaxed); in InitLinkerInitialized()
1043 void Init(bool may_return_null) { in Init() argument
1045 InitLinkerInitialized(may_return_null); in Init()
1097 void SetMayReturnNull(bool may_return_null) { in SetMayReturnNull() argument
1098 atomic_store(&may_return_null_, may_return_null, memory_order_release); in SetMayReturnNull()
1293 void InitCommon(bool may_return_null) { in InitCommon() argument
1295 atomic_store(&may_return_null_, may_return_null, memory_order_relaxed); in InitCommon()
1298 void InitLinkerInitialized(bool may_return_null) { in InitLinkerInitialized() argument
1299 secondary_.InitLinkerInitialized(may_return_null); in InitLinkerInitialized()
[all …]
/external/compiler-rt/lib/asan/
Dasan_activation.cc86 allocator_options.may_return_null, coverage, coverage_dir); in Print()
113 disabled.may_return_null = true; in AsanDeactivate()
Dasan_allocator.cc212 may_return_null = cf->allocator_may_return_null; in SetFrom()
220 cf->allocator_may_return_null = may_return_null; in CopyTo()
265 allocator.Init(options.may_return_null); in Initialize()
270 allocator.SetMayReturnNull(options.may_return_null); in ReInitialize()
278 options->may_return_null = allocator.MayReturnNull(); in GetOptions()
Dasan_allocator.h38 u8 may_return_null; member
/external/llvm-project/compiler-rt/lib/asan/
Dasan_activation.cpp89 allocator_options.may_return_null, coverage, coverage_dir, in Print()
118 disabled.may_return_null = true; in AsanDeactivate()
Dasan_allocator.cpp283 may_return_null = cf->allocator_may_return_null; in SetFrom()
293 cf->allocator_may_return_null = may_return_null; in CopyTo()
340 SetAllocatorMayReturnNull(options.may_return_null); in InitLinkerInitialized()
384 SetAllocatorMayReturnNull(options.may_return_null); in ReInitialize()
405 options->may_return_null = AllocatorMayReturnNull(); in GetOptions()
Dasan_allocator.h39 u8 may_return_null; member
/external/scudo/standalone/
Dflags.inc43 "attempted past that limit (depending on may_return_null). Negative "
46 SCUDO_FLAG(bool, may_return_null, true,
Dcombined.h151 if (getFlags()->may_return_null) in initLinkerInitialized()
/external/llvm-project/compiler-rt/lib/scudo/standalone/
Dflags.inc43 "attempted past that limit (depending on may_return_null). Negative "
46 SCUDO_FLAG(bool, may_return_null, true,
Dcombined.h148 if (getFlags()->may_return_null) in initLinkerInitialized()
/external/llvm-project/compiler-rt/lib/sanitizer_common/
Dsanitizer_allocator.h36 void SetAllocatorMayReturnNull(bool may_return_null);
Dsanitizer_allocator.cpp264 void SetAllocatorMayReturnNull(bool may_return_null) { in SetAllocatorMayReturnNull() argument
265 atomic_store(&allocator_may_return_null, may_return_null, in SetAllocatorMayReturnNull()