Home
last modified time | relevance | path

Searched refs:separator (Results 1 – 25 of 34) sorted by relevance

12

/kernel/linux/linux-5.10/kernel/trace/
Dtrace_dynevent.c259 ret = seq_buf_printf(&cmd->seq, " %s%c", arg->str, arg->separator); in dynevent_arg_add()
261 pr_err("String is too long: %s%c\n", arg->str, arg->separator); in dynevent_arg_add()
306 arg_pair->separator); in dynevent_arg_pair_add()
310 arg_pair->separator); in dynevent_arg_pair_add()
384 char separator) in dynevent_arg_init() argument
388 if (!separator) in dynevent_arg_init()
389 separator = ' '; in dynevent_arg_init()
390 arg->separator = separator; in dynevent_arg_init()
411 char operator, char separator) in dynevent_arg_pair_init() argument
419 if (!separator) in dynevent_arg_pair_init()
[all …]
Dtrace_dynevent.h128 char separator; /* e.g. ';', ',', or nothing */ member
132 char separator);
141 char separator; /* e.g. ';', ',', or nothing */ member
145 char operator, char separator);
/kernel/linux/linux-5.10/scripts/
Dparse-maintainers.pl114 my $separator;
119 if (! defined $separator) {
120 $separator = "\n";
122 print $file $separator;
/kernel/linux/linux-5.10/tools/perf/Documentation/
Dperf-mem.txt49 --field-separator=<separator>::
50 Specify the field separator used when dump raw samples (-D option). By default,
51 The separator is the space character.
Dperf-diff.txt65 --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'.
Dperf-report.txt211 --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.
Dperf-stat.txt83 option using the comma separator. Hardware events and generic hardware
134 --field-separator SEP::
Dperf-top.txt337 option using the comma separator. Hardware events and generic hardware
/kernel/linux/linux-5.10/arch/s390/kernel/
Ddis.c427 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()
/kernel/linux/linux-5.10/drivers/acpi/acpica/
Dexconvrt.c381 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()
/kernel/linux/linux-5.10/scripts/dtc/
Ddt_to_config448 my $separator;
475 print "$separator", "$existing_config";
476 $separator = ", ";
478 print "$separator", "n";
479 $separator = ", ";
/kernel/linux/linux-5.10/tools/testing/selftests/powerpc/mm/
Dtlbie_test.c265 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()
/kernel/linux/linux-5.10/drivers/md/
Ddm-init.c83 static char __init *str_field_delimit(char **str, char separator) in str_field_delimit() argument
89 s = strchr(*str, separator); in str_field_delimit()
/kernel/linux/linux-5.10/scripts/gdb/linux/
Dmodules.py88 separator=" " if first else ",",
/kernel/linux/linux-5.10/drivers/of/
Dbase.c880 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()
/kernel/linux/linux-5.10/lib/
Dvsprintf.c1147 char separator; in hex_string() local
1158 separator = ':'; in hex_string()
1161 separator = '-'; in hex_string()
1164 separator = 0; in hex_string()
1167 separator = ' '; in hex_string()
1182 if (separator && i != len - 1) { in hex_string()
1184 *buf = separator; in hex_string()
1283 char separator; in mac_address_string() local
1291 separator = '-'; in mac_address_string()
1299 separator = ':'; in mac_address_string()
[all …]
/kernel/linux/linux-5.10/Documentation/locking/
Dlockstat.rst143 short separator (line 08, 13) from the contention points.
151 short separator. The contention points don't match the column descriptors,
/kernel/liteos_m/components/shell/src/cmds/
Dvfs_shellcmd.c708 CHAR separator[] = "/"; in OsWildcardExtractDirectory() local
759 ret = strcat_s(src, sizeof(src), separator); in OsWildcardExtractDirectory()
785 ret = strcat_s(src, sizeof(src), separator); in OsWildcardExtractDirectory()
/kernel/linux/linux-5.10/Documentation/core-api/
Dprintk-formats.rst258 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 ':'
/kernel/liteos_a/fs/vfs/vfs_cmd/
Dvfs_shellcmd.c909 char separator[] = "/"; in os_wildcard_extract_directory() local
955 ret = strcat_s(src, sizeof(src), separator); in os_wildcard_extract_directory()
981 ret = strcat_s(src, sizeof(src), separator); in os_wildcard_extract_directory()
/kernel/linux/linux-5.10/tools/bpf/
Dbpf_dbg.c1006 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()
/kernel/linux/linux-5.10/Documentation/fb/
Dmodedb.rst56 Options can also be passed after the mode, using commas as separator.
/kernel/linux/linux-5.10/fs/cifs/
Dconnect.c1393 char separator[2]; in cifs_parse_mount_options() local
1409 separator[0] = ','; in cifs_parse_mount_options()
1410 separator[1] = 0; in cifs_parse_mount_options()
1411 delim = separator[0]; in cifs_parse_mount_options()
1480 separator[0] = options[4]; in cifs_parse_mount_options()
1503 while ((data = strsep(&options, separator)) != NULL) { in cifs_parse_mount_options()
/kernel/linux/linux-5.10/drivers/hid/
Dhid-core.c2235 struct hid_device *hdev_b, char separator) in hid_compare_device_paths() argument
2237 int n1 = strrchr(hdev_a->phys, separator) - hdev_a->phys; in hid_compare_device_paths()
2238 int n2 = strrchr(hdev_b->phys, separator) - hdev_b->phys; in hid_compare_device_paths()
/kernel/linux/linux-5.10/include/linux/
Dhid.h921 struct hid_device *hdev_b, char separator);

12