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

  /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;
  /device/linaro/bootloader/edk2/StdLib/LibC/String/
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 register char **stringp,
65 if ((s = *stringp) == NULL)
76 *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 148 char *strsep(char **stringp, const char *delim);
  /external/tcpdump/missing/
strsep.c 45 * Get next token from string *stringp, where tokens are possibly-empty
48 * Writes NULs into the string at *stringp to end tokens.
50 * On return, *stringp points past the last NUL written (if there might
53 * If *stringp is NULL, strsep returns NULL.
56 strsep(char **stringp, const char *delim)
63 if ((s = *stringp) == NULL)
74 *stringp = s;
  /external/curl/src/
tool_writeout.c 115 char *stringp = NULL; local
147 curl_easy_getinfo(curl, CURLINFO_EFFECTIVE_URL, &stringp))
148 && stringp)
149 fputs(stringp, stream);
246 curl_easy_getinfo(curl, CURLINFO_CONTENT_TYPE, &stringp))
247 && stringp)
248 fputs(stringp, stream);
252 curl_easy_getinfo(curl, CURLINFO_FTP_ENTRY_PATH, &stringp))
253 && stringp)
254 fputs(stringp, stream)
    [all...]
  /external/minijail/
util.c 214 static char *tokenize_parenthesized_expression(char **stringp)
220 if (stringp == NULL || *stringp == NULL)
224 if (**stringp != '(')
227 for (found = *stringp + 1; *found; ++found) {
236 ret = *stringp + 1;
237 *stringp = found + 1;
245 warn("unclosed parenthesis: '%s'", *stringp);
391 char *tokenize(char **stringp, const char *delim)
396 if (stringp == NULL || *stringp == NULL
    [all...]
util.h 126 * tokenize: locate the next token in @stringp using the @delim
127 * @stringp A pointer to the string to scan for tokens
136 char *tokenize(char **stringp, const char *delim);
  /external/libmtp/src/
unicode.c 82 char *stringp = (char *) unicstr; local
91 nconv = iconv(params->cd_ucs2_to_locale, &stringp, &convlen, &locp, &convmax);
115 char *stringp = (char *) localstr; // cast away "const" local
126 nconv = iconv(params->cd_locale_to_ucs2, &stringp, &convlen, &unip, &convmax);
ptp-pack.c 206 char *stringp = string; local
208 nconv = iconv(params->cd_locale_to_ucs2, &stringp, &convlen,
    [all...]
  /external/curl/lib/
krb5.c 167 char *stringp; local
197 stringp = aprintf("%s@%s", service, host);
198 if(!stringp)
201 input_buffer.value = stringp;
202 input_buffer.length = strlen(stringp);
205 free(stringp);
  /external/clang/tools/clang-format/
clang-format.el 56 :safe #'stringp)
143 ((stringp status)
  /device/linaro/bootloader/edk2/StdLib/Include/
string.h 74 char *strsep (register char **stringp, register const char *delim);
475 * Get next token from string *stringp, where tokens are possibly-empty
478 * Writes NULs into the string at *stringp to end tokens.
480 * On return, *stringp points past the last NUL written (if there might
483 * If *stringp is NULL, strsep returns NULL.
487 register char **stringp,
  /external/curl/packages/OS400/
ccsidcurl.c 377 convert_version_info_string(const char * * stringp,
386 if(*stringp) {
387 int l = convert(*bufp, *left, ccsid, *stringp, -1, ASCII_CCSID);
392 *stringp = *bufp;
    [all...]
  /external/openssh/
sftp-server.c 332 handle_to_string(int handle, u_char **stringp, int *hlenp)
334 if (stringp == NULL || hlenp == NULL)
336 *stringp = xmalloc(sizeof(int32_t));
337 put_u32(*stringp, handle);
    [all...]
ssh-keyscan.c 180 strnnsep(char **stringp, char *delim)
185 tok = xstrsep(stringp, delim);
  /external/clang/test/Analysis/
string.c 1098 char *strsep(char **stringp, const char *delim);
    [all...]

Completed in 1997 milliseconds