Searched refs:sep (Results 1 - 25 of 100) sorted by relevance

1234

/linux-master/arch/sh/kernel/
H A Dnmi_debug.c47 char *p, *sep; local
54 for (p = str + 1; *p; p = sep + 1) {
55 sep = strchr(p, ',');
56 if (sep)
57 *sep = 0;
69 if (!sep)
/linux-master/drivers/parport/
H A Dprobe.c66 char *sep; local
69 sep = strchr(p, ':');
70 if (sep) {
72 *(sep++) = 0;
74 u = sep + strlen (sep) - 1;
80 info->mfr = kstrdup(sep, GFP_KERNEL);
83 info->model = kstrdup(sep, GFP_KERNEL);
88 info->class_name = kstrdup(sep, GFP_KERNEL);
89 string_upper(sep, se
[all...]
/linux-master/fs/smb/client/
H A Ddns_resolve.c34 const char *hostname, *sep; local
52 sep = memchr(hostname, '/', len);
53 if (sep)
54 len = sep - hostname;
/linux-master/samples/pktgen/
H A Dfunctions.sh185 local sep=: sep2=::
186 local sep_cnt=$(tr -cd $sep <<< $1 | wc -c)
195 shrink=( $(grep -E -o "$sep{2,}" <<< $addr) )
203 [[ ${addr:0:1} == $sep ]] && addr=0${addr}
204 [[ ${addr: -1} == $sep ]] && addr=${addr}0
217 local addr sep
230 [[ $IP6 ]] && sep=: || sep=.
231 IFS=$sep read -a addr <<< $net
278 local ip sep
[all...]
/linux-master/tools/perf/util/
H A Dintlist.c97 char *sep; local
101 unsigned long value = strtol(s, &sep, 10);
103 if (*sep != ',' && *sep != '\0')
108 s = sep + 1;
109 } while (*sep != '\0');
H A Dstrlist.c144 char *sep; local
147 while ((sep = strchr(s, ',')) != NULL) {
148 *sep = '\0';
150 *sep = ',';
153 s = sep + 1;
H A Dpfm.c41 const char *sep; local
56 sep = p ? str + (p - p_orig - 1) : "";
57 if (*sep == '{') {
68 if (*sep == '}') {
110 if (*sep == '}') {
/linux-master/tools/perf/ui/tui/
H A Dutil.c85 const char *sep = strchr(t, '\n'); local
87 if (sep == NULL)
88 sep = strchr(t, '\0');
89 len = sep - t;
93 if (*sep == '\0')
95 t = sep + 1;
175 const char *sep = strchr(t, '\n'); local
178 if (sep == NULL)
179 sep = strchr(t, '\0');
180 len = sep
[all...]
/linux-master/scripts/dtc/
H A Dfdtput.c153 const char *sep; local
160 for (sep = path; *sep; path = sep + 1, offset = node) {
162 sep = strchr(path, '/');
163 if (!sep)
164 sep = path + strlen(path);
167 sep - path);
170 sep - path);
173 report_error(path, sep
[all...]
/linux-master/tools/bpf/bpftool/
H A Djson_writer.c25 char sep; /* either nul or comma */ member in struct:json_writer
49 if (self->sep != '\0')
50 putc(self->sep, self->out);
51 self->sep = ',';
97 self->sep = '\0';
122 self->sep = '\0';
131 self->sep = '\0';
139 if (self->sep != '\0')
142 self->sep = ',';
151 self->sep
[all...]
/linux-master/tools/testing/selftests/bpf/
H A Djson_writer.c25 char sep; /* either nul or comma */ member in struct:json_writer
49 if (self->sep != '\0')
50 putc(self->sep, self->out);
51 self->sep = ',';
97 self->sep = '\0';
122 self->sep = '\0';
131 self->sep = '\0';
139 if (self->sep != '\0')
142 self->sep = ',';
151 self->sep
[all...]
/linux-master/drivers/block/drbd/
H A Ddrbd_debugfs.c34 bool is_set, char *sep, const char *set_name, const char *unset_name)
37 seq_putc(m, *sep);
39 *sep = '|';
41 seq_putc(m, *sep);
43 *sep = '|';
48 bool is_set, char *sep, const char *set_name)
50 __seq_print_rq_state_bit(m, is_set, sep, set_name, NULL);
57 char sep = ' '; local
63 seq_print_rq_state_bit(m, s & RQ_IN_ACT_LOG, &sep, "in-AL");
64 seq_print_rq_state_bit(m, s & RQ_POSTPONED, &sep, "postpone
33 __seq_print_rq_state_bit(struct seq_file *m, bool is_set, char *sep, const char *set_name, const char *unset_name) argument
47 seq_print_rq_state_bit(struct seq_file *m, bool is_set, char *sep, const char *set_name) argument
233 char sep = ' '; local
[all...]
/linux-master/drivers/gpu/drm/i915/
H A Di915_mitigations.c33 char *str, *sep, *tok; local
43 for (sep = str; (tok = strsep(&sep, ","));) {
/linux-master/drivers/scsi/
H A Dscsi_debugfs.c20 bool sep = false; local
24 if (sep)
26 sep = true;
/linux-master/tools/testing/selftests/netfilter/
H A Dnft_audit.sh63 sep=""
66 cmd+="$sep add rule $table $chain counter"
67 sep=";"
H A Daudit_logread.c98 const char *sep = ""; local
123 printf("%s%s=%s", sep, k, v);
124 sep = " ";
126 if (*sep) {
/linux-master/tools/perf/scripts/python/
H A Dstackcollapse.py113 sep = "-"
115 comm = comm + sep + str(param_dict['sample']['pid'])
116 sep = "/"
118 comm = comm + sep + str(param_dict['sample']['tid'])
/linux-master/fs/cachefiles/
H A Dkey.c43 char *name, sep; local
90 sep = (nbe <= nle) ? 'S' : 'T'; /* Encoding indicator */
98 name[len++] = sep;
101 sep = ',';
/linux-master/scripts/
H A Dver_linux55 mods = mods sep $1
56 sep = " "
/linux-master/drivers/dma-buf/
H A Dselftest.c49 char *filter, *sep, *tok; local
53 for (sep = filter; (tok = strsep(&sep, ","));) {
/linux-master/scripts/dtc/libfdt/
H A Dfdt_overlay.c434 char *sep, *endptr; local
446 sep = memchr(fixup_str, ':', fixup_len);
447 if (!sep || *sep != ':')
450 path_len = sep - path;
455 name = sep + 1;
456 sep = memchr(name, ':', fixup_len);
457 if (!sep || *sep != ':')
460 name_len = sep
[all...]
/linux-master/tools/perf/ui/stdio/
H A Dhist.c332 const char *sep = symbol_conf.field_sep ?: ";"; local
347 ret += fprintf(fp, "%s%s", first ? "" : sep,
417 const char *sep = symbol_conf.field_sep; local
434 if (!sep || !first) {
435 ret = scnprintf(hpp->buf, hpp->size, "%s", sep ?: " ");
462 const char *sep = symbol_conf.field_sep; local
484 if (!sep || !first) {
485 ret = scnprintf(hpp->buf, hpp->size, "%s", sep ?: " ");
499 if (!sep)
523 printed += fprintf(fp, "%s%s", sep
619 print_hierarchy_indent(const char *sep, int indent, const char *line, FILE *fp) argument
642 const char *sep = symbol_conf.field_sep; local
732 const char *sep = symbol_conf.field_sep; local
760 const char *sep = symbol_conf.field_sep; local
823 const char *sep = symbol_conf.field_sep; local
[all...]
/linux-master/tools/perf/arch/s390/util/
H A Dheader.c111 char *sep = strchr(cp, '='); local
114 sizeof(version) - vssize, "%s", sep + 1);
118 char *sep = strchr(cp, '='); local
121 sizeof(authorization) - atsize, "%s", sep + 1);
/linux-master/mm/kasan/
H A Dreport_generic.c214 const char *sep = strchr(*frame_descr, ' '); local
216 if (sep == NULL)
217 sep = *frame_descr + strlen(*frame_descr);
220 const size_t tok_len = sep - *frame_descr;
233 *frame_descr = sep + 1;
/linux-master/kernel/trace/
H A Dtrace_boot.c224 char sep; local
234 sep = '=';
236 append_printf(bufp, end, "%c%s", sep, p);
237 if (sep == '=')
238 sep = ',';
253 char sep; local
279 sep = '(';
281 append_printf(bufp, end, "%c%s", sep, p);
282 if (sep == '(')
283 sep
[all...]

Completed in 1123 milliseconds

1234