/external/compiler-rt/lib/tsan/rtl/ |
tsan_flags.cc | 37 ParseFlag(env, &f->enable_annotations, "enable_annotations", ""); 38 ParseFlag(env, &f->suppress_equal_stacks, "suppress_equal_stacks", ""); 39 ParseFlag(env, &f->suppress_equal_addresses, "suppress_equal_addresses", ""); 40 ParseFlag(env, &f->suppress_java, "suppress_java", ""); 41 ParseFlag(env, &f->report_bugs, "report_bugs", ""); 42 ParseFlag(env, &f->report_thread_leaks, "report_thread_leaks", ""); 43 ParseFlag(env, &f->report_destroy_locked, "report_destroy_locked", ""); 44 ParseFlag(env, &f->report_mutex_bugs, "report_mutex_bugs", ""); 45 ParseFlag(env, &f->report_signal_unsafe, "report_signal_unsafe", ""); 46 ParseFlag(env, &f->report_atomic_races, "report_atomic_races", "") [all...] |
/external/compiler-rt/lib/sanitizer_common/ |
sanitizer_flags.cc | 69 ParseFlag(str, &f->symbolize, "symbolize", 72 ParseFlag(str, &f->external_symbolizer_path, "external_symbolizer_path", 75 ParseFlag(str, &f->allow_addr2line, "allow_addr2line", 79 ParseFlag(str, &f->strip_path_prefix, "strip_path_prefix", 81 ParseFlag(str, &f->fast_unwind_on_fatal, "fast_unwind_on_fatal", 84 ParseFlag(str, &f->fast_unwind_on_malloc, "fast_unwind_on_malloc", 87 ParseFlag(str, &f->handle_ioctl, "handle_ioctl", 89 ParseFlag(str, &f->malloc_context_size, "malloc_context_size", 91 ParseFlag(str, &f->log_path, "log_path", 94 ParseFlag(str, &f->verbosity, "verbosity" [all...] |
sanitizer_flags.h | 21 void ParseFlag(const char *env, bool *flag, 23 void ParseFlag(const char *env, int *flag, 25 void ParseFlag(const char *env, uptr *flag, 27 void ParseFlag(const char *env, const char **flag,
|
/external/compiler-rt/lib/sanitizer_common/tests/ |
sanitizer_flags_test.cc | 27 ParseFlag(env, &flag, kFlagName, "flag description"); 34 ParseFlag(env, &flag, kFlagName, "flag description"); 73 ParseFlag(env, &flag1, "flag1", "flag1 description"); 74 ParseFlag(env, &flag2, "flag2", "flag2 description");
|
/external/compiler-rt/lib/asan/ |
asan_rtl.cc | 99 ParseFlag(str, &f->quarantine_size, "quarantine_size", 103 ParseFlag(str, &f->redzone, "redzone", 106 ParseFlag(str, &f->max_redzone, "max_redzone", 114 ParseFlag(str, &f->debug, "debug", 116 ParseFlag(str, &f->report_globals, "report_globals", 121 ParseFlag(str, &f->check_initialization_order, 125 ParseFlag(str, &f->replace_str, "replace_str", 129 ParseFlag(str, &f->replace_intrin, "replace_intrin", 131 ParseFlag(str, &f->mac_ignore_invalid_free, "mac_ignore_invalid_free", 134 ParseFlag(str, &f->detect_stack_use_after_return [all...] |
/external/compiler-rt/lib/lsan/ |
lsan_common.cc | 60 ParseFlag(options, &f->use_registers, "use_registers", ""); 61 ParseFlag(options, &f->use_globals, "use_globals", ""); 62 ParseFlag(options, &f->use_stacks, "use_stacks", ""); 63 ParseFlag(options, &f->use_tls, "use_tls", ""); 64 ParseFlag(options, &f->use_root_regions, "use_root_regions", ""); 65 ParseFlag(options, &f->use_unaligned, "use_unaligned", ""); 66 ParseFlag(options, &f->use_poisoned, "use_poisoned", ""); 67 ParseFlag(options, &f->report_objects, "report_objects", ""); 68 ParseFlag(options, &f->resolution, "resolution", ""); 70 ParseFlag(options, &f->max_leaks, "max_leaks", "") [all...] |
/external/compiler-rt/lib/msan/ |
msan.cc | 113 ParseFlag(str, &f->poison_heap_with_zeroes, "poison_heap_with_zeroes", ""); 114 ParseFlag(str, &f->poison_stack_with_zeroes, "poison_stack_with_zeroes", ""); 115 ParseFlag(str, &f->poison_in_malloc, "poison_in_malloc", ""); 116 ParseFlag(str, &f->poison_in_free, "poison_in_free", ""); 117 ParseFlag(str, &f->exit_code, "exit_code", ""); 122 ParseFlag(str, &f->origin_history_size, "origin_history_size", ""); 131 ParseFlag(str, &f->origin_history_per_stack_limit, 144 ParseFlag(str, &f->report_umrs, "report_umrs", ""); 145 ParseFlag(str, &f->wrap_signals, "wrap_signals", ""); 146 ParseFlag(str, &f->print_stats, "print_stats", "") [all...] |
/external/compiler-rt/lib/dfsan/ |
dfsan.cc | 246 ParseFlag(env, &f.warn_unimplemented, "warn_unimplemented", ""); 247 ParseFlag(env, &f.warn_nonzero_labels, "warn_nonzero_labels", ""); 248 ParseFlag(env, &f.strict_data_dependencies, "strict_data_dependencies", "");
|
/external/compiler-rt/lib/tsan/dd/ |
dd_rtl.cc | 79 ParseFlag(env, &f->second_deadlock_stack, "second_deadlock_stack", "");
|