• Home
  • Raw
  • Download

Lines Matching refs:COMMON_FLAG

14 #ifndef COMMON_FLAG
15 #error "Define COMMON_FLAG prior to including this file!"
18 // COMMON_FLAG(Type, Name, DefaultValue, Description)
23 COMMON_FLAG(
27 COMMON_FLAG(
31 COMMON_FLAG(
36 COMMON_FLAG(const char *, strip_path_prefix, "",
38 COMMON_FLAG(bool, fast_unwind_on_check, false,
41 COMMON_FLAG(bool, fast_unwind_on_fatal, false,
44 COMMON_FLAG(bool, fast_unwind_on_malloc, true,
47 COMMON_FLAG(bool, handle_ioctl, false, "Intercept and handle ioctl requests.")
48 COMMON_FLAG(int, malloc_context_size, 1,
50 COMMON_FLAG(
54 COMMON_FLAG(
58 COMMON_FLAG(
62 COMMON_FLAG(
65 COMMON_FLAG(bool, detect_leaks, true, "Enable memory leak detection.")
66 COMMON_FLAG(
71 COMMON_FLAG(bool, allocator_may_return_null, false,
74 COMMON_FLAG(bool, print_summary, true,
77 COMMON_FLAG(bool, check_printf, true, "Check printf arguments.")
78 COMMON_FLAG(bool, handle_segv, SANITIZER_NEEDS_SEGV,
80 COMMON_FLAG(bool, handle_abort, false,
82 COMMON_FLAG(bool, handle_sigill, false,
84 COMMON_FLAG(bool, handle_sigfpe, true,
86 COMMON_FLAG(bool, allow_user_segv_handler, false,
89 COMMON_FLAG(bool, use_sigaltstack, true,
91 COMMON_FLAG(bool, detect_deadlocks, false,
93 COMMON_FLAG(
97 COMMON_FLAG(const char *, color, "auto",
99 COMMON_FLAG(
102 COMMON_FLAG(bool, intercept_tls_get_addr, false, "Intercept __tls_get_addr.")
103 COMMON_FLAG(bool, help, false, "Print the flag descriptions.")
104 COMMON_FLAG(uptr, mmap_limit_mb, 0,
107 COMMON_FLAG(uptr, hard_rss_limit_mb, 0,
112 COMMON_FLAG(uptr, soft_rss_limit_mb, 0,
121 COMMON_FLAG(bool, can_use_proc_maps_statm, true,
124 COMMON_FLAG(
128 COMMON_FLAG(bool, coverage_pcs, true,
131 COMMON_FLAG(bool, coverage_order_pcs, false,
134 COMMON_FLAG(bool, coverage_bitset, false,
137 COMMON_FLAG(bool, coverage_counters, false,
140 COMMON_FLAG(bool, coverage_direct, SANITIZER_ANDROID,
144 COMMON_FLAG(const char *, coverage_dir, ".",
147 COMMON_FLAG(bool, coverage_pc_buffer, true,
150 COMMON_FLAG(bool, full_address_space, false,
153 COMMON_FLAG(bool, print_suppressions, true,
155 COMMON_FLAG(
160 COMMON_FLAG(bool, use_madv_dontdump, true,
163 COMMON_FLAG(bool, symbolize_inline_frames, true,
165 COMMON_FLAG(bool, symbolize_vs_style, false,
168 COMMON_FLAG(int, dedup_token_length, 0,
173 COMMON_FLAG(const char *, stack_trace_format, "DEFAULT",
177 COMMON_FLAG(bool, no_huge_pages_for_shadow, true,
179 COMMON_FLAG(bool, strict_string_checks, false,
181 COMMON_FLAG(bool, intercept_strstr, true,
184 COMMON_FLAG(bool, intercept_strspn, true,
187 COMMON_FLAG(bool, intercept_strpbrk, true,
190 COMMON_FLAG(bool, intercept_strlen, true,
193 COMMON_FLAG(bool, intercept_strchr, true,
196 COMMON_FLAG(bool, intercept_memcmp, true,
199 COMMON_FLAG(bool, strict_memcmp, true,
202 COMMON_FLAG(bool, intercept_intrin, true,
205 COMMON_FLAG(bool, intercept_stat, true,
208 COMMON_FLAG(bool, intercept_send, true,
211 COMMON_FLAG(bool, decorate_proc_maps, false, "If set, decorate sanitizer "
214 COMMON_FLAG(int, exitcode, 1, "Override the program exit status if the tool "
216 COMMON_FLAG(
220 COMMON_FLAG(bool, suppress_equal_pcs, true,
223 COMMON_FLAG(bool, print_cmdline, false, "Print command line on crash "
225 COMMON_FLAG(bool, html_cov_report, false, "Generate html coverage report.")
226 COMMON_FLAG(const char *, sancov_path, "sancov", "Sancov tool location.")