Home
last modified time | relevance | path

Searched refs:SCUDO_FLAG (Results 1 – 6 of 6) sorted by relevance

/llvm-project-15.0.7/compiler-rt/lib/scudo/standalone/
H A Dflags.inc9 #ifndef SCUDO_FLAG
10 #error "Define SCUDO_FLAG prior to including this file!"
13 SCUDO_FLAG(int, quarantine_size_kb, 0,
18 SCUDO_FLAG(int, thread_local_quarantine_size_kb, 0,
23 SCUDO_FLAG(int, quarantine_max_chunk_size, 0,
27 SCUDO_FLAG(bool, dealloc_type_mismatch, false,
31 SCUDO_FLAG(bool, delete_size_mismatch, true,
35 SCUDO_FLAG(bool, zero_contents, false, "Zero chunk contents on allocation.")
37 SCUDO_FLAG(bool, pattern_fill_contents, false,
40 SCUDO_FLAG(bool, may_return_null, true,
[all …]
H A Dflags.cpp23 #define SCUDO_FLAG(Type, Name, DefaultValue, Description) Name = DefaultValue; in setDefaults() macro
25 #undef SCUDO_FLAG in setDefaults()
36 #define SCUDO_FLAG(Type, Name, DefaultValue, Description) \ in registerFlags() macro
40 #undef SCUDO_FLAG in registerFlags()
H A Dflags.h17 #define SCUDO_FLAG(Type, Name, DefaultValue, Description) Type Name; macro
19 #undef SCUDO_FLAG
/llvm-project-15.0.7/compiler-rt/lib/scudo/
H A Dscudo_flags.inc13 #ifndef SCUDO_FLAG
14 # error "Define SCUDO_FLAG prior to including this file!"
17 SCUDO_FLAG(int, QuarantineSizeMb, -1,
21 SCUDO_FLAG(int, QuarantineSizeKb, -1,
28 SCUDO_FLAG(int, ThreadLocalQuarantineSizeKb, -1,
35 SCUDO_FLAG(int, QuarantineChunksUpToSize, -1,
41 SCUDO_FLAG(bool, DeallocationTypeMismatch, !SANITIZER_ANDROID,
44 SCUDO_FLAG(bool, DeleteSizeMismatch, true,
47 SCUDO_FLAG(bool, ZeroContents, false,
H A Dscudo_flags.cpp25 #define SCUDO_FLAG(Type, Name, DefaultValue, Description) Name = DefaultValue; in setDefaults() macro
27 #undef SCUDO_FLAG in setDefaults()
31 #define SCUDO_FLAG(Type, Name, DefaultValue, Description) \ in RegisterScudoFlags() macro
34 #undef SCUDO_FLAG in RegisterScudoFlags()
H A Dscudo_flags.h19 #define SCUDO_FLAG(Type, Name, DefaultValue, Description) Type Name; macro
21 #undef SCUDO_FLAG