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

12

/netbsd-6-1-5-RELEASE/crypto/external/bsd/heimdal/dist/lib/roken/
H A Dstrsep_copy.c44 /* strsep, but with const stringp, so return string in buf */
47 strsep_copy(const char **stringp, const char *delim, char *buf, size_t len) argument
49 const char *save = *stringp;
53 *stringp = *stringp + strcspn(*stringp, delim);
54 l = min(len, *stringp - save);
60 l = *stringp - save;
61 if(**stringp == '\0')
62 *stringp
[all...]
/netbsd-6-1-5-RELEASE/dist/nvi/clib/
H A Dstrsep.c46 * 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, strsep returns NULL.
61 strsep(register char **stringp, register const char *delim) argument
68 if ((s = *stringp) == NULL)
79 *stringp = s;
/netbsd-6-1-5-RELEASE/external/bsd/tcpdump/dist/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;
/netbsd-6-1-5-RELEASE/external/bsd/tmux/dist/compat/
H A Dstrsep.c37 * Get next token from string *stringp, where tokens are possibly-empty
40 * Writes NULs into the string at *stringp to end tokens.
42 * On return, *stringp points past the last NUL written (if there might
45 * If *stringp is NULL, strsep returns NULL.
48 strsep(char **stringp, const char *delim) argument
55 if ((s = *stringp) == NULL)
66 *stringp = s;
/netbsd-6-1-5-RELEASE/external/bsd/libbind/dist/bsd/
H A Dstrsep.c52 * Get next token from string *stringp, where tokens are possibly-empty
55 * Writes NULs into the string at *stringp to end tokens.
57 * On return, *stringp points past the last NUL written (if there might
60 * If *stringp is NULL, strsep returns NULL.
63 strsep(char **stringp, const char *delim) { argument
69 if ((s = *stringp) == NULL)
80 *stringp = s;
/netbsd-6-1-5-RELEASE/common/lib/libc/string/
H A Dstrsep.c58 * Get next token from string *stringp, where tokens are possibly-empty
61 * Writes NULs into the string at *stringp to end tokens.
63 * On return, *stringp points past the last NUL written (if there might
66 * If *stringp is NULL, strsep returns NULL.
69 strsep(char **stringp, const char *delim)
76 _DIAGASSERT(stringp != NULL);
79 if ((s = *stringp) == NULL)
90 *stringp = s;
/netbsd-6-1-5-RELEASE/lib/libc/string/
H A Dstresep.c51 * Get next token from string *stringp, where tokens are possibly-empty
56 * Writes NULs into the string at *stringp to end tokens.
58 * On return, *stringp points past the last NUL written (if there might
61 * If *stringp is NULL, stresep returns NULL.
64 stresep(char **stringp, const char *delim, int esc)
71 _DIAGASSERT(stringp != NULL);
74 if ((s = *stringp) == NULL)
89 *stringp = s;
/netbsd-6-1-5-RELEASE/lib/libc/rpc/
H A Dgetnetconfig.c250 char *stringp; /* tmp string pointer */ local
297 stringp = malloc(MAXNETCONFIGLINE);
298 if (stringp == NULL)
312 if (fgets(stringp, MAXNETCONFIGLINE, nc_file) == NULL) {
313 free(stringp);
317 } while (*stringp == '#');
321 free(stringp);
326 free(stringp);
333 list->linep = stringp;
334 if (parse_ncp(stringp, lis
430 char *stringp; /* temporary string pointer */ local
[all...]
/netbsd-6-1-5-RELEASE/lib/libutil/
H A Dstat_flags.c121 * success, 1 on failure. On failure, stringp is set to point
125 string_to_flags(char **stringp, u_long *setp, u_long *clrp) argument
136 string = *stringp;
139 *stringp = p;
/netbsd-6-1-5-RELEASE/gnu/dist/gmake/
H A Ddep.h59 extern struct nameseq *parse_file_seq PARAMS ((char **stringp, int stopchar, unsigned int size, int strip));
H A Dvariable.h112 extern int handle_function PARAMS ((char **op, char **stringp));
H A Dfunction.c1881 handle_function (op, stringp)
1883 char **stringp;
1886 char openparen = (*stringp)[0];
1895 beg = *stringp + 1;
1925 *stringp = end;
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/lib/isc/include/isc/
H A Dstring.h205 isc_string_separate(char **stringp, const char *delim);
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/lib/isc/
H A Dstring.c201 isc_string_separate(char **stringp, const char *delim) { argument
202 char *string = *stringp;
214 *stringp = s;
217 *stringp = NULL;
/netbsd-6-1-5-RELEASE/external/bsd/ntp/dist/lib/isc/include/isc/
H A Dstring.h205 isc_string_separate(char **stringp, const char *delim);
/netbsd-6-1-5-RELEASE/external/bsd/ntp/dist/lib/isc/
H A Dstring.c200 isc_string_separate(char **stringp, const char *delim) { argument
201 char *string = *stringp;
213 *stringp = s;
216 *stringp = NULL;
/netbsd-6-1-5-RELEASE/sys/dev/acpi/
H A Dacpi_util.c145 acpi_eval_string(ACPI_HANDLE handle, const char *path, char **stringp) argument
168 *stringp = ACPI_ALLOCATE(obj->String.Length + 1);
170 if (*stringp == NULL) {
175 (void)memcpy(*stringp, obj->String.Pointer, obj->String.Length);
177 (*stringp)[obj->String.Length] = '\0';
/netbsd-6-1-5-RELEASE/sbin/cgdconfig/
H A Dutils.c55 strsep_getnext(char **stringp, const char *delim) argument
59 ret = strsep(stringp, delim);
61 ret = strsep(stringp, delim);
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/lib/lwres/
H A Dgetaddrinfo.c480 lwres_strsep(char **stringp, const char *delim) { argument
481 char *string = *stringp;
494 *stringp = s;
498 *stringp = NULL;
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/bin/dig/include/dig/
H A Ddig.h407 next_token(char **stringp, const char *delim);
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/lib/export/samples/
H A Dsample-update.c320 nsu_strsep(char **stringp, const char *delim) { argument
321 char *string = *stringp;
344 *stringp = s;
349 *stringp = NULL;
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/lib/irs/
H A Dgetaddrinfo.c1041 irs_strsep(char **stringp, const char *delim) { argument
1042 char *string = *stringp;
1055 *stringp = s;
1059 *stringp = NULL;
/netbsd-6-1-5-RELEASE/gnu/dist/texinfo/util/
H A Dtexi-docstring-magic.el230 (if (stringp default)
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssh/dist/
H A Dssh-keyscan.c164 strnnsep(char **stringp, const char *delim) argument
169 tok = xstrsep(stringp, delim);
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/bin/named/unix/
H A Dos.c917 next_token(char **stringp, const char *delim) { argument
921 res = strsep(stringp, delim);

Completed in 183 milliseconds

12