Lines Matching refs:FUZZER_FLAG_INT
8 // Flags. FUZZER_FLAG_INT/FUZZER_FLAG_STRING macros should be defined at the
12 FUZZER_FLAG_INT(verbosity, 1, "Verbosity level.")
14 FUZZER_FLAG_INT(runs, -1,
16 FUZZER_FLAG_INT(max_len, 0, "Maximum length of the test input. "
19 FUZZER_FLAG_INT(len_control, 100, "Try generating small inputs first, "
26 FUZZER_FLAG_INT(keep_seed, 0, "If 1, keep seed inputs in the corpus even if "
30 FUZZER_FLAG_INT(cross_over, 1, "If 1, cross over inputs.")
31 FUZZER_FLAG_INT(cross_over_uniform_dist, 0, "Experimental. If 1, use a "
41 FUZZER_FLAG_INT(mutate_depth, 5,
43 FUZZER_FLAG_INT(reduce_depth, 0, "Experimental/internal. "
45 FUZZER_FLAG_INT(shuffle, 1, "Shuffle inputs at startup")
46 FUZZER_FLAG_INT(prefer_small, 1,
48 FUZZER_FLAG_INT(
52 FUZZER_FLAG_INT(error_exitcode, 77, "When libFuzzer itself reports a bug "
54 FUZZER_FLAG_INT(timeout_exitcode, 70, "When libFuzzer reports a timeout "
56 FUZZER_FLAG_INT(max_total_time, 0, "If positive, indicates the maximal total "
58 FUZZER_FLAG_INT(help, 0, "Print help.")
59 FUZZER_FLAG_INT(fork, 0, "Experimental mode where fuzzing happens "
61 FUZZER_FLAG_INT(fork_corpus_groups, 0, "For fork mode, enable the corpus-group "
65 FUZZER_FLAG_INT(ignore_timeouts, 1, "Ignore timeouts in fork mode")
66 FUZZER_FLAG_INT(ignore_ooms, 1, "Ignore OOMs in fork mode")
67 FUZZER_FLAG_INT(ignore_crashes, 0, "Ignore crashes in fork mode")
68 FUZZER_FLAG_INT(merge, 0, "If 1, the 2-nd, 3-rd, etc corpora will be "
71 FUZZER_FLAG_INT(set_cover_merge, 0, "If 1, the 2-nd, 3-rd, etc corpora will be "
84 FUZZER_FLAG_INT(minimize_crash, 0, "If 1, minimizes the provided"
91 FUZZER_FLAG_INT(cleanse_crash, 0, "If 1, tries to cleanse the provided"
95 FUZZER_FLAG_INT(minimize_crash_internal_step, 0, "internal flag")
105 FUZZER_FLAG_INT(use_counters, 1, "Use coverage counters")
106 FUZZER_FLAG_INT(use_memmem, 1,
108 FUZZER_FLAG_INT(use_value_profile, 0,
110 FUZZER_FLAG_INT(use_cmp, 1, "Use CMP traces to guide mutations")
111 FUZZER_FLAG_INT(shrink, 0, "Experimental. Try to shrink corpus inputs.")
112 FUZZER_FLAG_INT(reduce_inputs, 1,
120 FUZZER_FLAG_INT(reload, 1,
123 FUZZER_FLAG_INT(report_slow_units, 10,
125 FUZZER_FLAG_INT(only_ascii, 0,
136 FUZZER_FLAG_INT(print_pcs, 0, "If 1, print out newly covered PCs.")
137 FUZZER_FLAG_INT(print_funcs, 2, "If >=1, print out at most this number of "
139 FUZZER_FLAG_INT(print_final_stats, 0, "If 1, print statistics at exit.")
140 FUZZER_FLAG_INT(print_corpus_stats, 0,
142 FUZZER_FLAG_INT(print_coverage, 0, "If 1, print coverage information as text"
144 FUZZER_FLAG_INT(print_full_coverage, 0, "If 1, print full coverage information "
146 FUZZER_FLAG_INT(dump_coverage, 0, "Deprecated.")
147 FUZZER_FLAG_INT(handle_segv, 1, "If 1, try to intercept SIGSEGV.")
148 FUZZER_FLAG_INT(handle_bus, 1, "If 1, try to intercept SIGBUS.")
149 FUZZER_FLAG_INT(handle_abrt, 1, "If 1, try to intercept SIGABRT.")
150 FUZZER_FLAG_INT(handle_ill, 1, "If 1, try to intercept SIGILL.")
151 FUZZER_FLAG_INT(handle_fpe, 1, "If 1, try to intercept SIGFPE.")
152 FUZZER_FLAG_INT(handle_int, 1, "If 1, try to intercept SIGINT.")
153 FUZZER_FLAG_INT(handle_term, 1, "If 1, try to intercept SIGTERM.")
154 FUZZER_FLAG_INT(handle_xfsz, 1, "If 1, try to intercept SIGXFSZ.")
155 FUZZER_FLAG_INT(handle_usr1, 1, "If 1, try to intercept SIGUSR1.")
156 FUZZER_FLAG_INT(handle_usr2, 1, "If 1, try to intercept SIGUSR2.")
157 FUZZER_FLAG_INT(handle_winexcept, 1, "If 1, try to intercept uncaught Windows "
159 FUZZER_FLAG_INT(close_fd_mask, 0, "If 1, close stdout at startup; "
162 FUZZER_FLAG_INT(detect_leaks, 1, "If 1, and if LeakSanitizer is enabled "
164 FUZZER_FLAG_INT(purge_allocator_interval, 1, "Purge allocator caches and "
168 FUZZER_FLAG_INT(trace_malloc, 0, "If >= 1 will print all mallocs/frees. "
170 FUZZER_FLAG_INT(rss_limit_mb, 2048, "If non-zero, the fuzzer will exit upon "
172 FUZZER_FLAG_INT(malloc_limit_mb, 0, "If non-zero, the fuzzer will exit "
181 FUZZER_FLAG_INT(ignore_remaining_args, 0, "If 1, ignore all arguments passed "
189 FUZZER_FLAG_INT(entropic, 1, "Enables entropic power schedule.")
190 FUZZER_FLAG_INT(entropic_feature_frequency_threshold, 0xFF, "Experimental. If "
193 FUZZER_FLAG_INT(entropic_number_of_rarest_features, 100, "Experimental. If "
197 FUZZER_FLAG_INT(entropic_scale_per_exec_time, 0, "Experimental. If 1, "
203 FUZZER_FLAG_INT(analyze_dict, 0, "Experimental")
209 FUZZER_FLAG_INT(create_missing_dirs, 0, "Automatically attempt to create "