Searched refs:stringp (Results 1 - 25 of 31) sorted by relevance

12

/freebsd-current/crypto/heimdal/lib/roken/
H A Dstrsep_copy.c42 /* strsep, but with const stringp, so return string in buf */
45 strsep_copy(const char **stringp, const char *delim, char *buf, size_t len) argument
47 const char *save = *stringp;
51 *stringp = *stringp + strcspn(*stringp, delim);
52 l = min(len, (size_t)(*stringp - save));
58 l = *stringp - save;
59 if(**stringp == '\0')
60 *stringp
[all...]
/freebsd-current/contrib/unbound/compat/
H A Dstrsep.c48 char *strsep(char **stringp, const char *delim) argument
52 if(stringp == NULL || *stringp == NULL)
54 orig = *stringp;
55 s = *stringp;
60 *stringp = s+1;
62 *stringp = NULL;
/freebsd-current/lib/libc/amd64/string/
H A Dstrsep.c39 strsep(char **stringp, const char *delim) argument
44 s = *stringp;
50 *stringp = NULL;
53 *stringp = s + n + 1;
/freebsd-current/contrib/mandoc/
H A Dcompat_strsep.c35 * Get next token from string *stringp, where tokens are possibly-empty
38 * Writes NULs into the string at *stringp to end tokens.
40 * On return, *stringp points past the last NUL written (if there might
43 * If *stringp is NULL, strsep returns NULL.
46 strsep(char **stringp, const char *delim) argument
53 if ((s = *stringp) == NULL)
64 *stringp = s;
/freebsd-current/crypto/openssh/openbsd-compat/
H A Dstrsep.c42 * Get next token from string *stringp, where tokens are possibly-empty
45 * Writes NULs into the string at *stringp to end tokens.
47 * On return, *stringp points past the last NUL written (if there might
50 * If *stringp is NULL, strsep returns NULL.
53 strsep(char **stringp, const char *delim) argument
60 if ((s = *stringp) == NULL)
71 *stringp = s;
H A Dopenbsd-compat.h185 char *strsep(char **stringp, const char *delim);
/freebsd-current/contrib/tcpdump/missing/
H A Dstrsep.c45 * Get next token from string *stringp, where tokens are possibly-empty
48 * Writes NULs into the string at *stringp to end tokens.
50 * On return, *stringp points past the last NUL written (if there might
53 * If *stringp is NULL, strsep returns NULL.
56 strsep(char **stringp, const char *delim) argument
63 if ((s = *stringp) == NULL)
74 *stringp = s;
/freebsd-current/contrib/libfido2/openbsd-compat/
H A Dstrsep.c42 * Get next token from string *stringp, where tokens are possibly-empty
45 * Writes NULs into the string at *stringp to end tokens.
47 * On return, *stringp points past the last NUL written (if there might
50 * If *stringp is NULL, strsep returns NULL.
53 strsep(char **stringp, const char *delim) argument
60 if ((s = *stringp) == NULL)
71 *stringp = s;
/freebsd-current/sys/libkern/
H A Dstrsep.c36 * Get next token from string *stringp, where tokens are possibly-empty
39 * Writes NULs into the string at *stringp to end tokens.
41 * On return, *stringp points past the last NUL written (if there might
44 * If *stringp is NULL, strsep returns NULL.
47 strsep(char **stringp, const char *delim) argument
54 if ((s = *stringp) == NULL)
65 *stringp = s;
/freebsd-current/lib/libc/string/
H A Dstrsep.c36 * Get next token from string *stringp, where tokens are possibly-empty
39 * Writes NULs into the string at *stringp to end tokens.
41 * On return, *stringp points past the last NUL written (if there might
44 * If *stringp is NULL, strsep returns NULL.
47 strsep(char **stringp, const char *delim) argument
54 if ((s = *stringp) == NULL)
65 *stringp = s;
/freebsd-current/contrib/bmake/
H A Dstresep.c42 char * stresep(char **stringp, const char *delim, int esc);
44 * Get next token from string *stringp, where tokens are possibly-empty
49 * Writes NULs into the string at *stringp to end tokens.
51 * On return, *stringp points past the last NUL written (if there might
54 * If *stringp is NULL, stresep returns NULL.
57 stresep(char **stringp, const char *delim, int esc) argument
65 if (stringp == NULL || delim == NULL)
68 if ((s = *stringp) == NULL)
86 *stringp = s;
/freebsd-current/tools/build/cross-build/
H A Dfflags.c50 strtofflags(char **stringp __unused, u_long *setp, u_long *clrp)
/freebsd-current/lib/libnetbsd/
H A Dutil.c55 string_to_flags(char **stringp, u_long *setp, u_long *clrp) argument
58 return strtofflags(stringp, setp, clrp);
H A Dutil.h57 int string_to_flags(char **stringp, u_long *setp, u_long *clrp);
/freebsd-current/lib/libc/rpc/
H A Dgetnetconfig.c241 char *stringp; /* tmp string pointer */ local
297 stringp = (char *) malloc(MAXNETCONFIGLINE);
298 if (stringp == NULL)
313 if (fgets(stringp, MAXNETCONFIGLINE, nc_file) == NULL) {
314 free(stringp);
321 } while (*stringp == '#');
326 free(stringp);
331 free(stringp);
338 list->linep = stringp;
339 if (parse_ncp(stringp, lis
444 char *stringp; /* temporary string pointer */ local
557 parse_ncp(char *stringp, struct netconfig *ncp) argument
[all...]
/freebsd-current/tools/build/cross-build/include/linux/
H A Dunistd.h64 int strtofflags(char **stringp, u_long *setp, u_long *clrp);
/freebsd-current/lib/libc/gen/
H A Dstrtofflags.c122 * success, 1 on failure. On failure, stringp is set to point
126 strtofflags(char **stringp, u_long *setp, u_long *clrp) argument
135 string = *stringp;
137 *stringp = p;
/freebsd-current/contrib/ntp/libntp/lib/isc/include/isc/
H A Dstring.h221 isc_string_separate(char **stringp, const char *delim);
/freebsd-current/contrib/dialog/
H A Dbuttons.c57 string_to_char(const char **stringp) argument
61 const char *string = *stringp;
78 *stringp += len;
81 *stringp += 1;
85 const char *string = *stringp;
87 *stringp += 1;
/freebsd-current/sys/compat/linux/
H A Dlinux_elf.c331 char *stringp; local
401 stringp = imgp->args->begin_argv;
408 error = copyout(stringp, (void *)ustringp,
427 while (*stringp++ != 0)
447 while (*stringp++ != 0)
/freebsd-current/sys/amd64/linux32/
H A Dlinux32_sysvec.c621 char *stringp; local
673 stringp = imgp->args->begin_argv;
678 error = copyout(stringp, (void *)ustringp,
692 while (*stringp++ != 0)
709 while (*stringp++ != 0)
/freebsd-current/usr.bin/join/
H A Djoin.c353 mbssep(char **stringp, const wchar_t *delim) argument
360 if ((s = *stringp) == NULL)
374 *stringp = s;
/freebsd-current/lib/libugidfw/
H A Dugidfw.c1081 char *stringdup, *stringp, *argv[100], **ap; local
1084 stringp = stringdup = strdup(string);
1085 while (*stringp == ' ' || *stringp == '\t')
1086 stringp++;
1089 for (ap = argv; (*ap = strsep(&stringp, " \t")) != NULL;) {
/freebsd-current/crypto/openssh/
H A Dssh-keyscan.c202 strnnsep(char **stringp, char *delim) argument
207 tok = xstrsep(stringp, delim);
/freebsd-current/contrib/tnftp/
H A Dtnftp.h428 char *strsep(char **stringp, const char *delim);

Completed in 182 milliseconds

12