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

12

/barrelfish-master/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')
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) {
H A Dstrtofflags.c140 while ((p = strsep(&string, "\t ,")) != NULL) {
H A Dexec.c178 while ((p = strsep(&cur, ":")) != NULL) {
H A Dgetttyent.c88 while ((cons = strsep(&nextcons, ",")) != NULL && strlen(cons) != 0) {
H A Dgetgrent.c1524 (grp->gr_name = strsep(&line, ":")) == NULL ||
1526 (grp->gr_passwd = strsep(&line, ":")) == NULL ||
1527 (s_gid = strsep(&line, ":")) == NULL ||
1537 p = strsep(&s_mem, ",");
H A Dgetnetgrent.c718 gpos = strsep(&pos, ")");
723 if ((spos = strsep(&gpos, ",")) == NULL) {
776 spos = strsep(&pos, ", \t");
/barrelfish-master/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
H A DMakefile.inc18 strpbrk.c strrchr.c strsep.c strsignal.c strspn.c strstr.c strtok.c \
39 string.3 strlcpy.3 strlen.3 strmode.3 strpbrk.3 strsep.3 \
/barrelfish-master/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, ":");
H A Dmac.c159 token = strsep(string, " \t");
161 token = strsep(string, " \t");
201 parse = strsep(&comment, "#");
H A Dacl_support_nfs4.c151 flag = strsep(&str, "/:");
/barrelfish-master/lib/libc/rpc/
H A Dgetpublickey.c142 mkey = strsep(&res, "\t ");
149 mval = strsep(&res, " \t#\n");
H A Dnetnamer.c88 p = strsep(&res, ":");
92 p = strsep(&res, "\n,");
98 p = strsep(&res, "\n,");
297 mkey = strsep(&res, "\t ");
304 mval = strsep(&res, " \t#\n");
/barrelfish-master/include/
H A Dstring.h112 char *strsep(char **, const char *);
/barrelfish-master/lib/libc/net/
H A Deui64.c107 while ((cur = strsep(&line, " \t\r\n")) != NULL) {
117 while ((cur = strsep(&line, " \t\r\n")) != NULL) {
127 while ((cur = strsep(&line, " \t\r\n")) != NULL) {
/barrelfish-master/lib/libc/tests/nss/
H A Dgetaddrinfo_test.c227 while ((s = strsep(&ps, ".")) != NULL) {
254 while ((s = strsep(&ps, " ")) != NULL) {
320 s = strsep(&ps, ":");
329 while ((s = strsep(&ps, ":")) != NULL) {
H A Dgetgr_test.c217 while ((s = strsep(&ps, " ")) != NULL) {
H A Dgetproto_test.c210 while ( (s = strsep(&ps, " ")) != NULL) {
H A Dgetpw_test.c169 while ((s = strsep(&ps, ":")) != NULL) {
H A Dgetrpc_test.c211 while ((s = strsep(&ps, " ")) != NULL) {
H A Dgetserv_test.c215 while ( (s = strsep(&ps, " ")) != NULL) {
/barrelfish-master/lib/libc/nls/
H A Dmsgcat.c192 while ((nlspath = strsep(&cptr, ":")) != NULL) {

Completed in 89 milliseconds

12