Home
last modified time | relevance | path

Searched refs:print (Results 1 – 25 of 235) sorted by relevance

12345678910

/linux/kernel/time/
H A Dtimeconst.bc44 print "/* Automatically generated by kernel/time/timeconst.bc */\n"
45 print "/* Time conversion constants for HZ == ", hz, " */\n"
46 print "\n"
48 print "#ifndef KERNEL_TIMECONST_H\n"
49 print "#define KERNEL_TIMECONST_H\n\n"
51 print "#include <linux/param.h>\n"
52 print "#include <linux/types.h>\n\n"
54 print "#if HZ != ", hz, "\n"
55 print "#error \qinclude/generated/timeconst.h has the wrong HZ value!\q\n"
56 print "#endif\n\n"
[all …]
/linux/tools/testing/selftests/size/
H A Dget_size.c35 static int print(const char *s) in print() function
65 return print(num_to_str(num, num_buf, sizeof(num_buf))); in print_num()
73 print(s); in print_k_value()
79 print("\n"); in print_k_value()
91 print("TAP version 13\n"); in _start()
92 print("# Testing system size.\n"); in _start()
96 print("not ok 1"); in _start()
97 print(test_name); in _start()
98 print(" ---\n reason: \"could not get sysinfo\"\n ...\n"); in _start()
101 print("ok 1"); in _start()
[all …]
/linux/arch/alpha/kernel/
H A Derr_titan.c27 titan_parse_c_misc(u64 c_misc, int print) in titan_parse_c_misc() argument
43 if (!print) in titan_parse_c_misc()
74 titan_parse_p_serror(int which, u64 serror, int print) in titan_parse_p_serror() argument
112 if (!print) in titan_parse_p_serror()
141 titan_parse_p_perror(int which, int port, u64 perror, int print) in titan_parse_p_perror() argument
229 if (!print) in titan_parse_p_perror()
275 titan_parse_p_agperror(int which, u64 agperror, int print) in titan_parse_p_agperror() argument
318 if (!print) in titan_parse_p_agperror()
359 u64 aperror, u64 agperror, int print) in titan_parse_p_chip() argument
362 status |= titan_parse_p_serror(which, serror, print); in titan_parse_p_chip()
[all …]
H A Derr_ev6.c23 ev6_parse_ibox(u64 i_stat, int print) in ev6_parse_ibox() argument
33 if (!print) in ev6_parse_ibox()
43 ev6_parse_mbox(u64 mm_stat, u64 d_stat, u64 c_stat, int print) in ev6_parse_mbox() argument
64 if (!print) in ev6_parse_mbox()
91 u64 c_stat, u64 c_sts, int print) in ev6_parse_cbox() argument
133 if (!print) in ev6_parse_cbox()
187 ev6_process_logout_frame(struct el_common *mchk_header, int print) in ev6_process_logout_frame() argument
193 status |= ev6_parse_ibox(ev6mchk->I_STAT, print); in ev6_process_logout_frame()
195 ev6mchk->C_STAT, print); in ev6_process_logout_frame()
198 ev6mchk->C_STS, print); in ev6_process_logout_frame()
[all …]
/linux/net/mac80211/
H A Ddebug.h91 void __sdata_dbg(bool print, const char *fmt, ...) __printf(2, 3);
93 void __wiphy_dbg(struct wiphy *wiphy, bool print, const char *fmt, ...)
98 #define _sdata_dbg(print, sdata, fmt, ...) \ argument
99 __sdata_dbg(print, "%s: " fmt, (sdata)->name, ##__VA_ARGS__)
102 #define _wiphy_dbg(print, wiphy, fmt, ...) \ argument
103 __wiphy_dbg(wiphy, print, fmt, ##__VA_ARGS__)
111 #define _sdata_dbg(print, sdata, fmt, ...) \ argument
113 if (print) \
124 #define _wiphy_dbg(print, wiphy, fmt, ...) \ argument
126 if (print) \
[all …]
H A Dtrace.c30 void __sdata_dbg(bool print, const char *fmt, ...) in __sdata_dbg() argument
40 if (print) in __sdata_dbg()
61 void __wiphy_dbg(struct wiphy *wiphy, bool print, const char *fmt, ...) in __wiphy_dbg() argument
71 if (print) in __wiphy_dbg()
/linux/include/trace/
H A Dtrace_custom_events.h27 #define TRACE_CUSTOM_EVENT(name, proto, args, tstruct, assign, print) \ argument
33 PARAMS(print)); \
41 #define DECLARE_CUSTOM_EVENT_CLASS(name, proto, args, tstruct, assign, print) \ argument
62 #define DECLARE_CUSTOM_EVENT_CLASS(call, proto, args, tstruct, assign, print) \ argument
77 #define DECLARE_CUSTOM_EVENT_CLASS(call, proto, args, tstruct, assign, print) \ argument
93 trace_event_printf(iter, print); \
108 #define DECLARE_CUSTOM_EVENT_CLASS(call, proto, args, tstruct, func, print) \ argument
120 #define DECLARE_CUSTOM_EVENT_CLASS(call, proto, args, tstruct, assign, print) \ argument
140 #define DECLARE_CUSTOM_EVENT_CLASS(call, proto, args, tstruct, assign, print) \ argument
188 #define DECLARE_CUSTOM_EVENT_CLASS(call, proto, args, tstruct, assign, print) \ argument
[all …]
H A Ddefine_trace.h27 #define TRACE_EVENT(name, proto, args, tstruct, assign, print) \ argument
31 #define TRACE_EVENT_CONDITION(name, proto, args, cond, tstruct, assign, print) \ argument
37 PARAMS(print))
41 assign, print, reg, unreg) \ argument
46 assign, print, reg, unreg) \ argument
50 #define TRACE_EVENT_SYSCALL(name, proto, args, struct, assign, print, reg, unreg) \ argument
54 #define TRACE_EVENT_NOP(name, proto, args, struct, assign, print) argument
68 #define DEFINE_EVENT_PRINT(template, name, proto, args, print) \ argument
H A Dbpf_probe.h53 #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \ argument
67 #define DECLARE_EVENT_SYSCALL_CLASS(call, proto, args, tstruct, assign, print) \ argument
117 #define DEFINE_EVENT_PRINT(template, name, proto, args, print) \ argument
/linux/rust/kernel/
H A Dprint.rs164 $crate::print::call_printk(
175 $crate::print::call_printk_cont(
205 /// Mimics the interface of [`std::print!`]. See [`core::fmt`] and
209 /// [`std::print!`]: https://doc.rust-lang.org/std/macro.print.html
220 $crate::print_macro!($crate::print::format_strings::EMERG, false, $($arg)*)
230 /// Mimics the interface of [`std::print!`]. See [`core::fmt`] and
234 /// [`std::print!`]: https://doc.rust-lang.org/std/macro.print.html
245 $crate::print_macro!($crate::print
[all...]
/linux/kernel/trace/
H A Dtrace_export.c32 #define FTRACE_ENTRY_REG(name, struct_name, id, tstruct, print, regfn) \ argument
33 FTRACE_ENTRY(name, struct_name, id, PARAMS(tstruct), PARAMS(print))
73 #define FTRACE_ENTRY(name, struct_name, id, tstruct, print) \ argument
82 printk(print); \
86 #define FTRACE_ENTRY_DUP(name, struct_name, id, tstruct, print) \ argument
87 FTRACE_ENTRY(name, struct_name, id, PARAMS(tstruct), PARAMS(print))
139 #define FTRACE_ENTRY(name, struct_name, id, tstruct, print) \ argument
180 #define FTRACE_ENTRY_REG(call, struct_name, etype, tstruct, print, regfn) \ argument
194 .print_fmt = print, \
201 #define FTRACE_ENTRY(call, struct_name, etype, tstruct, print) \ argument
[all …]
H A Dtrace_functions.c806 .print = ftrace_traceon_print,
813 .print = ftrace_traceoff_print,
820 .print = ftrace_stacktrace_print,
827 .print = ftrace_dump_print,
834 .print = ftrace_cpudump_print,
839 .print = ftrace_traceon_print,
844 .print = ftrace_traceoff_print,
849 .print = ftrace_stacktrace_print,
/linux/scripts/kconfig/tests/preprocess/escape/
H A DKconfig23 # The following should print "$(X)". It should not be expanded further.
28 # The following should print "(".
33 # The following should print "$(X)". It should not be expanded further.
37 # The following should print "$(X)" as well.
41 # The following should print "$(".
/linux/Documentation/tools/rtla/
H A Dcommon_hist_options.txt11 Do not print header.
15 Do not print summary.
19 Do not print index.
/linux/Documentation/hwmon/
H A Dtmp401.rst12 Datasheet: http://focus.ti.com/docs/prod/folders/print/tmp401.html
20 Datasheet: http://focus.ti.com/docs/prod/folders/print/tmp411.html
28 Datasheet: http://focus.ti.com/docs/prod/folders/print/tmp431.html
36 Datasheet: http://focus.ti.com/docs/prod/folders/print/tmp432.html
44 Datasheet: http://focus.ti.com/docs/prod/folders/print/tmp435.html
H A Dtmp421.rst12 Datasheet: http://focus.ti.com/docs/prod/folders/print/tmp421.html
20 Datasheet: http://focus.ti.com/docs/prod/folders/print/tmp421.html
28 Datasheet: http://focus.ti.com/docs/prod/folders/print/tmp421.html
/linux/fs/cachefiles/
H A Dkey.c42 unsigned int b64len, len, print, pad; in cachefiles_cook_key() local
49 print = 1; in cachefiles_cook_key()
52 print &= cachefiles_filecharmap[ch]; in cachefiles_cook_key()
56 if (print) { in cachefiles_cook_key()
/linux/include/linux/
H A Dtracepoint.h651 #define DECLARE_EVENT_CLASS(name, proto, args, tstruct, assign, print) argument
656 #define DEFINE_EVENT_PRINT(template, name, proto, args, print) \ argument
663 #define TRACE_EVENT(name, proto, args, struct, assign, print) \ argument
666 assign, print, reg, unreg) \ argument
669 assign, print, reg, unreg) \ argument
673 struct, assign, print) \ argument
677 print, reg, unreg) \ argument
692 #define TRACE_EVENT_NOP(name, proto, args, struct, assign, print) \ argument
695 #define DECLARE_EVENT_CLASS_NOP(name, proto, args, tstruct, assign, print) argument
/linux/lib/kunit/
H A Dattributes.c42 enum print_ops print; member
258 .print = PRINT_ALWAYS,
266 .print = PRINT_SUITE,
274 .print = PRINT_SUITE,
295 if (kunit_attr_list[i].print == PRINT_NEVER || in kunit_print_attr()
296 (test && kunit_attr_list[i].print == PRINT_SUITE)) in kunit_print_attr()
/linux/tools/objtool/
H A Dbuiltin-check.c105 OPT_BOOLEAN(0, "sec-address", &opts.sec_address, "print section addresses in warnings"),
106 OPT_BOOLEAN(0, "stats", &opts.stats, "print statistics"),
/linux/scripts/
H A Dunifdef.c424 static void print (void) { flushline(true); } in print() function
431 static void Pelif (void) { print(); ignoreoff(); state(IS_PASS_MIDDLE); } in Pelif()
432 static void Pelse (void) { print(); state(IS_PASS_ELSE); } in Pelse()
433 static void Pendif(void) { print(); unnest(); } in Pendif()
462 print, done, abort },
470 print, Eeof, abort },
474 print, Eeof, abort },
482 print, Eeof, abort },
486 print, Eeof, abort },
494 print, Eeof, abort },
[all …]
/linux/drivers/infiniband/ulp/rtrs/
H A Drtrs-pri.h403 #define STAT_SHOW_FUNC(type, get_value, print) \ argument
410 return print(stats, page); \
413 #define STAT_ATTR(type, stat, print, reset) \ argument
415 STAT_SHOW_FUNC(type, stat, print) \
/linux/drivers/gpu/drm/radeon/
H A Datom.c181 int *ptr, uint32_t *saved, int print) in atom_get_src_int() argument
191 if (print) in atom_get_src_int()
229 if (print) in atom_get_src_int()
235 if (print) in atom_get_src_int()
275 if (print) { in atom_get_src_int()
292 if (print) in atom_get_src_int()
300 if (print) in atom_get_src_int()
308 if (print) in atom_get_src_int()
317 if (print) in atom_get_src_int()
325 if (print) in atom_get_src_int()
[all …]
/linux/Documentation/arch/x86/
H A Dkernel-stacks.rst122 the kernel stack(s) [1]_, from stack top to stack bottom, and print out
125 If it fits into the frame pointer chain, we print it without a question
129 still print it, but we print a '?'. It can mean two things:
138 This way we will always print out the real call chain (plus a few more
145 information: we always strive to print _all_ addresses on the stack(s)
147 we still print out the real call chain as well - just with more question
/linux/samples/bpf/
H A Dtcp_bpf.readme19 The tcp_*_kern.o programs use special print functions to print logging

12345678910