Searched refs:may_return_null (Results 1 – 13 of 13) sorted by relevance
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_allocator.h | 1038 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/ |
D | asan_activation.cc | 86 allocator_options.may_return_null, coverage, coverage_dir); in Print() 113 disabled.may_return_null = true; in AsanDeactivate()
|
D | asan_allocator.cc | 212 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()
|
D | asan_allocator.h | 38 u8 may_return_null; member
|
/external/llvm-project/compiler-rt/lib/asan/ |
D | asan_activation.cpp | 89 allocator_options.may_return_null, coverage, coverage_dir, in Print() 118 disabled.may_return_null = true; in AsanDeactivate()
|
D | asan_allocator.cpp | 283 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()
|
D | asan_allocator.h | 39 u8 may_return_null; member
|
/external/scudo/standalone/ |
D | flags.inc | 43 "attempted past that limit (depending on may_return_null). Negative " 46 SCUDO_FLAG(bool, may_return_null, true,
|
D | combined.h | 151 if (getFlags()->may_return_null) in initLinkerInitialized()
|
/external/llvm-project/compiler-rt/lib/scudo/standalone/ |
D | flags.inc | 43 "attempted past that limit (depending on may_return_null). Negative " 46 SCUDO_FLAG(bool, may_return_null, true,
|
D | combined.h | 148 if (getFlags()->may_return_null) in initLinkerInitialized()
|
/external/llvm-project/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_allocator.h | 36 void SetAllocatorMayReturnNull(bool may_return_null);
|
D | sanitizer_allocator.cpp | 264 void SetAllocatorMayReturnNull(bool may_return_null) { in SetAllocatorMayReturnNull() argument 265 atomic_store(&allocator_may_return_null, may_return_null, in SetAllocatorMayReturnNull()
|