OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:common_flags
(Results
1 - 25
of
61
) sorted by relevancy
1
2
3
/src/sys/external/bsd/compiler_rt/dist/lib/lsan/
lsan.cc
43
cf.CopyFrom(*
common_flags
());
64
SetVerbosity(
common_flags
()->verbosity);
68
if (
common_flags
()->help) parser.PrintFlagDescriptions();
70
__sanitizer_set_report_path(
common_flags
()->log_path);
76
common_flags
()->fast_unwind_on_fatal);
105
if (
common_flags
()->detect_leaks &&
common_flags
()->leak_check_at_exit)
108
InitializeCoverage(
common_flags
()->coverage,
common_flags
()->coverage_dir);
lsan.h
25
GET_STACK_TRACE(kStackTraceMax,
common_flags
()->fast_unwind_on_fatal)
28
GET_STACK_TRACE(__sanitizer::
common_flags
()->malloc_context_size, \
29
common_flags
()->fast_unwind_on_malloc)
/src/sys/external/bsd/compiler_rt/dist/lib/ubsan/
ubsan_init.cc
41
__sanitizer_set_report_path(
common_flags
()->log_path);
43
InitializeCoverage(
common_flags
()->coverage,
common_flags
()->coverage_dir);
ubsan_diag_standalone.cc
25
bool request_fast_unwind =
common_flags
()->fast_unwind_on_fatal;
ubsan_signals_standalone.cc
47
common_flags
()->fast_unwind_on_fatal);
ubsan_flags.cc
57
cf.CopyFrom(*
common_flags
());
77
if (
common_flags
()->help) parser.PrintFlagDescriptions();
ubsan_diag.cc
47
common_flags
()->fast_unwind_on_fatal);
74
if (!
common_flags
()->print_summary)
148
SLoc.getColumn(),
common_flags
()->symbolize_vs_style,
149
common_flags
()->strip_path_prefix);
159
common_flags
()->symbolize_vs_style,
160
common_flags
()->strip_path_prefix);
163
Info.module_arch,
common_flags
()->strip_path_prefix);
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_common_libcdep.cc
35
const uptr hard_rss_limit_mb =
common_flags
()->hard_rss_limit_mb;
36
const uptr soft_rss_limit_mb =
common_flags
()->soft_rss_limit_mb;
37
const bool heap_profile =
common_flags
()->heap_profile;
120
if (!
common_flags
()->hard_rss_limit_mb &&
121
!
common_flags
()->soft_rss_limit_mb &&
122
!
common_flags
()->heap_profile) return;
sanitizer_stacktrace_libcdep.cc
29
int dedup_frames =
common_flags
()->dedup_token_length;
39
RenderFrame(&frame_desc,
common_flags
()->stack_trace_format, frame_num++,
40
cur->info,
common_flags
()->symbolize_vs_style,
41
common_flags
()->strip_path_prefix);
124
common_flags
()->symbolize_vs_style,
125
common_flags
()->strip_path_prefix);
146
RenderData(&data_desc, fmt, &DI,
common_flags
()->strip_path_prefix);
sanitizer_symbolizer_report.cc
34
if (!
common_flags
()->print_summary) return;
37
RenderFrame(&buff, "%L %F", 0, info,
common_flags
()->symbolize_vs_style,
38
common_flags
()->strip_path_prefix);
68
const char *flag =
common_flags
()->color;
76
if (!
common_flags
()->print_summary)
106
bool fast =
common_flags
()->fast_unwind_on_fatal;
148
if (!
common_flags
()->dump_instruction_bytes || (pc < GetPageSizeCached()))
164
if (!
common_flags
()->dump_registers) return;
266
internal__exit(
common_flags
()->exitcode);
sanitizer_termination.cc
58
if (
common_flags
()->abort_on_error)
60
internal__exit(
common_flags
()->exitcode);
sanitizer_coverage_fuchsia.cc
72
if (end > start && *start == 0 &&
common_flags
()->coverage) {
127
DCHECK(
common_flags
()->coverage);
189
CHECK_EQ(enabled,
common_flags
()->coverage);
190
CHECK_EQ(dir,
common_flags
()->coverage_dir);
sanitizer_flags.h
38
inline const CommonFlags *
common_flags
() {
function in namespace:__sanitizer
sanitizer_tls_get_addr.cc
74
if (!
common_flags
()->intercept_tls_get_addr) return;
92
if (!
common_flags
()->intercept_tls_get_addr) return 0;
131
if (!
common_flags
()->intercept_tls_get_addr) return;
sanitizer_common.cc
89
if (!
common_flags
()->print_summary)
182
if (!
common_flags
()->mmap_limit_mb) return;
187
RAW_CHECK((total_mmaped >> 20) <
common_flags
()->mmap_limit_mb);
191
if (!
common_flags
()->mmap_limit_mb) return;
/src/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_stack.h
81
common_flags
()->fast_unwind_on_fatal)
86
common_flags
()->fast_unwind_on_fatal)
89
GET_STACK_TRACE(kStackTraceMax,
common_flags
()->fast_unwind_on_fatal)
92
GET_STACK_TRACE(kStackTraceMax,
common_flags
()->fast_unwind_on_check)
98
GET_STACK_TRACE(GetMallocContextSize(),
common_flags
()->fast_unwind_on_malloc)
asan_flags.cc
60
cf.CopyFrom(*
common_flags
());
137
if (
common_flags
()->help) {
143
if (!CAN_SANITIZE_LEAKS &&
common_flags
()->detect_leaks) {
156
CHECK_LE((uptr)
common_flags
()->malloc_context_size, kStackTraceMax);
197
if (!f->replace_str &&
common_flags
()->intercept_strlen) {
201
if (!f->replace_str &&
common_flags
()->intercept_strchr) {
205
if (!f->replace_str &&
common_flags
()->intercept_strndup) {
asan_rtl.cc
49
if (
common_flags
()->print_module_map >= 1) PrintModuleMap();
374
(uptr)
common_flags
()->malloc_context_size);
419
SetMallocContextSize(
common_flags
()->malloc_context_size);
433
__sanitizer_set_report_path(
common_flags
()->log_path);
464
allocator_options.SetFrom(flags(),
common_flags
());
475
InitializeCoverage(
common_flags
()->coverage,
common_flags
()->coverage_dir);
493
if (
common_flags
()->detect_leaks &&
common_flags
()->leak_check_at_exit) {
asan_activation.cc
105
asan_deactivated_flags.coverage =
common_flags
()->coverage;
106
asan_deactivated_flags.coverage_dir =
common_flags
()->coverage_dir;
asan_shadow_setup.cc
41
if (
common_flags
()->no_huge_pages_for_shadow) NoHugePagesInRegion(beg, size);
42
if (
common_flags
()->use_madv_dontdump) DontDumpShadowMemory(beg, size);
/src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_rtl_proc.cc
29
if (
common_flags
()->detect_deadlocks)
41
if (
common_flags
()->detect_deadlocks)
tsan_flags.cc
58
cf.CopyFrom(*
common_flags
());
111
if (
common_flags
()->help) parser.PrintFlagDescriptions();
tsan_rtl_mutex.cc
94
if (
common_flags
()->detect_deadlocks) {
145
if (!(flagz & MutexFlagTryLock) &&
common_flags
()->detect_deadlocks) {
194
if (first &&
common_flags
()->detect_deadlocks) {
208
if (first && pre_lock &&
common_flags
()->detect_deadlocks) {
240
if (
common_flags
()->detect_deadlocks && s->recursion == 0 &&
250
if (
common_flags
()->detect_deadlocks && !report_bad_unlock) {
259
if (!(flagz & MutexFlagTryLock) &&
common_flags
()->detect_deadlocks) {
289
if (
common_flags
()->detect_deadlocks) {
303
if (pre_lock &&
common_flags
()->detect_deadlocks) {
325
if (
common_flags
()->detect_deadlocks && s->recursion == 0)
[
all
...]
/src/sys/external/bsd/compiler_rt/dist/lib/xray/
xray_flags.cc
80
if (
common_flags
()->help) {
/src/sys/external/bsd/compiler_rt/dist/lib/tsan/dd/
dd_rtl.cc
78
cf.CopyFrom(*
common_flags
());
88
SetVerbosity(
common_flags
()->verbosity);
Completed in 48 milliseconds
1
2
3
Indexes created Mon Oct 13 04:09:54 GMT 2025