Home
last modified time | relevance | path

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

12

/linux/tools/perf/scripts/python/
A Dtask-analyzer.py377 separator,
381 separator,
385 separator,
389 separator,
393 separator,
489 separator, len_max_at, decimal_precision
585 separator, fix_csv_align = _prepare_fmt_sep()
602 separator, fix_csv_align = _prepare_fmt_sep()
898 separator = " "
901 separator = ";"
[all …]
/linux/kernel/trace/
A Dtrace_dynevent.c305 pr_err("String is too long: %s%c\n", arg->str, arg->separator); in dynevent_arg_add()
350 arg_pair->separator); in dynevent_arg_pair_add()
354 arg_pair->separator); in dynevent_arg_pair_add()
428 char separator) in dynevent_arg_init() argument
432 if (!separator) in dynevent_arg_init()
433 separator = ' '; in dynevent_arg_init()
434 arg->separator = separator; in dynevent_arg_init()
455 char operator, char separator) in dynevent_arg_pair_init() argument
463 if (!separator) in dynevent_arg_pair_init()
464 separator = ' '; in dynevent_arg_pair_init()
[all …]
A Dtrace_dynevent.h130 char separator; /* e.g. ';', ',', or nothing */ member
134 char separator);
143 char separator; /* e.g. ';', ',', or nothing */ member
147 char operator, char separator);
/linux/scripts/
A Dparse-maintainers.pl114 my $separator;
119 if (! defined $separator) {
120 $separator = "\n";
122 print $file $separator;
A Dfaddr2line255 …AWK} -v sec=$sym_sec '$7 == sec' | sort --key=2 | ${GREP} -A1 --no-group-separator " ${sym_name}$")
/linux/arch/s390/kernel/
A Ddis.c434 char separator; in print_insn() local
447 separator = 0; in print_insn()
455 value == 0 && separator == '(') { in print_insn()
456 separator = ','; in print_insn()
459 if (separator) in print_insn()
460 ptr += sprintf(ptr, "%c", separator); in print_insn()
480 separator = '('; in print_insn()
483 separator = ','; in print_insn()
485 separator = ','; in print_insn()
/linux/drivers/acpi/acpica/
A Dexconvrt.c393 u8 separator = ','; in acpi_ex_convert_to_string() local
520 separator = ' '; in acpi_ex_convert_to_string()
534 separator = ','; in acpi_ex_convert_to_string()
579 *new_buf++ = separator; in acpi_ex_convert_to_string()
/linux/sound/soc/sof/intel/
A Dtelemetry.c36 if (telemetry_data->separator != XTENSA_CORE_DUMP_SEPARATOR) { in sof_ipc4_intel_dump_telemetry_state()
38 telemetry_data->separator); in sof_ipc4_intel_dump_telemetry_state()
/linux/tools/perf/Documentation/
A Dperf-mem.txt124 --field-separator=<separator>::
125 Specify the field separator used when dump raw samples (-D option). By default,
126 The separator is the space character.
A 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'.
A Dperf-lock.txt207 --field-separator=<SEP>::
A Dperf-report.txt234 --field-separator=::
235 Use a special separator character and don't pad with spaces, replacing
236 all occurrences of this separator in symbol names (and other output)
237 with a '.' character, that thus it's the only non valid separator.
/linux/scripts/dtc/
A Ddt_to_config448 my $separator;
475 print "$separator", "$existing_config";
476 $separator = ", ";
478 print "$separator", "n";
479 $separator = ", ";
/linux/tools/testing/selftests/powerpc/mm/
A Dtlbie_test.c264 char separator[2] = "/"; in start_verification_log() local
270 strcat(path, separator); in start_verification_log()
312 char separator[] = "/"; in end_verification_log() local
323 strcat(path, separator); in end_verification_log()
/linux/sound/soc/sof/
A Dipc4-telemetry.h66 u32 separator; member
/linux/drivers/md/
A Ddm-init.c88 static char __init *str_field_delimit(char **str, char separator) in str_field_delimit() argument
94 s = strchr(*str, separator); in str_field_delimit()
/linux/drivers/of/
A Dbase.c795 const char *separator = strchr(path, ':'); in __of_find_node_by_full_path() local
804 if (separator && separator < path) in __of_find_node_by_full_path()
833 const char *separator = strchr(path, ':'); in of_find_node_opts_by_path() local
836 *opts = separator ? separator + 1 : NULL; in of_find_node_opts_by_path()
844 const char *p = separator; in of_find_node_opts_by_path()
/linux/scripts/gdb/linux/
A Dmodules.py94 separator=" " if first else ",",
/linux/lib/
A Dvsprintf.c1149 char separator; in hex_string() local
1160 separator = ':'; in hex_string()
1163 separator = '-'; in hex_string()
1166 separator = 0; in hex_string()
1169 separator = ' '; in hex_string()
1184 if (separator && i != len - 1) { in hex_string()
1186 *buf = separator; in hex_string()
1275 char separator; in mac_address_string() local
1283 separator = '-'; in mac_address_string()
1291 separator = ':'; in mac_address_string()
[all …]
/linux/Documentation/locking/
A Dlockstat.rst143 short separator (line 08, 13) from the contention points.
151 short separator. The contention points don't match the column descriptors,
/linux/Documentation/core-api/
A Dprintk-formats.rst294 certain separator. For larger buffers consider using
310 separators. The default byte separator is the colon (:).
314 separator.
482 The separator when using multiple arguments is ':'
544 The %pt[RT]s (space) will override ISO 8601 separator by using ' ' (space)
/linux/drivers/md/dm-vdo/
A Ddm-vdo-target.c263 static int split_string(const char *string, char separator, char ***substring_array_ptr) in split_string() argument
272 if (*s == separator) in split_string()
282 if (*s == separator) { in split_string()
324 static int join_strings(char **substring_array, size_t array_length, char separator, in join_strings() argument
345 *current_position = separator; in join_strings()
/linux/tools/bpf/
A 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()
/linux/Documentation/bpf/libbpf/
A Dprogram_types.rst13 with a '``/``' separator between ``type`` and ``extras``.
/linux/Documentation/fb/
A Dmodedb.rst64 Options can also be passed after the mode, using commas as separator.

Completed in 53 milliseconds

12