Searched refs:MSAN_FLAG (Results 1 – 3 of 3) sorted by relevance
/external/compiler-rt/lib/msan/ |
D | msan_flags.inc | 13 #ifndef MSAN_FLAG 14 # error "Define MSAN_FLAG prior to including this file!" 17 // MSAN_FLAG(Type, Name, DefaultValue, Description) 20 MSAN_FLAG(int, exit_code, -1, 22 MSAN_FLAG(int, origin_history_size, Origin::kMaxDepth, "") 23 MSAN_FLAG(int, origin_history_per_stack_limit, 20000, "") 24 MSAN_FLAG(bool, poison_heap_with_zeroes, false, "") 25 MSAN_FLAG(bool, poison_stack_with_zeroes, false, "") 26 MSAN_FLAG(bool, poison_in_malloc, true, "") 27 MSAN_FLAG(bool, poison_in_free, true, "") [all …]
|
D | msan_flags.h | 19 #define MSAN_FLAG(Type, Name, DefaultValue, Description) Type Name; macro 21 #undef MSAN_FLAG
|
D | msan.cc | 101 #define MSAN_FLAG(Type, Name, DefaultValue, Description) Name = DefaultValue; in SetDefaults() macro 103 #undef MSAN_FLAG in SetDefaults() 124 #define MSAN_FLAG(Type, Name, DefaultValue, Description) \ in RegisterMsanFlags() macro 127 #undef MSAN_FLAG in RegisterMsanFlags()
|