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

  /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/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/openssh/
ssh-keyscan.c 174 strnnsep(char **stringp, char *delim)
179 tok = xstrsep(stringp, delim);
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...]
  /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/hyphenation/
csutil.c 11 char * mystrsep(char ** stringp, const char delim)
14 char * mp = *stringp;
20 *stringp = dp+1;
30 *stringp = mp + n;
    [all...]

Completed in 671 milliseconds