Searched defs:stringp (Results 1 - 10 of 10) sorted by relevance

/illumos-gate/usr/src/lib/libc/port/gen/
H A Dstrsep.c55 * Get next token from string *stringp, where tokens are possibly-empty
58 * Writes NULs into the string at *stringp to end tokens.
60 * On return, *stringp points past the last NUL written (if there might
63 * If *stringp is NULL, strsep returns NULL.
66 strsep(char **stringp, const char *delim) argument
73 if ((s = *stringp) == NULL)
84 *stringp = s;
/illumos-gate/usr/src/boot/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;
/illumos-gate/usr/src/lib/libresolv2/common/bsd/
H A Dstrsep.c50 * Get next token from string *stringp, where tokens are possibly-empty
53 * Writes NULs into the string at *stringp to end tokens.
55 * On return, *stringp points past the last NUL written (if there might
58 * If *stringp is NULL, strsep returns NULL.
61 strsep(char **stringp, const char *delim) { argument
67 if ((s = *stringp) == NULL)
78 *stringp = s;
/illumos-gate/usr/src/lib/libreparse/common/
H A Dfs_reparse_lib.c95 reparse_unparse(nvlist_t *nvl, char **stringp) argument
101 if (nvl == NULL || stringp == NULL ||
136 *stringp = buf;
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/ilbadm/
H A Dilbadm_import.c266 char *stringp, *currp; local
278 stringp = currp = linebuf;
288 for (; stringp != NULL && currp != NULL; i++) {
289 currp = strsep(&stringp, delim);
301 if (*currp == '\\' && stringp == NULL) {
302 stringp = currp;
/illumos-gate/usr/src/lib/libc/port/regex/
H A Dregex.c93 const char *stringp);
112 push_stringp(const char *stringp);
134 const char *stringp,
139 const char *stringp,
144 const char *stringp,
148 test_string(const char *stringp,
172 regex(const char *regexp, const char *stringp, ...) argument
191 if ((stringp == (char *)0) || (regexp == (char *)0)) {
200 va_start(arg_listp, stringp);
221 __loc1 = (char *)stringp;
362 get_wchar(wchar_t *wcharp, const char *stringp) argument
423 const char *stringp; local
463 push_stringp(const char *stringp) argument
653 test_repeated_ascii_char(const char *repeat_startp, const char *stringp, const char *regexp) argument
669 test_repeated_multibyte_char(const char *repeat_startp, const char *stringp, const char *regexp) argument
685 test_repeated_group(const char *repeat_startp, const char *stringp, const char *regexp) argument
704 test_string(const char *stringp, const char *regexp) argument
[all...]
/illumos-gate/usr/src/lib/libbc/libc/stdio/common/
H A Ddoprnt.c285 char *stringp = lowerhex; local
287 stringp = lowerhex;
289 *--bp = stringp[val%10];
297 char *stringp = upperhex; local
303 *--bp = stringp[val%16];
312 char *stringp = lowerhex; local
318 *--bp = stringp[val%16];
327 char *stringp = lowerhex; local
333 *--bp = stringp[val%8];
613 char *stringp; local
717 char *stringp; local
807 char *stringp; local
[all...]
/illumos-gate/usr/src/uts/common/fs/sockfs/
H A Dnl7c.c359 char *stringp; local
405 stringp = string;
438 *stringp = NULL;
443 stringp = string;
448 if (stringp ==
454 *stringp++ = c;
462 if (stringp ==
468 *stringp++ = c;
473 *stringp = NULL;
/illumos-gate/usr/src/common/util/
H A Dstring.c646 * The strsep() function locates, in the string referenced by *stringp, the
650 * string was reached) is stored in *stringp. The original value of
651 * *stringp is returned.
653 * If *stringp is initially NULL, strsep() returns NULL.
659 strsep(char **stringp, const char *delim) argument
666 if ((s = *stringp) == NULL)
678 *stringp = s;
/illumos-gate/usr/src/lib/libnwam/common/
H A Dlibnwam_values.c830 nwam_condition_t condition, const char *object_name, char **stringp)
835 assert(stringp != NULL);
837 *stringp = NULL;
919 *stringp = string;
930 *stringp = string;
829 nwam_condition_to_condition_string(nwam_condition_object_type_t object_type, nwam_condition_t condition, const char *object_name, char **stringp) argument

Completed in 122 milliseconds