/Linux-v5.10/kernel/trace/ |
D | trace_dynevent.c | 257 ret = seq_buf_printf(&cmd->seq, " %s%c", arg->str, arg->separator); in dynevent_arg_add() 259 pr_err("String is too long: %s%c\n", arg->str, arg->separator); in dynevent_arg_add() 304 arg_pair->separator); in dynevent_arg_pair_add() 308 arg_pair->separator); in dynevent_arg_pair_add() 382 char separator) in dynevent_arg_init() argument 386 if (!separator) in dynevent_arg_init() 387 separator = ' '; in dynevent_arg_init() 388 arg->separator = separator; in dynevent_arg_init() 409 char operator, char separator) in dynevent_arg_pair_init() argument 417 if (!separator) in dynevent_arg_pair_init() [all …]
|
D | trace_dynevent.h | 128 char separator; /* e.g. ';', ',', or nothing */ member 132 char separator); 141 char separator; /* e.g. ';', ',', or nothing */ member 145 char operator, char separator);
|
/Linux-v5.10/scripts/ |
D | parse-maintainers.pl | 114 my $separator; 119 if (! defined $separator) { 120 $separator = "\n"; 122 print $file $separator;
|
/Linux-v5.10/tools/perf/Documentation/ |
D | perf-mem.txt | 49 --field-separator=<separator>:: 50 Specify the field separator used when dump raw samples (-D option). By default, 51 The separator is the space character.
|
D | perf-diff.txt | 65 --field-separator=:: 67 Use a special separator character and don't pad with spaces, replacing 68 all occurrences of this separator in symbol names (and other output) 69 with a '.' character, that thus it's the only non valid separator. 289 behind ':' separator like '-c wdiff:1,2'.
|
D | perf-report.txt | 211 --field-separator=:: 212 Use a special separator character and don't pad with spaces, replacing 213 all occurrences of this separator in symbol names (and other output) 214 with a '.' character, that thus it's the only non valid separator.
|
D | perf-stat.txt | 83 option using the comma separator. Hardware events and generic hardware 134 --field-separator SEP::
|
D | perf-top.txt | 337 option using the comma separator. Hardware events and generic hardware
|
/Linux-v5.10/arch/s390/kernel/ |
D | dis.c | 427 char separator; in print_insn() local 440 separator = 0; in print_insn() 448 value == 0 && separator == '(') { in print_insn() 449 separator = ','; in print_insn() 452 if (separator) in print_insn() 453 ptr += sprintf(ptr, "%c", separator); in print_insn() 473 separator = '('; in print_insn() 476 separator = ','; in print_insn() 478 separator = ','; in print_insn()
|
/Linux-v5.10/drivers/acpi/acpica/ |
D | exconvrt.c | 381 u8 separator = ','; in acpi_ex_convert_to_string() local 478 separator = ' '; in acpi_ex_convert_to_string() 491 separator = ','; in acpi_ex_convert_to_string() 535 *new_buf++ = separator; in acpi_ex_convert_to_string()
|
/Linux-v5.10/scripts/dtc/ |
D | dt_to_config | 448 my $separator; 475 print "$separator", "$existing_config"; 476 $separator = ", "; 478 print "$separator", "n"; 479 $separator = ", ";
|
/Linux-v5.10/tools/testing/selftests/powerpc/mm/ |
D | tlbie_test.c | 265 char separator[2] = "/"; in start_verification_log() local 271 strcat(path, separator); in start_verification_log() 313 char separator[] = "/"; in end_verification_log() local 324 strcat(path, separator); in end_verification_log()
|
/Linux-v5.10/drivers/md/ |
D | dm-init.c | 83 static char __init *str_field_delimit(char **str, char separator) in str_field_delimit() argument 89 s = strchr(*str, separator); in str_field_delimit()
|
/Linux-v5.10/scripts/gdb/linux/ |
D | modules.py | 88 separator=" " if first else ",",
|
/Linux-v5.10/drivers/of/ |
D | base.c | 880 const char *separator = strchr(path, ':'); in __of_find_node_by_full_path() local 889 if (separator && separator < path) in __of_find_node_by_full_path() 918 const char *separator = strchr(path, ':'); in of_find_node_opts_by_path() local 921 *opts = separator ? separator + 1 : NULL; in of_find_node_opts_by_path() 929 const char *p = separator; in of_find_node_opts_by_path()
|
/Linux-v5.10/lib/ |
D | vsprintf.c | 1119 char separator; in hex_string() local 1130 separator = ':'; in hex_string() 1133 separator = '-'; in hex_string() 1136 separator = 0; in hex_string() 1139 separator = ' '; in hex_string() 1154 if (separator && i != len - 1) { in hex_string() 1156 *buf = separator; in hex_string() 1255 char separator; in mac_address_string() local 1263 separator = '-'; in mac_address_string() 1271 separator = ':'; in mac_address_string() [all …]
|
/Linux-v5.10/Documentation/locking/ |
D | lockstat.rst | 143 short separator (line 08, 13) from the contention points. 151 short separator. The contention points don't match the column descriptors,
|
/Linux-v5.10/Documentation/core-api/ |
D | printk-formats.rst | 258 certain separator. For larger buffers consider using 274 separators. The default byte separator is the colon (:). 278 separator. 446 The separator when using multiple arguments is ':'
|
/Linux-v5.10/tools/bpf/ |
D | bpf_dbg.c | 1006 char sp, *token, separator = ','; in cmd_load_bpf() local 1014 sp != separator || bpf_len > BPF_MAXINSNS || bpf_len == 0) { in cmd_load_bpf() 1020 while ((token = strchr(token, separator)) && (++token)[0]) { in cmd_load_bpf()
|
/Linux-v5.10/Documentation/fb/ |
D | modedb.rst | 56 Options can also be passed after the mode, using commas as separator.
|
/Linux-v5.10/fs/cifs/ |
D | connect.c | 1380 char separator[2]; in cifs_parse_mount_options() local 1396 separator[0] = ','; in cifs_parse_mount_options() 1397 separator[1] = 0; in cifs_parse_mount_options() 1398 delim = separator[0]; in cifs_parse_mount_options() 1467 separator[0] = options[4]; in cifs_parse_mount_options() 1490 while ((data = strsep(&options, separator)) != NULL) { in cifs_parse_mount_options()
|
/Linux-v5.10/drivers/hid/ |
D | hid-core.c | 2226 struct hid_device *hdev_b, char separator) in hid_compare_device_paths() argument 2228 int n1 = strrchr(hdev_a->phys, separator) - hdev_a->phys; in hid_compare_device_paths() 2229 int n2 = strrchr(hdev_b->phys, separator) - hdev_b->phys; in hid_compare_device_paths()
|
/Linux-v5.10/include/linux/ |
D | hid.h | 912 struct hid_device *hdev_b, char separator);
|
/Linux-v5.10/Documentation/trace/ |
D | events.rst | 1016 optional sanity-checking function or separator appended to the end of 1036 to add an operator between the pair (here none) and a separator to be
|
/Linux-v5.10/Documentation/admin-guide/cifs/ |
D | usage.rst | 401 the comma as the separator between the mount 406 could be passed instead with period as the separator by::
|