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

/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
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.
56 yasm__strsep(char **stringp, const char *delim) argument
59 return strsep(stringp, delim);
66 if ((s = *stringp) == NULL)
77 *stringp = s;
/external/fio/lib/
H A Dstrsep.c3 char *strsep(char **stringp, const char *delim) argument
9 s = *stringp;
24 *stringp = s;
/external/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;
/external/libmtp/src/
H A Dunicode.c81 char *stringp = (char *) unicstr; local
90 nconv = iconv(params->cd_ucs2_to_locale, &stringp, &convlen, &locp, &convmax);
114 char *stringp = (char *) localstr; // cast away "const" local
125 nconv = iconv(params->cd_locale_to_ucs2, &stringp, &convlen, &unip, &convmax);
H A Dptp-pack.c173 char *stringp = string; local
175 nconv = iconv(params->cd_locale_to_ucs2, &stringp, &convlen,
/external/ltrace/
H A Dsummary.c149 free_stringp_cb(const char **stringp, void *data) argument
151 free((char *)*stringp);

Completed in 4699 milliseconds