| /linux-6.15/kernel/time/ |
| H A D | timeconst.bc | 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" 56 print "#endif\n\n" 59 print "#error Totally bogus HZ value!\n" 81 print "\n" 109 print "\n" [all …]
|
| /linux-6.15/tools/testing/selftests/size/ |
| H A D | get_size.c | 35 static int print(const char *s) in print() function 73 print(s); in print_k_value() 79 print("\n"); in print_k_value() 91 print("TAP version 13\n"); in _start() 96 print("not ok 1"); in _start() 97 print(test_name); in _start() 101 print("ok 1"); in _start() 102 print(test_name); in _start() 107 print(" ---\n"); in _start() 112 print(" ...\n"); in _start() [all …]
|
| /linux-6.15/include/trace/ |
| H A D | trace_events.h | 45 PARAMS(print)); \ 55 PARAMS(print)); \ 89 assign, print, reg, unreg) \ argument 91 PARAMS(tstruct), PARAMS(assign), PARAMS(print)) \ 95 assign, print, reg, unreg) \ argument 219 trace_event_printf(iter, print); \ 250 return trace_output_call(iter, #call, print); \ 435 PARAMS(assign), PARAMS(print)) \ 445 PARAMS(assign), PARAMS(print)) \ 477 static char print_fmt_##call[] = print; \ [all …]
|
| H A D | trace_custom_events.h | 27 #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 D | define_trace.h | 27 #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 D | perf.h | 16 #define __DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \ argument 65 #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \ argument 67 PARAMS(assign), PARAMS(print)) \ 78 #define DECLARE_EVENT_SYSCALL_CLASS(call, proto, args, tstruct, assign, print) \ argument 80 PARAMS(assign), PARAMS(print)) \ 107 #define DEFINE_EVENT_PRINT(template, name, proto, args, print) \ argument
|
| /linux-6.15/arch/alpha/kernel/ |
| H A D | err_titan.c | 27 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() 229 if (!print) in titan_parse_p_perror() 318 if (!print) in titan_parse_p_agperror() 359 u64 aperror, u64 agperror, int print) in titan_parse_p_chip() argument 380 print); in titan_process_logout_frame() 383 print); in titan_process_logout_frame() 600 if (!print) in privateer_process_680_frame() [all …]
|
| H A D | err_ev6.c | 23 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-6.15/net/mac80211/ |
| H A D | debug.h | 97 #define _sdata_dbg(print, sdata, fmt, ...) \ argument 98 __sdata_dbg(print, "%s: " fmt, (sdata)->name, ##__VA_ARGS__) 101 #define _wiphy_dbg(print, wiphy, fmt, ...) \ argument 102 __wiphy_dbg(wiphy, print, fmt, ##__VA_ARGS__) 110 #define _sdata_dbg(print, sdata, fmt, ...) \ argument 112 if (print) \ 123 #define _wiphy_dbg(print, wiphy, fmt, ...) \ argument 125 if (print) \ 163 #define _link_id_dbg(print, sdata, link_id, fmt, ...) \ argument 166 _sdata_dbg(print, sdata, "[link %d] " fmt, \ [all …]
|
| H A D | trace.c | 30 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()
|
| H A D | Kconfig | 136 Selecting this option causes mac80211 to print out 147 Selecting this option causes mac80211 to print out 158 Selecting this option causes mac80211 to print out 179 Selecting this option causes mac80211 to print out 190 Selecting this option causes mac80211 to print out 201 Selecting this option causes mac80211 to print out very 214 Selecting this option causes mac80211 to print out very 227 Selecting this option causes mac80211 to print out very 240 Selecting this option causes mac80211 to print out very 253 Selecting this option causes mac80211 to print out very verbose mesh [all …]
|
| /linux-6.15/rust/kernel/ |
| H A D | print.rs | 159 $crate::print::call_printk( 170 $crate::print::call_printk_cont( 214 $crate::print_macro!($crate::print::format_strings::EMERG, false, $($arg)*) 238 $crate::print_macro!($crate::print::format_strings::ALERT, false, $($arg)*) 262 $crate::print_macro!($crate::print::format_strings::CRIT, false, $($arg)*) 286 $crate::print_macro!($crate::print::format_strings::ERR, false, $($arg)*) 310 $crate::print_macro!($crate::print::format_strings::WARNING, false, $($arg)*) 334 $crate::print_macro!($crate::print::format_strings::NOTICE, false, $($arg)*) 359 $crate::print_macro!($crate::print::format_strings::INFO, false, $($arg)*) 386 $crate::print_macro!($crate::print::format_strings::DEBUG, false, $($arg)*) [all …]
|
| /linux-6.15/kernel/trace/ |
| H A D | trace_export.c | 32 #define FTRACE_ENTRY_REG(name, struct_name, id, tstruct, print, regfn) \ argument 33 FTRACE_ENTRY(name, struct_name, id, PARAMS(tstruct), PARAMS(print)) 70 #define FTRACE_ENTRY(name, struct_name, id, tstruct, print) \ argument 79 printk(print); \ 83 #define FTRACE_ENTRY_DUP(name, struct_name, id, tstruct, print) \ argument 84 FTRACE_ENTRY(name, struct_name, id, PARAMS(tstruct), PARAMS(print)) 133 #define FTRACE_ENTRY(name, struct_name, id, tstruct, print) \ argument 171 #define FTRACE_ENTRY_REG(call, struct_name, etype, tstruct, print, regfn) \ argument 185 .print_fmt = print, \ 192 #define FTRACE_ENTRY(call, struct_name, etype, tstruct, print) \ argument [all …]
|
| /linux-6.15/scripts/kconfig/tests/preprocess/escape/ |
| H A D | Kconfig | 23 # 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-6.15/fs/bcachefs/ |
| H A D | error.c | 346 bool *repeat, bool *print, bool *suppress) in count_fsck_err_locked() argument 359 *print = false; in count_fsck_err_locked() 371 *print = false; in count_fsck_err_locked() 381 bool *repeat, bool *print, bool *suppress) in __bch2_count_fsck_err() argument 477 goto print; in __bch2_fsck_err() 485 print = true; in __bch2_fsck_err() 504 print = false; in __bch2_fsck_err() 541 print = true; in __bch2_fsck_err() 543 print: in __bch2_fsck_err() 553 if (print) { in __bch2_fsck_err() [all …]
|
| /linux-6.15/Documentation/tools/rtla/ |
| H A D | common_hist_options.rst | 11 Do not print header. 15 Do not print summary. 19 Do not print index.
|
| /linux-6.15/Documentation/hwmon/ |
| H A D | tmp401.rst | 12 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 D | tmp421.rst | 12 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-6.15/arch/x86/mm/pat/ |
| H A D | cpa-test.c | 22 static __read_mostly int print = 1; variable 93 if (print) { in print_split() 127 if (print) in pageattr_test() 246 if (print) in pageattr_test() 259 if (print) in do_pageattr_test() 260 print--; in do_pageattr_test()
|
| /linux-6.15/fs/cachefiles/ |
| H A D | key.c | 42 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-6.15/include/linux/ |
| H A D | tracepoint.h | 592 #define DECLARE_EVENT_CLASS(name, proto, args, tstruct, assign, print) argument 597 #define DEFINE_EVENT_PRINT(template, name, proto, args, print) \ argument 604 #define TRACE_EVENT(name, proto, args, struct, assign, print) \ argument 607 assign, print, reg, unreg) \ argument 610 assign, print, reg, unreg) \ argument 614 struct, assign, print) \ argument 618 print, reg, unreg) \ argument 633 #define TRACE_EVENT_NOP(name, proto, args, struct, assign, print) \ argument 636 #define DECLARE_EVENT_CLASS_NOP(name, proto, args, tstruct, assign, print) argument
|
| /linux-6.15/lib/kunit/ |
| H A D | attributes.c | 42 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-6.15/tools/objtool/ |
| H A D | builtin-check.c | 252 goto print; in print_args() 261 goto print; in print_args() 268 goto print; in print_args() 271 print: in print_args()
|
| /linux-6.15/Documentation/bpf/ |
| H A D | drgn.rst | 24 iterate over all programs and maps in the system and print basic information 96 The script is intended to be customized by developers to print relevant 99 For example, to print ``struct bpf_prog_aux`` for BPF program id 53077: 112 - print(f"{id_:>6}: {type_:32} {name:32} {linked}") 114 + print(f"{id_:>6}: {type_:32} {name:32}") 115 + print(f"{bpf_prog.aux}")
|
| /linux-6.15/scripts/ |
| H A D | unifdef.c | 424 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 …]
|