HomeSort by relevance Sort by last modified time
    Searched refs:stringp (Results 1 - 20 of 20) sorted by null

  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
strsep.c 44 * 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)
59 return strsep(stringp, delim);
66 if ((s = *stringp) == NULL)
77 *stringp = s;
coretype.h 311 * \param stringp string
316 /*@null@*/ char *yasm__strsep(char **stringp, const char *delim);
  /bionic/libc/upstream-openbsd/lib/libc/string/
strsep.c 35 * Get next token from string *stringp, where tokens are possibly-empty
38 * Writes NULs into the string at *stringp to end tokens.
40 * On return, *stringp points past the last NUL written (if there might
43 * If *stringp is NULL, strsep returns NULL.
46 strsep(char **stringp, const char *delim)
53 if ((s = *stringp) == NULL)
64 *stringp = s;
  /external/fio/lib/
strsep.c 3 char *strsep(char **stringp, const char *delim)
9 s = *stringp;
24 *stringp = s;
  /external/tcpdump/missing/
strsep.c 48 * 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)
66 if ((s = *stringp) == NULL)
77 *stringp = s;
  /external/libmtp/src/
unicode.c 81 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);
ptp-pack.c 173 char *stringp = string; local
175 nconv = iconv(params->cd_locale_to_ucs2, &stringp, &convlen,
    [all...]
  /ndk/sources/host-tools/make-3.81/
dep.h 62 extern struct nameseq *parse_file_seq PARAMS ((char **stringp, int stopchar, unsigned int size, int strip));
variable.h 125 extern int handle_function PARAMS ((char **op, char **stringp));
function.c     [all...]
read.c     [all...]
  /external/ltrace/
summary.c 149 free_stringp_cb(const char **stringp, void *data)
151 free((char *)*stringp);
  /prebuilts/misc/common/swig/include/2.0.11/uffi/
uffi.swg 41 (assert (stringp cname))
69 (assert (stringp cname))
  /ndk/sources/host-tools/sed-4.2.1/lib/
string.in.h 298 /* Search the next delimiter (char listed in DELIM) starting at *STRINGP.
299 If one is found, overwrite it with a NUL, and advance *STRINGP
300 to point to the next char after it. Otherwise, set *STRINGP to NULL.
301 If *STRINGP was already NULL, nothing happens.
302 Return the old value of *STRINGP.
538 string DELIM) starting at the character string *STRINGP.
539 If one is found, overwrite it with a NUL, and advance *STRINGP to point
540 to the next multibyte character after it. Otherwise, set *STRINGP to NULL.
541 If *STRINGP was already NULL, nothing happens.
542 Return the old value of *STRINGP
    [all...]
  /external/bison/lib/
string.in.h 523 /* Search the next delimiter (char listed in DELIM) starting at *STRINGP.
524 If one is found, overwrite it with a NUL, and advance *STRINGP
525 to point to the next char after it. Otherwise, set *STRINGP to NULL.
526 If *STRINGP was already NULL, nothing happens.
527 Return the old value of *STRINGP.
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/allegrocl/
allegrocl.swg 406 (cl::assert (cl::stringp cname))
  /external/chromium_org/third_party/cython/src/Cython/Debugger/
libpython.py     [all...]
  /external/bison/darwin-lib/
string.h 835 /* Search the next delimiter (char listed in DELIM) starting at *STRINGP.
836 If one is found, overwrite it with a NUL, and advance *STRINGP
837 to point to the next char after it. Otherwise, set *STRINGP to NULL.
838 If *STRINGP was already NULL, nothing happens.
839 Return the old value of *STRINGP.
    [all...]
  /external/bison/linux-lib/
string.h 835 /* Search the next delimiter (char listed in DELIM) starting at *STRINGP.
836 If one is found, overwrite it with a NUL, and advance *STRINGP
837 to point to the next char after it. Otherwise, set *STRINGP to NULL.
838 If *STRINGP was already NULL, nothing happens.
839 Return the old value of *STRINGP.
    [all...]
  /external/clang/test/Analysis/
string.c 1036 char *strsep(char **stringp, const char *delim);

Completed in 730 milliseconds