/linux-6.3-rc2/drivers/parport/ |
A D | probe.c | 66 char *sep; in parse_data() local 69 sep = strchr(p, ':'); in parse_data() 70 if (sep) { in parse_data() 72 *(sep++) = 0; in parse_data() 74 u = sep + strlen (sep) - 1; in parse_data() 80 info->mfr = kstrdup(sep, GFP_KERNEL); in parse_data() 83 info->model = kstrdup(sep, GFP_KERNEL); in parse_data() 89 string_upper(sep, sep); in parse_data() 91 if (!strcmp(classes[i].token, sep)) { in parse_data() 97 port->name, sep); in parse_data() [all …]
|
/linux-6.3-rc2/samples/pktgen/ |
A D | functions.sh | 184 local sep=: sep2=:: 202 [[ ${addr:0:1} == $sep ]] && addr=0${addr} 203 [[ ${addr: -1} == $sep ]] && addr=${addr}0 216 local addr sep 229 [[ $IP6 ]] && sep=: || sep=. 230 IFS=$sep read -a addr <<< $net 277 local ip sep 280 [[ $IP6 ]] && sep=: || sep=. 281 IFS=$sep read -ra ip <<< $net 298 min_ip=$(IFS=$sep; echo "${min[*]}") [all …]
|
/linux-6.3-rc2/tools/perf/ui/tui/ |
A D | util.c | 85 const char *sep = strchr(t, '\n'); in ui_browser__input_window() local 87 if (sep == NULL) in ui_browser__input_window() 88 sep = strchr(t, '\0'); in ui_browser__input_window() 89 len = sep - t; in ui_browser__input_window() 93 if (*sep == '\0') in ui_browser__input_window() 95 t = sep + 1; in ui_browser__input_window() 178 if (sep == NULL) in __ui__info_window() 179 sep = strchr(t, '\0'); in __ui__info_window() 180 len = sep - t; in __ui__info_window() 184 if (*sep == '\0') in __ui__info_window() [all …]
|
/linux-6.3-rc2/drivers/block/drbd/ |
A D | drbd_debugfs.c | 37 seq_putc(m, *sep); in __seq_print_rq_state_bit() 39 *sep = '|'; in __seq_print_rq_state_bit() 43 *sep = '|'; in __seq_print_rq_state_bit() 57 char sep = ' '; in seq_print_request_state() local 66 sep = ' '; in seq_print_request_state() 71 if (sep == ' ') in seq_print_request_state() 76 sep = ' '; in seq_print_request_state() 83 if (sep == ' ') in seq_print_request_state() 87 sep = ' '; in seq_print_request_state() 91 if (sep == ' ') in seq_print_request_state() [all …]
|
/linux-6.3-rc2/arch/sh/kernel/ |
A D | nmi_debug.c | 47 char *p, *sep; in nmi_debug_setup() local 54 for (p = str + 1; *p; p = sep + 1) { in nmi_debug_setup() 55 sep = strchr(p, ','); in nmi_debug_setup() 56 if (sep) in nmi_debug_setup() 57 *sep = 0; in nmi_debug_setup() 69 if (!sep) in nmi_debug_setup()
|
/linux-6.3-rc2/scripts/dtc/ |
A D | fdtput.c | 153 const char *sep; in create_paths() local 160 for (sep = path; *sep; path = sep + 1, offset = node) { in create_paths() 162 sep = strchr(path, '/'); in create_paths() 163 if (!sep) in create_paths() 164 sep = path + strlen(path); in create_paths() 167 sep - path); in create_paths() 170 sep - path); in create_paths() 173 report_error(path, sep - path, node); in create_paths()
|
/linux-6.3-rc2/tools/perf/ui/stdio/ |
A D | hist.c | 417 const char *sep = symbol_conf.field_sep; in __hist_entry__snprintf() local 434 if (!sep || !first) { in __hist_entry__snprintf() 462 const char *sep = symbol_conf.field_sep; in hist_entry__hierarchy_fprintf() local 484 if (!sep || !first) { in hist_entry__hierarchy_fprintf() 499 if (!sep) in hist_entry__hierarchy_fprintf() 624 if (sep != NULL || indent < 2) in print_hierarchy_indent() 642 const char *sep = symbol_conf.field_sep; in hists__fprintf_hierarchy_headers() local 692 fprintf(fp, "%s", sep ?: ".."); in hists__fprintf_hierarchy_headers() 741 fprintf(fp, "%s", sep ?: " "); in fprintf_line() 772 if (sep) in hists__fprintf_standard_headers() [all …]
|
/linux-6.3-rc2/tools/bpf/bpftool/ |
A D | json_writer.c | 25 char sep; /* either nul or comma */ member 49 if (self->sep != '\0') in jsonw_eor() 50 putc(self->sep, self->out); in jsonw_eor() 51 self->sep = ','; in jsonw_eor() 100 self->sep = '\0'; in jsonw_new() 125 self->sep = '\0'; in jsonw_reset() 134 self->sep = '\0'; in jsonw_begin() 142 if (self->sep != '\0') in jsonw_end() 145 self->sep = ','; in jsonw_end() 154 self->sep = '\0'; in jsonw_name()
|
/linux-6.3-rc2/tools/perf/util/ |
A D | intlist.c | 97 char *sep; in intlist__parse_list() local 101 unsigned long value = strtol(s, &sep, 10); in intlist__parse_list() 103 if (*sep != ',' && *sep != '\0') in intlist__parse_list() 108 s = sep + 1; in intlist__parse_list() 109 } while (*sep != '\0'); in intlist__parse_list()
|
A D | strlist.c | 144 char *sep; in strlist__parse_list() local 147 while ((sep = strchr(s, ',')) != NULL) { in strlist__parse_list() 148 *sep = '\0'; in strlist__parse_list() 150 *sep = ','; in strlist__parse_list() 153 s = sep + 1; in strlist__parse_list()
|
A D | pfm.c | 40 const char *sep; in parse_libpfm_events_option() local 55 sep = p ? str + (p - p_orig - 1) : ""; in parse_libpfm_events_option() 56 if (*sep == '{') { in parse_libpfm_events_option() 67 if (*sep == '}') { in parse_libpfm_events_option() 109 if (*sep == '}') { in parse_libpfm_events_option()
|
/linux-6.3-rc2/fs/cifs/ |
A D | dns_resolve.c | 34 const char *hostname, *sep; in dns_resolve_server_name_to_ip() local 52 sep = memchr(hostname, '/', len); in dns_resolve_server_name_to_ip() 53 if (sep) in dns_resolve_server_name_to_ip() 54 len = sep - hostname; in dns_resolve_server_name_to_ip()
|
/linux-6.3-rc2/scripts/dtc/libfdt/ |
A D | fdt_overlay.c | 434 char *sep, *endptr; in overlay_fixup_phandle() local 446 sep = memchr(fixup_str, ':', fixup_len); in overlay_fixup_phandle() 447 if (!sep || *sep != ':') in overlay_fixup_phandle() 450 path_len = sep - path; in overlay_fixup_phandle() 455 name = sep + 1; in overlay_fixup_phandle() 456 sep = memchr(name, ':', fixup_len); in overlay_fixup_phandle() 457 if (!sep || *sep != ':') in overlay_fixup_phandle() 460 name_len = sep - name; in overlay_fixup_phandle() 464 poffset = strtoul(sep + 1, &endptr, 10); in overlay_fixup_phandle() 465 if ((*endptr != '\0') || (endptr <= (sep + 1))) in overlay_fixup_phandle()
|
/linux-6.3-rc2/tools/perf/scripts/python/ |
A D | stackcollapse.py | 113 sep = "-" 115 comm = comm + sep + str(param_dict['sample']['pid']) 116 sep = "/" 118 comm = comm + sep + str(param_dict['sample']['tid'])
|
/linux-6.3-rc2/drivers/scsi/ |
A D | scsi_debugfs.c | 19 bool sep = false; in scsi_flags_show() local 23 if (sep) in scsi_flags_show() 25 sep = true; in scsi_flags_show()
|
/linux-6.3-rc2/fs/cachefiles/ |
A D | key.c | 43 char *name, sep; in cachefiles_cook_key() local 90 sep = (nbe <= nle) ? 'S' : 'T'; /* Encoding indicator */ in cachefiles_cook_key() 98 name[len++] = sep; in cachefiles_cook_key() 101 sep = ','; in cachefiles_cook_key()
|
/linux-6.3-rc2/tools/perf/arch/s390/util/ |
A D | header.c | 111 char *sep = strchr(cp, '='); in get_cpuid() local 114 sizeof(version) - vssize, "%s", sep + 1); in get_cpuid() 118 char *sep = strchr(cp, '='); in get_cpuid() local 121 sizeof(authorization) - atsize, "%s", sep + 1); in get_cpuid()
|
/linux-6.3-rc2/kernel/trace/ |
A D | trace_boot.c | 224 char sep; in trace_boot_hist_add_array() local 234 sep = '='; in trace_boot_hist_add_array() 236 append_printf(bufp, end, "%c%s", sep, p); in trace_boot_hist_add_array() 237 if (sep == '=') in trace_boot_hist_add_array() 238 sep = ','; in trace_boot_hist_add_array() 253 char sep; in trace_boot_hist_add_one_handler() local 279 sep = '('; in trace_boot_hist_add_one_handler() 281 append_printf(bufp, end, "%c%s", sep, p); in trace_boot_hist_add_one_handler() 282 if (sep == '(') in trace_boot_hist_add_one_handler() 283 sep = ','; in trace_boot_hist_add_one_handler()
|
/linux-6.3-rc2/drivers/gpu/drm/i915/ |
A D | i915_mitigations.c | 33 char *str, *sep, *tok; in mitigations_set() local 43 for (sep = str; (tok = strsep(&sep, ","));) { in mitigations_set()
|
/linux-6.3-rc2/mm/kasan/ |
A D | report_generic.c | 214 const char *sep = strchr(*frame_descr, ' '); in tokenize_frame_descr() local 216 if (sep == NULL) in tokenize_frame_descr() 217 sep = *frame_descr + strlen(*frame_descr); in tokenize_frame_descr() 220 const size_t tok_len = sep - *frame_descr; in tokenize_frame_descr() 233 *frame_descr = sep + 1; in tokenize_frame_descr()
|
/linux-6.3-rc2/drivers/dma-buf/ |
A D | selftest.c | 49 char *filter, *sep, *tok; in apply_subtest_filter() local 53 for (sep = filter; (tok = strsep(&sep, ","));) { in apply_subtest_filter()
|
/linux-6.3-rc2/tools/lib/perf/ |
A D | cpumap.c | 118 char sep; in perf_cpu_map__read() local 120 sep = 0; in perf_cpu_map__read() 123 n = fscanf(file, "%u%c", &cpu, &sep); in perf_cpu_map__read() 152 if (n == 2 && sep == '-') in perf_cpu_map__read() 156 if (n == 1 || sep == '\n') in perf_cpu_map__read()
|
/linux-6.3-rc2/scripts/ |
A D | ver_linux | 55 mods = mods sep $1 56 sep = " "
|
/linux-6.3-rc2/rust/alloc/ |
A D | slice.rs | 643 pub fn join<Separator>(&self, sep: Separator) -> <Self as Join<Separator>>::Output in join() 647 Join::join(self, sep) in join() 663 pub fn connect<Separator>(&self, sep: Separator) -> <Self as Join<Separator>>::Output in connect() 667 Join::join(self, sep) in connect() 769 fn join(slice: &Self, sep: Separator) -> Self::Output; in join() 792 fn join(slice: &Self, sep: &T) -> Vec<T> { in join() 803 result.push(sep.clone()); in join() 815 fn join(slice: &Self, sep: &[T]) -> Vec<T> { in join() 822 slice.iter().map(|v| v.borrow().len()).sum::<usize>() + sep.len() * (slice.len() - 1); in join() 827 result.extend_from_slice(sep); in join()
|
/linux-6.3-rc2/tools/testing/selftests/rcutorture/formal/srcu-cbmc/ |
A D | modify_srcu.awk | 98 function update_fieldsep(sep, p) { 100 sep_tmp = sep; 134 last_fs = sep;
|