/kernel/linux/linux-5.10/samples/pktgen/ |
D | functions.sh | 179 local sep=: sep2=:: 180 local sep_cnt=$(tr -cd $sep <<< $1 | wc -c) 189 shrink=( $(egrep -o "$sep{2,}" <<< $addr) ) 197 [[ ${addr:0:1} == $sep ]] && addr=0${addr} 198 [[ ${addr: -1} == $sep ]] && addr=${addr}0 211 local addr sep 224 [[ $IP6 ]] && sep=: || sep=. 225 IFS=$sep read -a addr <<< $net 272 local ip sep 275 [[ $IP6 ]] && sep=: || sep=. [all …]
|
/kernel/linux/linux-5.10/drivers/parport/ |
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() 84 info->mfr = kstrdup(sep, GFP_KERNEL); in parse_data() 87 info->model = kstrdup(sep, GFP_KERNEL); in parse_data() 92 info->class_name = kstrdup(sep, GFP_KERNEL); in parse_data() 93 for (u = sep; *u; u++) in parse_data() 96 if (!strcmp(classes[i].token, sep)) { in parse_data() [all …]
|
/kernel/linux/linux-5.10/tools/perf/ui/tui/ |
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() 175 const char *sep = strchr(t, '\n'); in __ui__info_window() local 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() [all …]
|
/kernel/linux/linux-5.10/arch/sh/kernel/ |
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()
|
/kernel/linux/linux-5.10/drivers/block/drbd/ |
D | drbd_debugfs.c | 34 bool is_set, char *sep, const char *set_name, const char *unset_name) in __seq_print_rq_state_bit() argument 37 seq_putc(m, *sep); in __seq_print_rq_state_bit() 39 *sep = '|'; in __seq_print_rq_state_bit() 41 seq_putc(m, *sep); in __seq_print_rq_state_bit() 43 *sep = '|'; in __seq_print_rq_state_bit() 48 bool is_set, char *sep, const char *set_name) in seq_print_rq_state_bit() argument 50 __seq_print_rq_state_bit(m, is_set, sep, set_name, NULL); in seq_print_rq_state_bit() 57 char sep = ' '; in seq_print_request_state() local 63 seq_print_rq_state_bit(m, s & RQ_IN_ACT_LOG, &sep, "in-AL"); in seq_print_request_state() 64 seq_print_rq_state_bit(m, s & RQ_POSTPONED, &sep, "postponed"); in seq_print_request_state() [all …]
|
/kernel/linux/linux-5.10/scripts/dtc/ |
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()
|
/kernel/linux/linux-5.10/tools/perf/ui/stdio/ |
D | hist.c | 332 const char *sep = symbol_conf.field_sep ?: ";"; in __callchain__fprintf_folded() local 347 ret += fprintf(fp, "%s%s", first ? "" : sep, in __callchain__fprintf_folded() 417 const char *sep = symbol_conf.field_sep; in __hist_entry__snprintf() local 434 if (!sep || !first) { in __hist_entry__snprintf() 435 ret = scnprintf(hpp->buf, hpp->size, "%s", sep ?: " "); 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() 485 ret = scnprintf(hpp->buf, hpp->size, "%s", sep ?: " "); in hist_entry__hierarchy_fprintf() 499 if (!sep) in hist_entry__hierarchy_fprintf() 523 printed += fprintf(fp, "%s%s", sep ?: " ", skip_spaces(buf)); in hist_entry__hierarchy_fprintf() [all …]
|
/kernel/linux/linux-5.10/tools/bpf/bpftool/ |
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()
|
/kernel/linux/linux-5.10/tools/perf/util/ |
D | intlist.c | 92 char *sep; in intlist__parse_list() local 96 long value = strtol(s, &sep, 10); in intlist__parse_list() 98 if (*sep != ',' && *sep != '\0') in intlist__parse_list() 103 s = sep + 1; in intlist__parse_list() 104 } while (*sep != '\0'); in intlist__parse_list()
|
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()
|
D | pfm.c | 39 const char *sep; in parse_libpfm_events_option() local 54 sep = p ? str + (p - p_orig - 1) : ""; in parse_libpfm_events_option() 55 if (*sep == '{') { in parse_libpfm_events_option() 99 if (*sep == '}') { in parse_libpfm_events_option()
|
D | srcline.c | 386 char *sep; in filename_split() local 388 sep = strchr(filename, '\n'); in filename_split() 389 if (sep) in filename_split() 390 *sep = '\0'; in filename_split() 395 sep = strchr(filename, ':'); in filename_split() 396 if (sep) { in filename_split() 397 *sep++ = '\0'; in filename_split() 398 *line_nr = strtoul(sep, NULL, 0); in filename_split()
|
/kernel/linux/linux-5.10/fs/cifs/ |
D | dns_resolve.c | 49 const char *hostname, *sep; in dns_resolve_server_name_to_ip() local 67 sep = memchr(hostname, '/', len); in dns_resolve_server_name_to_ip() 68 if (sep) in dns_resolve_server_name_to_ip() 69 len = sep - hostname; in dns_resolve_server_name_to_ip()
|
D | cifs_dfs_ref.c | 147 char sep = ','; in cifs_compose_mount_options() local 202 sep = sb_mountdata[4]; in cifs_compose_mount_options() 208 tkn_e = strchr(sb_mountdata + off, sep); in cifs_compose_mount_options() 233 if (mountdata[strlen(mountdata) - 1] != sep) in cifs_compose_mount_options() 234 strncat(mountdata, &sep, 1); in cifs_compose_mount_options()
|
D | dfs_cache.c | 325 char sep = path[0]; in is_sysvol_or_netlogon() local 327 s = strchr(path + 1, sep) + 1; in is_sysvol_or_netlogon() 531 char sep; in lookup_cache_entry() local 538 sep = *npath; in lookup_cache_entry() 539 while ((s = strchr(s, sep)) && ++cnt < 3) in lookup_cache_entry() 559 while (e > s && *e == sep) in lookup_cache_entry() 575 while (e > s && *e != sep) in lookup_cache_entry() 1337 char *s, sep, *p; in dfs_cache_get_tgt_share() local 1347 sep = it->it_name[0]; in dfs_cache_get_tgt_share() 1348 if (sep != '\\' && sep != '/') in dfs_cache_get_tgt_share() [all …]
|
/kernel/linux/linux-5.10/scripts/dtc/libfdt/ |
D | fdt_overlay.c | 449 char *sep, *endptr; in overlay_fixup_phandle() local 461 sep = memchr(fixup_str, ':', fixup_len); in overlay_fixup_phandle() 462 if (!sep || *sep != ':') in overlay_fixup_phandle() 465 path_len = sep - path; in overlay_fixup_phandle() 470 name = sep + 1; in overlay_fixup_phandle() 471 sep = memchr(name, ':', fixup_len); in overlay_fixup_phandle() 472 if (!sep || *sep != ':') in overlay_fixup_phandle() 475 name_len = sep - name; in overlay_fixup_phandle() 479 poffset = strtoul(sep + 1, &endptr, 10); in overlay_fixup_phandle() 480 if ((*endptr != '\0') || (endptr <= (sep + 1))) in overlay_fixup_phandle()
|
/kernel/linux/linux-5.10/tools/perf/scripts/python/ |
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'])
|
/kernel/linux/linux-5.10/drivers/scsi/ |
D | scsi_debugfs.c | 20 bool sep = false; in scsi_flags_show() local 24 if (sep) in scsi_flags_show() 26 sep = true; in scsi_flags_show()
|
/kernel/linux/linux-5.10/tools/perf/arch/s390/util/ |
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()
|
/kernel/linux/linux-5.10/drivers/gpu/drm/i915/ |
D | i915_mitigations.c | 32 char *str, *sep, *tok; in mitigations_set() local 42 for (sep = str; (tok = strsep(&sep, ","));) { in mitigations_set()
|
/kernel/linux/linux-5.10/drivers/dma-buf/ |
D | selftest.c | 49 char *filter, *sep, *tok; in apply_subtest_filter() local 53 for (sep = filter; (tok = strsep(&sep, ","));) { in apply_subtest_filter()
|
/kernel/linux/linux-5.10/tools/perf/ |
D | builtin-list.c | 66 char *sep, *s; in cmd_list() local 92 else if ((sep = strchr(argv[i], ':')) != NULL) { in cmd_list() 95 sep_idx = sep - argv[i]; in cmd_list()
|
/kernel/linux/linux-5.10/tools/lib/perf/ |
D | cpumap.c | 106 char sep; in perf_cpu_map__read() local 108 sep = 0; in perf_cpu_map__read() 111 n = fscanf(file, "%u%c", &cpu, &sep); in perf_cpu_map__read() 140 if (n == 2 && sep == '-') in perf_cpu_map__read() 144 if (n == 1 || sep == '\n') in perf_cpu_map__read()
|
/kernel/linux/linux-5.10/scripts/ |
D | ver_linux | 58 mods = mods sep $1 59 sep = " "
|
/kernel/linux/linux-5.10/tools/testing/selftests/rcutorture/formal/srcu-cbmc/ |
D | modify_srcu.awk | 98 function update_fieldsep(sep, p) { 100 sep_tmp = sep; 134 last_fs = sep;
|