/external/llvm-project/compiler-rt/lib/scudo/standalone/ |
D | flags.inc | 9 #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(int, rss_limit_mb, -1, [all …]
|
D | flags.cpp | 23 #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()
|
D | flags.h | 17 #define SCUDO_FLAG(Type, Name, DefaultValue, Description) Type Name; macro 19 #undef SCUDO_FLAG
|
/external/scudo/standalone/ |
D | flags.inc | 9 #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(int, rss_limit_mb, -1, [all …]
|
D | flags.cpp | 23 #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()
|
D | flags.h | 17 #define SCUDO_FLAG(Type, Name, DefaultValue, Description) Type Name; macro 19 #undef SCUDO_FLAG
|
/external/llvm-project/compiler-rt/lib/scudo/ |
D | scudo_flags.inc | 13 #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,
|
D | scudo_flags.cpp | 25 #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()
|
D | scudo_flags.h | 19 #define SCUDO_FLAG(Type, Name, DefaultValue, Description) Type Name; macro 21 #undef SCUDO_FLAG
|
/external/compiler-rt/lib/scudo/ |
D | scudo_flags.inc | 14 #ifndef SCUDO_FLAG 15 # error "Define SCUDO_FLAG prior to including this file!" 18 SCUDO_FLAG(int, QuarantineSizeMb, 64, 23 SCUDO_FLAG(int, ThreadLocalQuarantineSizeKb, 1024, 28 SCUDO_FLAG(bool, DeallocationTypeMismatch, true, 31 SCUDO_FLAG(bool, DeleteSizeMismatch, true, 34 SCUDO_FLAG(bool, ZeroContents, false,
|
D | scudo_flags.cpp | 25 #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()
|
D | scudo_flags.h | 20 #define SCUDO_FLAG(Type, Name, DefaultValue, Description) Type Name; macro 22 #undef SCUDO_FLAG
|