Searched refs:delim (Results 1 - 5 of 5) sorted by relevance

/bionic/libc/string/
H A Dstrtok.c33 strtok(char *s, const char *delim) argument
37 return strtok_r(s, delim, &last);
41 strtok_r(char *s, const char *delim, char **last) argument
52 * Skip (span) leading delimiters (s += strspn(s, delim), sort of).
56 for (spanp = (char *)delim; (sc = *spanp++) != 0;) {
68 * Scan token (scan for delimiters: s += strcspn(s, delim), sort of).
69 * Note that delim must have one NUL; we stop if we see that, too.
73 spanp = (char *)delim;
H A Dstrsep.c37 * strings separated by characters from delim.
40 * delim need not remain constant from call to call.
47 strsep(char **stringp, const char *delim) argument
58 spanp = delim;
/bionic/libc/wchar/
H A Dwcstok.c41 wcstok(wchar_t * __restrict s, const wchar_t * __restrict delim, argument
52 * Skip (span) leading delimiters (s += wcsspn(s, delim), sort of).
56 for (spanp = delim; (sc = *spanp++) != L'\0';) {
68 * Scan token (scan for delimiters: s += wcscspn(s, delim), sort of).
69 * Note that delim must have one NUL; we stop if we see that, too.
73 spanp = delim;
/bionic/linker/
H A Dlinker.c2022 static void parse_library_path(const char *path, char *delim) argument
2030 while (i < LDPATH_MAX && (ldpaths[i] = strsep(&ldpaths_bufp, delim))) {
2036 * last char isn't '\0' (i.e. not originally a delim). */
2045 static void parse_preloads(const char *path, char *delim) argument
2053 while (i < LDPRELOAD_MAX && (ldpreload_names[i] = strsep(&ldpreloads_bufp, delim))) {
2060 * last char isn't '\0' (i.e. not originally a delim). */
/bionic/libc/tzcode/
H A Dlocaltime.c212 static const char * getqzname P((const char * strp, const int delim));
735 getqzname(register const char *strp, const int delim) argument
739 while ((c = *strp) != '\0' && c != delim)

Completed in 194 milliseconds