/src/lib/libc/gen/ |
pw_scan.c | 155 if (!(pw->pw_name = strsep(&bp, ":"))) /* login */ 166 if (!(pw->pw_passwd = strsep(&bp, ":"))) /* passwd */ 169 if (!(p = strsep(&bp, ":"))) /* uid */ 184 if (!(p = strsep(&bp, ":"))) /* gid */ 199 pw->pw_class = strsep(&bp, ":"); /* class */ 200 if (!(p = strsep(&bp, ":"))) /* change */ 206 if (!(p = strsep(&bp, ":"))) /* expire */ 213 pw->pw_gecos = strsep(&bp, ":"); /* gecos */ 214 pw->pw_dir = strsep(&bp, ":"); /* directory */ 215 if (!(pw->pw_shell = strsep(&bp, ":"))) /* shell * [all...] |
/src/usr.sbin/mtree/ |
getid.c | 258 _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(&bp, ":"))) /* expire * [all...] |
mtree.c | 153 while ((p = strsep(&optarg, " \t,")) != NULL) 158 while ((p = strsep(&optarg, " \t,")) != NULL) 201 while ((p = strsep(&optarg, " \t,")) != NULL)
|
/src/common/lib/libc/string/ |
strsep.c | 1 /* $NetBSD: strsep.c,v 1.3 2007/06/04 18:19:28 christos Exp $ */ 35 static char sccsid[] = "@(#)strsep.c 8.1 (Berkeley) 6/4/93"; 37 __RCSID("$NetBSD: strsep.c,v 1.3 2007/06/04 18:19:28 christos Exp $"); 48 __weak_alias(strsep,_strsep) 66 * If *stringp is NULL, strsep returns NULL. 69 strsep(char **stringp, const char *delim)
|
/src/distrib/utils/libhack/ |
getpwent.c | 243 pwd->pw_name = strsep(&bp, ":\n"); /* name */ 247 pwd->pw_passwd = strsep(&bp, ":\n"); /* passwd */ 249 if (!(cp = strsep(&bp, ":\n"))) /* uid */ 258 if (!(cp = strsep(&bp, ":\n"))) /* gid */ 265 if (!(pwd->pw_class = strsep(&bp, ":"))) /* class */ 267 if (!(ep = strsep(&bp, ":"))) /* change */ 269 if (!(ep = strsep(&bp, ":"))) /* expire */ 272 if (!(pwd->pw_gecos = strsep(&bp, ":\n"))) /* gecos */ 274 if (!(pwd->pw_dir = strsep(&bp, ":\n"))) /* directory */ 276 if (!(pwd->pw_shell = strsep(&bp, ":\n"))) /* shell * [all...] |
getgrent.c | 294 _gr_group.gr_name = strsep(&bp, ":\n"); 297 _gr_group.gr_passwd = strsep(&bp, ":\n"); 298 if (!(cp = strsep(&bp, ":\n")))
|
/src/lib/libc/posix1e/ |
acl_from_text.c | 95 tag = strsep(&entry, ":"); 110 qualifier = strsep(&entry, ":"); 118 permission = strsep(&entry, ":"); 213 while ((line = strsep(&cur, "\n"))) { 216 notcomment = strsep(&comment, "#"); 219 while ((entry = strsep(¬comment, ","))) {
|
acl_from_text_nfs4.c | 223 field = strsep(&str, ":"); 241 qualifier_field = field = strsep(&str, ":"); 249 field = strsep(&str, ":"); 258 field = strsep(&str, ":"); 266 field = strsep(&str, ":");
|
/src/tests/lib/libc/stdlib/ |
h_getopt_long.c | 105 longopt = strsep(&ptr, ","); 112 longopt = strsep(&ptr, ","); 129 longopt = strsep(&ptr, ","); 135 longopt = strsep(&ptr, ",");
|
/src/usr.sbin/mailwrapper/ |
mailwrapper.c | 116 if ((from = strsep(&cp, WS)) == NULL) 121 if ((to = strsep(&cp, WS)) == NULL) 125 for (ap = strsep(&cp, WS); ap != NULL; 126 ap = strsep(&cp, WS))
|
/src/usr.bin/ypcat/ |
ypalias_init.c | 87 if ((ypa[i].alias = strsep(&line, " \t\n")) == NULL || 88 (ypa[i].name = strsep(&line, " \t\n")) == NULL ||
|
/src/usr.bin/quota/ |
printquota.c | 205 cur = strsep(&next, "Ww"); 212 cur = strsep(&next, "Dd"); 219 cur = strsep(&next, "Hh"); 226 cur = strsep(&next, "Mm"); 233 cur = strsep(&next, "Ss");
|
/src/usr.bin/finger/ |
util.c | 115 if (!(p = strsep(&bp, ","))) 120 while ((p = strsep(&bp, "\t "))) 413 if (!(p = strsep(&bp, ","))) 417 pn->office = ((p = strsep(&bp, ",")) && *p) ? 419 pn->officephone = ((p = strsep(&bp, ",")) && *p) ? 421 pn->homephone = ((p = strsep(&bp, ",")) && *p) ?
|
/src/lib/libcrypt/ |
crypt-argon2.c | 267 a = strsep(&inp, "$"); 286 a = strsep(&inp, "$"); 297 a = strsep(&inp, "$"); 311 while ((p = strsep(&a, ","))) { 344 a = strsep(&inp, "$"); 359 a = strsep(&inp, "$");
|
/src/usr.bin/chpass/ |
edit.c | 131 p = strsep(&bp, ","); 133 p = strsep(&bp, ","); 135 p = strsep(&bp, ","); 137 p = strsep(&bp, ",");
|
/src/usr.bin/pwhash/ |
pwhash.c | 146 key = strsep(&opt, ","); 154 key = strsep(&opt, ",");
|
/src/bin/stty/ |
gfmt.c | 83 p = strsep(&s, ":\0");
|
/src/usr.bin/systat/ |
cmds.c | 61 cmd = strsep(&args, " \t");
|
/src/usr.sbin/fwctl/ |
eui64.c | 115 while ((cur = strsep(&line, " \t\r\n")) != NULL) { 125 while ((cur = strsep(&line, " \t\r\n")) != NULL) { 135 while ((cur = strsep(&line, " \t\r\n")) != NULL) {
|
/src/usr.sbin/ypserv/revnetgroup/ |
parse_netgroup.c | 221 gpos = strsep(&pos, ")"); 226 if ((spos = strsep(&gpos, ","))) { 274 spos = strsep(&pos, ", \t");
|
/src/lib/libform/ |
type_ipv4.c | 103 p = strsep(&buf, ".");
|
/src/lib/libutil/ |
stat_flags.c | 137 while ((p = strsep(&string, "\t ,")) != NULL) {
|
/src/sbin/ldconfig/ |
shlib.c | 33 char *strsep();
|
/src/sbin/mount_puffs/ |
mount_puffs.c | 175 char *program = strsep(&source, "#");
|
/src/sbin/sysctl/ |
pathconf.c | 206 if (namelist->list == 0 || (name = strsep(bufp, ".")) == NULL) {
|