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

12345678910

/freebsd-9.3-release/lib/libc/gen/
H A Dpw_scan.c82 if (!(pw->pw_name = strsep(&bp, ":"))) /* login */
88 if (!(pw->pw_passwd = strsep(&bp, ":"))) /* passwd */
93 if (!(p = strsep(&bp, ":"))) /* uid */
128 if (!(p = strsep(&bp, ":"))) /* gid */
159 if (!(pw->pw_class = strsep(&bp, ":"))) /* class */
164 if (!(p = strsep(&bp, ":"))) /* change */
170 if (!(p = strsep(&bp, ":"))) /* expire */
176 if (!(pw->pw_gecos = strsep(&bp, ":"))) /* gecos */
181 if (!(pw->pw_dir = strsep(&bp, ":"))) /* directory */
186 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')
155 while ((cp = strsep(&p, " \t\n")) != NULL && *cp == '\0')
159 while ((cp = strsep(&p, " \t\n")) != NULL && *cp == '\0')
162 while ((cp = strsep(&p, " \t\n")) != NULL && *cp == '\0')
169 while ((cp = strsep(
[all...]
H A Dcheck_utility_compat.c66 while ((p = strsep(&bp, ",")) != NULL) {
/freebsd-9.3-release/crypto/heimdal/lib/kafs/
H A Droken_rename.h61 #define strsep _kafs_strsep macro
/freebsd-9.3-release/crypto/heimdal/lib/roken/
H A Dstrsep.c36 RCSID("$Id: strsep.c 14773 2005-04-12 11:29:18Z lha $");
46 strsep(char **str, const char *delim) function
/freebsd-9.3-release/contrib/mtree/
H A Dgetid.c250 _gr_group.gr_name = strsep(&bp, ":\n");
253 _gr_group.gr_passwd = strsep(&bp, ":\n");
254 if (!(cp = strsep(&bp, ":\n")))
390 _pw_passwd.pw_name = strsep(&bp, ":\n"); /* name */
394 _pw_passwd.pw_passwd = strsep(&bp, ":\n"); /* passwd */
396 if (!(cp = strsep(&bp, ":\n"))) /* uid */
405 if (!(cp = strsep(&bp, ":\n"))) /* gid */
412 if (!(ep = strsep(&bp, ":"))) /* class */
414 if (!(ep = strsep(&bp, ":"))) /* change */
416 if (!(ep = strsep(
[all...]
/freebsd-9.3-release/lib/libc/mips/string/
H A DMakefile.inc7 strncat.c strncmp.c strncpy.c strpbrk.c strsep.c \
/freebsd-9.3-release/usr.bin/tset/
H A Dwrterm.c65 while ((p = strsep(&bp, "|")) != NULL)
76 while ((p = strsep(&t, ":")) != NULL) {
/freebsd-9.3-release/contrib/nvi/clib/
H A Dstrsep.c37 static const char sccsid[] = "@(#)strsep.c 8.1 (Berkeley) 6/4/93";
52 * If *stringp is NULL, strsep returns NULL.
55 * PUBLIC: char *strsep __P((char **, const char *));
59 strsep(stringp, delim) function
/freebsd-9.3-release/contrib/tcpdump/missing/
H A Dstrsep.c36 "@(#) $Header: /tcpdump/master/tcpdump/missing/strsep.c,v 1.3 2003-03-25 08:33:48 guy Exp $ (LBL)";
56 * If *stringp is NULL, strsep returns NULL.
59 strsep(char **stringp, const char *delim) function
/freebsd-9.3-release/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-9.3-release/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-9.3-release/lib/libdisk/
H A Dopen_ia64_disk.c61 p = strsep(&conftxt, " "); /* media size */
66 p = strsep(&conftxt, " "); /* sector size */
149 q = strsep(&p, " ");
151 q = strsep(&p, " ");
153 q = strsep(&p, " ");
185 sd = strsep(&p, " "); /* depth */
189 q = strsep(&p, " "); /* type */
193 chunk.name = strsep(&p, " "); /* name */
195 q = strsep(&p, " "); /* length */
201 q = strsep(
[all...]
H A Dopen_disk.c58 a = strsep(&p, " ");
64 a = strsep(&p, " ");
68 a = strsep(&p, " ");
84 a = strsep(&p, " "); /* length in bytes */
92 a = strsep(&p, " "); /* sectorsize */
111 a = strsep(&p, " ");
114 b = strsep(&p, " ");
148 a = strsep(&p, " "); /* Index */
162 t = strsep(&p, " "); /* Type {SUN, BSD, MBR, PC98, GPT} */
163 n = strsep(
[all...]
/freebsd-9.3-release/libexec/mknetid/
H A Dparse_group.c124 if ((_gr_group.gr_name = strsep(&bp, ":\n")) == NULL)
128 if ((_gr_group.gr_passwd = strsep(&bp, ":\n")) == NULL)
130 if (!(cp = strsep(&bp, ":\n")))
/freebsd-9.3-release/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-9.3-release/usr.bin/rctl/
H A Drctl.c104 subject = strsep(&rule, ":");
105 textid = strsep(&rule, ":");
155 subject = strsep(&copy, ":");
156 subject_id = strsep(&copy, ":");
157 resource = strsep(&copy, ":");
158 action = strsep(&copy, "=/");
159 amount = strsep(&copy, "/");
197 subject = strsep(&rule, ":");
198 textid = strsep(&rule, ":");
253 subject = strsep(
[all...]
/freebsd-9.3-release/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-9.3-release/usr.sbin/bsdinstall/partedit/
H A Dscripted.c116 while ((partition = strsep(&config, ",")) != NULL) {
117 while ((ap = strsep(&partition, " \t\n")) != NULL) {
173 disk = strsep(&input, " \t\n");
175 scheme = strsep(&input, " \t\n");
178 strsep(&input, " \t\n"));
205 while ((token = strsep(&input, ";")) != NULL) {
/freebsd-9.3-release/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-9.3-release/usr.sbin/mailwrapper/
H A Dmailwrapper.c129 if ((from = strsep(&cp, WS)) == NULL || cp == NULL)
134 if ((to = strsep(&cp, WS)) == NULL)
138 for (ap = strsep(&cp, WS); ap != NULL;
139 ap = strsep(&cp, WS)) {
/freebsd-9.3-release/crypto/heimdal/kadmin/
H A Dload.c160 p = strsep(&str, ":");
164 p = strsep(&str, ":");
180 p = strsep(&str, ":");
184 p = strsep(&str, ":");
193 p = strsep(&str, ":");
230 p = strsep(&str, ":");
248 p = strsep(&s, ":");
251 p = strsep(&s, ":");
299 p = strsep(&str, ":");
302 p = strsep(
[all...]
/freebsd-9.3-release/crypto/openssh/
H A Dmatch.c251 for ((p = strsep(&sp, SEP)), i=0; p && *p != '\0';
252 (p = strsep(&sp, SEP)), i++) {
260 for ((p = strsep(&cp, SEP)), i=0; p && *p != '\0';
261 (p = strsep(&cp, SEP)), i++) {
/freebsd-9.3-release/usr.sbin/bsdinstall/distextract/
H A Ddistextract.c64 dists[i] = strsep(&diststring, " \t");
111 tok1 = strsep(&tok2, "\t");
119 tok1 = strsep(&tok2, "\t");
120 tok1 = strsep(&tok2, "\t");

Completed in 239 milliseconds

12345678910