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

12

/freebsd-9.3-release/crypto/heimdal/lib/roken/
H A Dstrsep_copy.c45 /* strsep, but with const stringp, so return string in buf */
48 strsep_copy(const char **stringp, const char *delim, char *buf, size_t len) argument
50 const char *save = *stringp;
54 *stringp = *stringp + strcspn(*stringp, delim);
55 l = min(len, *stringp - save);
61 l = *stringp - save;
62 if(**stringp == '\0')
63 *stringp
[all...]
/freebsd-9.3-release/contrib/nvi/clib/
H A Dstrsep.c44 * Get next token from string *stringp, where tokens are possibly-empty
47 * Writes NULs into the string at *stringp to end tokens.
49 * On return, *stringp points past the last NUL written (if there might
52 * If *stringp is NULL, strsep returns NULL.
59 strsep(stringp, delim)
60 register char **stringp;
68 if ((s = *stringp) == NULL)
79 *stringp = s;
/freebsd-9.3-release/contrib/tcpdump/missing/
H A Dstrsep.c48 * Get next token from string *stringp, where tokens are possibly-empty
51 * Writes NULs into the string at *stringp to end tokens.
53 * On return, *stringp points past the last NUL written (if there might
56 * If *stringp is NULL, strsep returns NULL.
59 strsep(char **stringp, const char *delim) argument
66 if ((s = *stringp) == NULL)
77 *stringp = s;
/freebsd-9.3-release/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.h132 char *strsep(char **stringp, const char *delim);
/freebsd-9.3-release/lib/libc/string/
H A Dstrsep.c40 * Get next token from string *stringp, where tokens are possibly-empty
43 * Writes NULs into the string at *stringp to end tokens.
45 * On return, *stringp points past the last NUL written (if there might
48 * If *stringp is NULL, strsep returns NULL.
51 strsep(char **stringp, const char *delim) argument
58 if ((s = *stringp) == NULL)
69 *stringp = s;
/freebsd-9.3-release/lib/libnetbsd/
H A Dutil.h39 int string_to_flags(char **stringp, u_long *setp, u_long *clrp);
H A Dutil.c55 string_to_flags(char **stringp, u_long *setp, u_long *clrp) argument
58 return strtofflags(stringp, setp, clrp);
/freebsd-9.3-release/sys/libkern/
H A Dstrsep.c40 * Get next token from string *stringp, where tokens are possibly-empty
43 * Writes NULs into the string at *stringp to end tokens.
45 * On return, *stringp points past the last NUL written (if there might
48 * If *stringp is NULL, strsep returns NULL.
51 strsep(stringp, delim)
52 char **stringp;
60 if ((s = *stringp) == NULL)
71 *stringp = s;
/freebsd-9.3-release/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
64 if (stringp == NULL || delim == NULL)
67 if ((s = *stringp) == NULL)
82 *stringp = s;
/freebsd-9.3-release/lib/libc/rpc/
H A Dgetnetconfig.c247 char *stringp; /* tmp string pointer */ local
303 stringp = (char *) malloc(MAXNETCONFIGLINE);
304 if (stringp == NULL)
319 if (fgets(stringp, MAXNETCONFIGLINE, nc_file) == NULL) {
320 free(stringp);
327 } while (*stringp == '#');
332 free(stringp);
337 free(stringp);
344 list->linep = stringp;
345 if (parse_ncp(stringp, lis
452 char *stringp; /* temporary string pointer */ local
[all...]
/freebsd-9.3-release/lib/libc/gen/
H A Dstrtofflags.c110 * success, 1 on failure. On failure, stringp is set to point
114 strtofflags(stringp, setp, clrp)
115 char **stringp;
125 string = *stringp;
127 *stringp = p;
/freebsd-9.3-release/contrib/bind9/lib/isc/include/isc/
H A Dstring.h203 isc_string_separate(char **stringp, const char *delim);
/freebsd-9.3-release/contrib/bind9/lib/isc/
H A Dstring.c226 isc_string_separate(char **stringp, const char *delim) { argument
227 char *string = *stringp;
239 *stringp = s;
242 *stringp = NULL;
/freebsd-9.3-release/contrib/ntp/lib/isc/
H A Dstring.c199 isc_string_separate(char **stringp, const char *delim) { argument
200 char *string = *stringp;
212 *stringp = s;
215 *stringp = NULL;
/freebsd-9.3-release/contrib/ntp/lib/isc/include/isc/
H A Dstring.h221 isc_string_separate(char **stringp, const char *delim);
/freebsd-9.3-release/contrib/dialog/
H A Dbuttons.c56 string_to_char(const char **stringp) argument
60 const char *string = *stringp;
75 *stringp += len;
78 *stringp += 1;
82 const char *string = *stringp;
84 *stringp += 1;
/freebsd-9.3-release/contrib/bind9/lib/lwres/
H A Dgetaddrinfo.c478 lwres_strsep(char **stringp, const char *delim) { argument
479 char *string = *stringp;
492 *stringp = s;
496 *stringp = NULL;
/freebsd-9.3-release/usr.bin/join/
H A Djoin.c363 mbssep(char **stringp, const wchar_t *delim) argument
370 if ((s = *stringp) == NULL)
384 *stringp = s;
/freebsd-9.3-release/lib/libugidfw/
H A Dugidfw.c1068 char *stringdup, *stringp, *argv[100], **ap; local
1071 stringp = stringdup = strdup(string);
1072 while (*stringp == ' ' || *stringp == '\t')
1073 stringp++;
1076 for (ap = argv; (*ap = strsep(&stringp, " \t")) != NULL;) {
/freebsd-9.3-release/contrib/bind9/bin/dig/include/dig/
H A Ddig.h409 next_token(char **stringp, const char *delim);
/freebsd-9.3-release/contrib/bind9/lib/export/samples/
H A Dsample-update.c318 nsu_strsep(char **stringp, const char *delim) { argument
319 char *string = *stringp;
342 *stringp = s;
347 *stringp = NULL;
/freebsd-9.3-release/contrib/bind9/lib/irs/
H A Dgetaddrinfo.c1043 irs_strsep(char **stringp, const char *delim) { argument
1044 char *string = *stringp;
1057 *stringp = s;
1061 *stringp = NULL;
/freebsd-9.3-release/sys/kern/
H A Dkern_exec.c1262 char *stringp; local
1361 stringp = imgp->args->begin_argv;
1368 copyout(stringp, (void *)destp, ARG_MAX - imgp->args->stringspace);
1381 while (*stringp++ != 0)
1397 while (*stringp++ != 0)
/freebsd-9.3-release/sys/i386/linux/
H A Dlinux_sysvec.c303 char *stringp, *destp; local
355 stringp = imgp->args->begin_argv;
362 copyout(stringp, destp, ARG_MAX - imgp->args->stringspace);
375 while (*stringp++ != 0)
391 while (*stringp++ != 0)

Completed in 306 milliseconds

12