HomeSort by: relevance | last modified time | path
    Searched refs:strsep (Results 1 - 25 of 244) sorted by relevancy

1 2 3 4 5 6 7 8 910

  /src/external/bsd/mdocml/dist/
test-strsep.c 8 char *retp = strsep(&workp, "xy");
compat_strsep.c 2 /* $OpenBSD: strsep.c,v 1.8 2015/08/31 02:53:57 guenther Exp $ */
43 * If *stringp is NULL, strsep returns NULL.
46 strsep(char **stringp, const char *delim) function
  /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/crypto/external/bsd/heimdal/dist/lib/roken/
strsep.c 1 /* $NetBSD: strsep.c,v 1.2 2017/01/28 21:31:50 christos Exp $ */
45 strsep(char **str, const char *delim) function
  /src/external/bsd/tcpdump/dist/
interface.h 51 extern char *strsep(char **, const char *);
  /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...]
  /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/external/bsd/libfido2/dist/openbsd-compat/
strsep.c 1 /* $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
  /src/external/bsd/nvi/dist/clib/
strsep.c 37 static const char sccsid[] = "@(#)strsep.c 8.1 (Berkeley) 6/4/93";
40 __RCSID("$NetBSD: strsep.c,v 1.2 2014/01/26 21:43:45 christos Exp $");
55 * If *stringp is NULL, strsep returns NULL.
58 * PUBLIC: char *strsep __P((char **, const char *));
62 strsep(register char **stringp, register const char *delim) function
  /src/external/bsd/tcpdump/dist/missing/
strsep.c 51 * If *stringp is NULL, strsep returns NULL.
54 strsep(char **stringp, const char *delim) function
  /src/external/bsd/unbound/dist/compat/
strsep.c 2 * strsep implementation for compatibility.
48 char *strsep(char **stringp, const char *delim) function
  /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...]
  /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(&notcomment, ","))) {
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/external/bsd/libbind/dist/bsd/
strsep.c 1 /* $NetBSD: strsep.c,v 1.1.1.2 2012/09/09 16:07:43 christos Exp $ */
4 static const char sccsid[] = "strsep.c 8.1 (Berkeley) 6/4/93";
5 static const char rcsid[] = "Id: strsep.c,v 1.2 2005/04/27 04:56:12 sra Exp ";
60 * If *stringp is NULL, strsep returns NULL.
63 strsep(char **stringp, const char *delim) { function
  /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/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/sys/openbsd/
string.d 26 char* strsep(char**, scope const char*);
  /src/crypto/external/bsd/openssh/dist/
addrmatch.c 60 while ((cp = strsep(&list, ",")) != NULL) {
120 while ((cp = strsep(&list, ",")) != NULL) {
match.c 280 for ((p = strsep(&sp, SEP)), i=0; p && *p != '\0';
281 (p = strsep(&sp, SEP)), i++) {
289 for ((p = strsep(&cp, SEP)), i=0; p && *p != '\0';
290 (p = strsep(&cp, SEP)), i++) {
334 while ((cp = strsep(&tmp, ",")) != NULL) {
kex-names.c 166 for ((p = strsep(&cp, ",")); p && *p != '\0';
167 (p = strsep(&cp, ","))) {
214 for ((p = strsep(&cp, ",")); p && *p != '\0'; (p = strsep(&cp, ","))) {
293 while ((cp = strsep(&patterns, ",")) != NULL) {
  /src/crypto/external/bsd/heimdal/dist/kadmin/
load.c 162 p = strsep(&str, ":");
166 p = strsep(&str, ":");
182 p = strsep(&str, ":");
186 p = strsep(&str, ":");
195 p = strsep(&str, ":");
232 p = strsep(&str, ":");
250 p = strsep(&s, ":");
253 p = strsep(&s, ":");
301 p = strsep(&str, ":");
304 p = strsep(&str, ":")
    [all...]
  /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/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, "$");

Completed in 24 milliseconds

1 2 3 4 5 6 7 8 910