Searched refs:verbose (Results 26 - 50 of 272) sorted by relevance

1234567891011

/linux-master/tools/hv/
H A Dlsvmbus7 help_msg = "print verbose messages. Try -vv, -vvv for more verbose messages"
10 "-v", "--verbose", dest="verbose", help=help_msg, action="count")
14 verbose = 0
15 if options.verbose is not None:
16 verbose = options.verbose
98 if verbose == 0:
100 elif verbose
[all...]
/linux-master/tools/testing/selftests/cgroup/
H A Dwait_inotify.c21 static int verbose; variable
38 verbose++;
76 if (verbose) {
/linux-master/tools/perf/
H A Dbuiltin-evlist.c68 struct perf_attr_details details = { .verbose = false, };
72 OPT_BOOLEAN('v', "verbose", &details.verbose,
89 if (details.event_group && (details.verbose || details.freq)) {
/linux-master/tools/perf/util/
H A Ddebug.c35 int verbose; variable
148 veprintf(1, verbose, fmt, args);
150 eprintf(1, verbose, "\n");
228 { .name = "verbose", .value_ptr = &verbose },
245 /* Allow only verbose value in range (0, 10), otherwise set 0. */
246 verbose = (verbose < 0) || (verbose > 10) ? 0 : verbose;
[all...]
/linux-master/tools/power/cpupower/bench/
H A Dbenchmark.c40 if (config->verbose)
62 if (config->verbose)
111 if (config->verbose)
119 if (config->verbose)
131 if (config->verbose)
157 if (config->verbose)
174 if (config->verbose)
/linux-master/drivers/media/dvb-frontends/
H A Dstv090x_priv.h23 if ((verbose > FE_ERROR) && (verbose > __y)) \
25 else if ((verbose > FE_NOTICE) && (verbose > __y)) \
27 else if ((verbose > FE_INFO) && (verbose > __y)) \
29 else if ((verbose > FE_DEBUG) && (verbose > __y)) \
32 if (verbose > __y) \
243 u32 *verbose; /* Cache member in struct:stv090x_state
[all...]
H A Dstb6100.c19 static unsigned int verbose; variable
20 module_param(verbose, int, 0644);
133 dprintk(verbose, FE_ERROR, 1, "Read (0x%x) err, rc=[%d]",
138 if (unlikely(verbose > FE_DEBUG)) {
141 dprintk(verbose, FE_DEBUG, 1, " Read from 0x%02x", state->config->tuner_address);
143 dprintk(verbose, FE_DEBUG, 1, " %s: 0x%02x", stb6100_regnames[i], regs[i]);
162 dprintk(verbose, FE_ERROR, 1, "Invalid register offset 0x%x", reg);
165 if (unlikely(verbose > FE_DEBUG)) {
166 dprintk(verbose, FE_DEBUG, 1, " Read from 0x%02x", state->config->tuner_address);
167 dprintk(verbose, FE_DEBU
[all...]
/linux-master/tools/testing/selftests/tc-testing/plugin-lib/
H A DnsPlugin.py57 if self.args.verbose:
66 if self.args.verbose:
75 if self.args.verbose:
81 if self.args.verbose > 3:
91 if self.args.verbose:
100 if self.args.verbose:
114 if self.args.verbose:
124 if self.args.verbose:
227 if self.args.verbose > 3:
235 if self.args.verbose >
[all...]
H A DscapyPlugin.py27 if self.args.verbose:
/linux-master/kernel/bpf/
H A Dlog.c14 #define verbose(env, fmt, args...) bpf_verifier_log_write(env, fmt, ##args) macro
419 verbose(env, "%s", s); /* source code line */
425 verbose(env, " @ %s:%u\n", fname, BPF_LINE_INFO_LINE_NUM(linfo->line_col));
437 * Note that reg_type_str() can not appear more than once in a single verbose()
546 verbose(env, "_");
548 verbose(env, "r");
550 verbose(env, "w");
552 verbose(env, "D");
572 verbose(env, "%llu", num);
574 verbose(en
[all...]
H A Dverifier.c352 __printf(2, 3) static void verbose(void *private_data, const char *fmt, ...) function
372 verbose(env, "%s the register %s has", ctx, reg_name);
374 verbose(env, " smin=%lld", reg->smin_value);
378 verbose(env, " smax=%lld", reg->smax_value);
382 verbose(env, " unknown scalar value");
383 verbose(env, " should have been in [%d, %d]\n", range.minval, range.maxval);
609 verbose(env, "%s has to be at a constant offset\n", obj_kind);
615 verbose(env, "cannot pass in %s at an offset=%d\n", obj_kind, off);
621 verbose(env, "cannot pass in %s at an offset=%d\n", obj_kind, off);
839 verbose(en
[all...]
/linux-master/arch/nios2/boot/compressed/
H A Dmisc.c57 # define Tracev(x) {if (verbose) fprintf x ; }
58 # define Tracevv(x) {if (verbose > 1) fprintf x ; }
59 # define Tracec(c, x) {if (verbose && (c)) fprintf x ; }
60 # define Tracecv(c, x) {if (verbose > 1 && (c)) fprintf x ; }
/linux-master/arch/alpha/boot/
H A Dmisc.c67 # define Tracev(x) {if (verbose) fprintf x ;}
68 # define Tracevv(x) {if (verbose>1) fprintf x ;}
69 # define Tracec(c,x) {if (verbose && (c)) fprintf x ;}
70 # define Tracecv(c,x) {if (verbose>1 && (c)) fprintf x ;}
/linux-master/tools/objtool/include/objtool/
H A Dbuiltin.h40 bool verbose; member in struct:opts
/linux-master/drivers/gpu/drm/loongson/
H A Dlsdc_gfxpll.h32 struct drm_printer *printer, bool verbose);
/linux-master/drivers/watchdog/
H A Dcpu5wdt.c26 static int verbose; variable
60 if (verbose > 2)
85 if (verbose)
118 if (verbose)
209 if (verbose)
210 pr_debug("port=0x%x, verbose=%i\n", port, verbose);
281 module_param(verbose, int, 0);
282 MODULE_PARM_DESC(verbose, "be verbose, defaul
[all...]
/linux-master/tools/testing/selftests/bpf/
H A Dtesting_helpers.h36 int load_bpf_testmod(bool verbose);
37 int unload_bpf_testmod(bool verbose);
/linux-master/tools/power/cpupower/utils/
H A Dcpuidle-info.c23 static void cpuidle_cpu_output(unsigned int cpu, int verbose) argument
45 if (!verbose)
140 int ret = 0, cont = 1, output_param = 0, verbose = 1; local
153 verbose = 0;
207 cpuidle_cpu_output(cpu, verbose);
/linux-master/tools/testing/memblock/tests/
H A Dcommon.c20 {"verbose", 0, NULL, 'v'},
29 "enable verbose output, which includes the name of the\n\t\t\t"
34 static int verbose; variable
146 verbose = 1;
163 if (verbose) {
171 if (verbose) {
179 if (verbose) {
/linux-master/drivers/macintosh/ams/
H A Dams-core.c21 static bool verbose; variable
22 module_param(verbose, bool, 0644);
23 MODULE_PARM_DESC(verbose, "Show free falls and shocks in kernel output");
98 if (verbose)
105 if (verbose)
/linux-master/Documentation/sphinx/
H A Dkfigure.py167 Check available build tools and log some *verbose* messages.
173 kernellog.verbose(app, "kfigure: check installed tools ...")
181 kernellog.verbose(app, "use dot(1) from: " + dot_cmd)
196 kernellog.verbose(app, "use inkscape(1) from: " + inkscape_cmd)
207 kernellog.verbose(app, "use convert(1) from: " + convert_cmd)
209 kernellog.verbose(app,
216 kernellog.verbose(app, "use rsvg-convert(1) from: " + rsvg_convert_cmd)
217 kernellog.verbose(app, "use 'dot -Tsvg' and rsvg-convert(1) for DOT -> PDF conversion")
220 kernellog.verbose(app,
224 kernellog.verbose(ap
[all...]
/linux-master/tools/perf/tests/
H A Dhists_filter.c145 if (verbose > 1)
159 if (verbose > 2) {
183 if (verbose > 2) {
212 if (verbose > 2) {
247 if (verbose > 2) {
276 if (verbose > 2) {
307 if (verbose > 2) {
/linux-master/lib/
H A Dtest_lockup.c169 static void test_lock(bool master, bool verbose) argument
177 if (verbose)
183 if (verbose)
193 if (verbose)
214 if (verbose)
221 if (verbose)
246 static void test_unlock(bool master, bool verbose) argument
253 if (verbose)
260 if (verbose)
282 if (verbose)
[all...]
/linux-master/certs/
H A Dextract-cert.c81 static bool verbose; variable
93 if (verbose)
108 verbose = true;
/linux-master/tools/testing/selftests/kvm/x86_64/
H A Dxen_shinfo_test.c456 bool verbose; local
459 verbose = argc > 1 && (!strncmp(argv[1], "-v", 3) ||
460 !strncmp(argv[1], "--verbose", 10));
672 if (verbose)
682 if (verbose)
691 if (verbose)
706 if (verbose)
718 if (verbose)
730 if (verbose)
738 if (verbose)
[all...]

Completed in 289 milliseconds

1234567891011