HomeSort by relevance Sort by last modified time
    Searched full:stringp (Results 1 - 25 of 36) sorted by null

1 2

  /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/string/
strsep.c 36 * Get next token from string *stringp, where tokens are possibly-empty
39 * Writes NULs into the string at *stringp to end tokens.
41 * On return, *stringp points past the last NUL written (if there might
44 * If *stringp is NULL, strsep returns NULL.
47 strsep(char **stringp, const char *delim)
54 if ((s = *stringp) == NULL)
65 *stringp = s;
  /external/openssh/openbsd-compat/
strsep.c 42 * Get next token from string *stringp, where tokens are possibly-empty
45 * Writes NULs into the string at *stringp to end tokens.
47 * On return, *stringp points past the last NUL written (if there might
50 * If *stringp is NULL, strsep returns NULL.
53 strsep(char **stringp, const char *delim)
60 if ((s = *stringp) == NULL)
71 *stringp = s;
openbsd-compat.h 127 char *strsep(char **stringp, const char *delim);
  /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/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...]
  /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/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...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
string.h 352 /* Return the next DELIM-delimited token from *STRINGP,
353 terminating it with a '\0', and update *STRINGP to point past it. */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
string.h 352 /* Return the next DELIM-delimited token from *STRINGP,
353 terminating it with a '\0', and update *STRINGP to point past it. */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
string.h 352 /* Return the next DELIM-delimited token from *STRINGP,
353 terminating it with a '\0', and update *STRINGP to point past it. */
  /external/openssh/
sftp-server.c 236 handle_to_string(int handle, char **stringp, int *hlenp)
238 if (stringp == NULL || hlenp == NULL)
240 *stringp = xmalloc(sizeof(int32_t));
241 put_u32(*stringp, handle);
    [all...]
ssh-keyscan.c 174 strnnsep(char **stringp, char *delim)
179 tok = xstrsep(stringp, delim);
  /external/hyphenation/
csutil.c 11 char * mystrsep(char ** stringp, const char delim)
14 char * mp = *stringp;
20 *stringp = dp+1;
30 *stringp = mp + n;
    [all...]
  /external/clang/test/Analysis/
string.c 1034 char *strsep(char **stringp, const char *delim);
  /external/clang/lib/StaticAnalyzer/Checkers/
CStringChecker.cpp     [all...]
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/lib/
libc.so 

Completed in 5324 milliseconds

1 2