Home
last modified time | relevance | path

Searched refs:stringp (Results 1 – 14 of 14) sorted by relevance

/external/curl/src/
Dtool_writeout.c115 char *stringp = NULL; in ourWriteOut() local
147 curl_easy_getinfo(curl, CURLINFO_EFFECTIVE_URL, &stringp)) in ourWriteOut()
148 && stringp) in ourWriteOut()
149 fputs(stringp, stream); in ourWriteOut()
246 curl_easy_getinfo(curl, CURLINFO_CONTENT_TYPE, &stringp)) in ourWriteOut()
247 && stringp) in ourWriteOut()
248 fputs(stringp, stream); in ourWriteOut()
252 curl_easy_getinfo(curl, CURLINFO_FTP_ENTRY_PATH, &stringp)) in ourWriteOut()
253 && stringp) in ourWriteOut()
254 fputs(stringp, stream); in ourWriteOut()
[all …]
/external/minijail/
Dutil.c214 static char *tokenize_parenthesized_expression(char **stringp) in tokenize_parenthesized_expression() argument
220 if (stringp == NULL || *stringp == NULL) in tokenize_parenthesized_expression()
224 if (**stringp != '(') in tokenize_parenthesized_expression()
227 for (found = *stringp + 1; *found; ++found) { in tokenize_parenthesized_expression()
236 ret = *stringp + 1; in tokenize_parenthesized_expression()
237 *stringp = found + 1; in tokenize_parenthesized_expression()
245 warn("unclosed parenthesis: '%s'", *stringp); in tokenize_parenthesized_expression()
391 char *tokenize(char **stringp, const char *delim) in tokenize() argument
396 if (stringp == NULL || *stringp == NULL) in tokenize()
404 ret = *stringp; in tokenize()
[all …]
Dutil.h136 char *tokenize(char **stringp, const char *delim);
/external/openssh/openbsd-compat/
Dstrsep.c53 strsep(char **stringp, const char *delim) in strsep() argument
60 if ((s = *stringp) == NULL) in strsep()
71 *stringp = s; in strsep()
Dopenbsd-compat.h148 char *strsep(char **stringp, const char *delim);
/external/tcpdump/missing/
Dstrsep.c56 strsep(char **stringp, const char *delim) in strsep() argument
63 if ((s = *stringp) == NULL) in strsep()
74 *stringp = s; in strsep()
/external/libmtp/src/
Dunicode.c82 char *stringp = (char *) unicstr; in utf16_to_utf8() local
91 nconv = iconv(params->cd_ucs2_to_locale, &stringp, &convlen, &locp, &convmax); in utf16_to_utf8()
115 char *stringp = (char *) localstr; // cast away "const" in utf8_to_utf16() local
126 nconv = iconv(params->cd_locale_to_ucs2, &stringp, &convlen, &unip, &convmax); in utf8_to_utf16()
Dptp-pack.c206 char *stringp = string; in ptp_pack_string() local
208 nconv = iconv(params->cd_locale_to_ucs2, &stringp, &convlen, in ptp_pack_string()
/external/curl/lib/
Dkrb5.c167 char *stringp; in krb5_auth() local
197 stringp = aprintf("%s@%s", service, host); in krb5_auth()
198 if(!stringp) in krb5_auth()
201 input_buffer.value = stringp; in krb5_auth()
202 input_buffer.length = strlen(stringp); in krb5_auth()
205 free(stringp); in krb5_auth()
/external/clang/tools/clang-format/
Dclang-format.el56 :safe #'stringp)
143 ((stringp status)
/external/curl/packages/OS400/
Dccsidcurl.c377 convert_version_info_string(const char * * stringp, in convert_version_info_string() argument
386 if(*stringp) { in convert_version_info_string()
387 int l = convert(*bufp, *left, ccsid, *stringp, -1, ASCII_CCSID); in convert_version_info_string()
392 *stringp = *bufp; in convert_version_info_string()
/external/openssh/
Dsftp-server.c332 handle_to_string(int handle, u_char **stringp, int *hlenp) in handle_to_string() argument
334 if (stringp == NULL || hlenp == NULL) in handle_to_string()
336 *stringp = xmalloc(sizeof(int32_t)); in handle_to_string()
337 put_u32(*stringp, handle); in handle_to_string()
Dssh-keyscan.c180 strnnsep(char **stringp, char *delim) in strnnsep() argument
185 tok = xstrsep(stringp, delim); in strnnsep()
/external/clang/test/Analysis/
Dstring.c1098 char *strsep(char **stringp, const char *delim);