Searched refs:strsep (Results 1 - 25 of 267) sorted by relevance

1234567891011

/freebsd-11-stable/contrib/mdocml/
H A Dtest-strsep.c8 char *retp = strsep(&workp, "xy");
H A Dcompat_strsep.c10 /* $OpenBSD: strsep.c,v 1.7 2014/02/05 20:42:32 stsp Exp $ */
50 * If *stringp is NULL, strsep returns NULL.
53 strsep(char **stringp, const char *delim) function
/freebsd-11-stable/lib/libc/gen/
H A Dpw_scan.c98 if (!(pw->pw_name = strsep(&bp, ":"))) /* login */
104 if (!(pw->pw_passwd = strsep(&bp, ":"))) /* passwd */
109 if (!(p = strsep(&bp, ":"))) /* uid */
144 if (!(p = strsep(&bp, ":"))) /* gid */
175 if (!(pw->pw_class = strsep(&bp, ":"))) /* class */
180 if (!(p = strsep(&bp, ":"))) /* change */
186 if (!(p = strsep(&bp, ":"))) /* expire */
192 if (!(pw->pw_gecos = strsep(&bp, ":"))) /* gecos */
197 if (!(pw->pw_dir = strsep(&bp, ":"))) /* directory */
202 if (!(pw->pw_shell = strsep(
[all...]
H A Dfstab.c128 _fs_fstab.fs_spec = strsep(&p, ":\n");
129 _fs_fstab.fs_file = strsep(&p, ":\n");
131 _fs_fstab.fs_type = strsep(&p, ":\n");
139 if ((cp = strsep(&p, ":\n")) != NULL) {
141 if ((cp = strsep(&p, ":\n")) != NULL) {
150 while ((cp = strsep(&p, " \t\n")) != NULL && *cp == '\0')
157 while ((cp = strsep(&p, " \t\n")) != NULL && *cp == '\0')
165 while ((cp = strsep(&p, " \t\n")) != NULL && *cp == '\0')
168 while ((cp = strsep(&p, " \t\n")) != NULL && *cp == '\0')
175 while ((cp = strsep(
[all...]
H A Dcheck_utility_compat.c66 while ((p = strsep(&bp, ",")) != NULL) {
/freebsd-11-stable/crypto/heimdal/lib/roken/
H A Dstrsep.c43 strsep(char **str, const char *delim) function
/freebsd-11-stable/contrib/mtree/
H A Dgetid.c258 _gr_group.gr_name = strsep(&bp, ":\n");
261 _gr_group.gr_passwd = strsep(&bp, ":\n");
262 if (!(cp = strsep(&bp, ":\n")))
405 _pw_passwd.pw_name = strsep(&bp, ":\n"); /* name */
409 _pw_passwd.pw_passwd = strsep(&bp, ":\n"); /* passwd */
411 if (!(cp = strsep(&bp, ":\n"))) /* uid */
420 if (!(cp = strsep(&bp, ":\n"))) /* gid */
427 if (!(ep = strsep(&bp, ":"))) /* class */
429 if (!(ep = strsep(&bp, ":"))) /* change */
431 if (!(ep = strsep(
[all...]
/freebsd-11-stable/usr.bin/tset/
H A Dwrterm.c65 while ((p = strsep(&bp, "|")) != NULL)
76 while ((p = strsep(&t, ":")) != NULL) {
/freebsd-11-stable/lib/libc/string/
H A Dstrsep.c31 static char sccsid[] = "@(#)strsep.c 8.1 (Berkeley) 6/4/93";
48 * If *stringp is NULL, strsep returns NULL.
51 strsep(char **stringp, const char *delim) function
/freebsd-11-stable/crypto/openssh/openbsd-compat/
H A Dstrsep.c1 /* $OpenBSD: strsep.c,v 1.6 2005/08/08 08:05:37 espie Exp $ */
32 /* OPENBSD ORIGINAL: lib/libc/string/strsep.c */
50 * If *stringp is NULL, strsep returns NULL.
53 strsep(char **stringp, const char *delim) function
/freebsd-11-stable/contrib/tcpdump/missing/
H A Dstrsep.c53 * If *stringp is NULL, strsep returns NULL.
56 strsep(char **stringp, const char *delim) function
/freebsd-11-stable/contrib/unbound/compat/
H A Dstrsep.c2 * strsep implementation for compatibility.
48 char *strsep(char **stringp, const char *delim) function
/freebsd-11-stable/libexec/mknetid/
H A Dparse_group.c120 if ((_gr_group.gr_name = strsep(&bp, ":\n")) == NULL)
124 if ((_gr_group.gr_passwd = strsep(&bp, ":\n")) == NULL)
126 if (!(cp = strsep(&bp, ":\n")))
/freebsd-11-stable/release/picobsd/tinyware/passwd/
H A Dpw_copy.c214 if (!(pw->pw_name = strsep(&bp, ":"))) /* login */
220 if (!(pw->pw_passwd = strsep(&bp, ":"))) /* passwd */
224 if (!(p = strsep(&bp, ":"))) /* uid */
249 if (!(p = strsep(&bp, ":"))) /* gid */
263 pw->pw_class = strsep(&bp, ":"); /* class */
266 if (!(p = strsep(&bp, ":"))) /* change */
271 if (!(p = strsep(&bp, ":"))) /* expire */
276 if (!(pw->pw_gecos = strsep(&bp, ":"))) /* gecos */
280 if (!(pw->pw_dir = strsep(&bp, ":"))) /* directory */
284 if (!(pw->pw_shell = strsep(
[all...]
/freebsd-11-stable/usr.bin/rctl/
H A Drctl.c129 subject = strsep(&copy, ":");
130 subject_id = strsep(&copy, ":");
131 resource = strsep(&copy, ":");
132 action = strsep(&copy, "=/");
133 amount = strsep(&copy, "/");
138 * The "copy" has already been tinkered with by strsep().
194 subject = strsep(&copy, ":");
195 textid = strsep(&copy, ":");
262 subject = strsep(&rule, ":");
263 textid = strsep(
[all...]
/freebsd-11-stable/lib/libc/posix1e/
H A Dacl_from_text.c93 tag = strsep(&entry, ":");
108 qualifier = strsep(&entry, ":");
116 permission = strsep(&entry, ":");
211 while ((line = strsep(&cur, "\n"))) {
214 notcomment = strsep(&comment, "#");
217 while ((entry = strsep(&notcomment, ","))) {
H A Dacl_from_text_nfs4.c216 field = strsep(&str, ":");
234 qualifier_field = field = strsep(&str, ":");
242 field = strsep(&str, ":");
251 field = strsep(&str, ":");
259 field = strsep(&str, ":");
/freebsd-11-stable/crypto/heimdal/lib/kafs/
H A DMakefile.am58 ROKEN_SRCS = resolve.c strtok_r.c strlcpy.c strsep.c
92 strsep.c:
93 $(LN_S) $(srcdir)/../roken/strsep.c .
/freebsd-11-stable/usr.sbin/bsdinstall/partedit/
H A Dscripted.c118 while ((partition = strsep(&config, ",")) != NULL) {
119 while ((ap = strsep(&partition, " \t\n")) != NULL) {
175 disk = strsep(&input, " \t\n");
177 scheme = strsep(&input, " \t\n");
180 strsep(&input, " \t\n"));
207 while ((token = strsep(&input, ";")) != NULL) {
/freebsd-11-stable/sys/libkern/
H A Dstrsep.c31 static char sccsid[] = "@(#)strsep.c 8.1 (Berkeley) 6/4/93";
48 * If *stringp is NULL, strsep returns NULL.
51 strsep(stringp, delim) function
/freebsd-11-stable/contrib/tcpdump/
H A Dinterface.h65 extern char *strsep(char **, const char *);
/freebsd-11-stable/crypto/openssh/
H A Dmatch.c266 for ((p = strsep(&sp, SEP)), i=0; p && *p != '\0';
267 (p = strsep(&sp, SEP)), i++) {
275 for ((p = strsep(&cp, SEP)), i=0; p && *p != '\0';
276 (p = strsep(&cp, SEP)), i++) {
316 while ((cp = strsep(&tmp, ",")) != NULL) {
/freebsd-11-stable/crypto/heimdal/kadmin/
H A Dload.c158 p = strsep(&str, ":");
162 p = strsep(&str, ":");
178 p = strsep(&str, ":");
182 p = strsep(&str, ":");
191 p = strsep(&str, ":");
228 p = strsep(&str, ":");
246 p = strsep(&s, ":");
249 p = strsep(&s, ":");
297 p = strsep(&str, ":");
300 p = strsep(
[all...]
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/stdlib/
H A Dh_getopt_long.c112 longopt = strsep(&ptr, ",");
119 longopt = strsep(&ptr, ",");
136 longopt = strsep(&ptr, ",");
142 longopt = strsep(&ptr, ",");
/freebsd-11-stable/usr.sbin/mailwrapper/
H A Dmailwrapper.c142 if ((from = strsep(&cp, WS)) == NULL || cp == NULL)
147 if ((to = strsep(&cp, WS)) == NULL)
151 for (ap = strsep(&cp, WS); ap != NULL;
152 ap = strsep(&cp, WS)) {

Completed in 137 milliseconds

1234567891011