Home
last modified time | relevance | path

Searched refs:aprintf (Results 1 – 25 of 38) sorted by relevance

12

/external/curl/lib/vauth/
Dvauth.c60 spn = aprintf("%s/%s@%s", service, host, realm); in Curl_auth_build_spn()
62 spn = aprintf("%s/%s", service, host); in Curl_auth_build_spn()
64 spn = aprintf("%s@%s", service, realm); in Curl_auth_build_spn()
86 utf8_spn = aprintf("%s/%s", service, host); in Curl_auth_build_spn()
Ddigest.c491 response = aprintf("username=\"%s\",realm=\"%s\",nonce=\"%s\"," in Curl_auth_create_digest_md5_message()
724 hashthis = (unsigned char *) aprintf("%s:%s", userp, digest->realm); in _Curl_auth_create_digest_http_message()
746 aprintf("%s:%s:%s", digest->userhash ? userh : userp, in _Curl_auth_create_digest_http_message()
760 tmp = aprintf("%s:%s:%s", ha1, digest->nonce, digest->cnonce); in _Curl_auth_create_digest_http_message()
783 hashthis = (unsigned char *) aprintf("%s:%s", request, uripath); in _Curl_auth_create_digest_http_message()
796 hashthis2 = (unsigned char *)aprintf("%s:%s", hashthis, hashed); in _Curl_auth_create_digest_http_message()
810 hashthis = (unsigned char *) aprintf("%s:%s:%08x:%s:%s:%s", in _Curl_auth_create_digest_http_message()
819 hashthis = (unsigned char *) aprintf("%s:%s:%s", in _Curl_auth_create_digest_http_message()
851 response = aprintf("username=\"%s\", " in _Curl_auth_create_digest_http_message()
874 response = aprintf("username=\"%s\", " in _Curl_auth_create_digest_http_message()
[all …]
Doauth2.c70 oauth = aprintf("user=%s\1auth=Bearer %s\1\1", user, bearer); in Curl_auth_create_oauth_bearer_message()
72 oauth = aprintf("user=%s\1host=%s\1auth=Bearer %s\1\1", user, host, in Curl_auth_create_oauth_bearer_message()
75 oauth = aprintf("user=%s\1host=%s\1port=%ld\1auth=Bearer %s\1\1", user, in Curl_auth_create_oauth_bearer_message()
Dcram.c122 response = aprintf( in Curl_auth_create_cram_md5_message()
/external/curl/lib/
Dcurl_printf.h38 # undef aprintf
46 # define aprintf curl_maprintf macro
Dcurlx.h89 # undef aprintf
99 # define aprintf curlx_maprintf macro
Dcurl_ntlm_wb.c326 conn->response_header = aprintf("NTLM %.*s", len_out - 4, buf + 3); in ntlm_wb_response()
400 *allocuserpwd = aprintf("%sAuthorization: %s\r\n", in Curl_output_ntlm_wb()
410 input = aprintf("TT %s\n", conn->challenge_header); in Curl_output_ntlm_wb()
420 *allocuserpwd = aprintf("%sAuthorization: %s\r\n", in Curl_output_ntlm_wb()
Dhttp_digest.c147 path = (unsigned char *) aprintf("%.*s", urilen, uripath); in Curl_output_digest()
162 *allocuserpwd = aprintf("%sAuthorization: Digest %s\r\n", in Curl_output_digest()
Dhttp_ntlm.c196 *allocuserpwd = aprintf("%sAuthorization: NTLM %s\r\n", in Curl_output_ntlm()
216 *allocuserpwd = aprintf("%sAuthorization: NTLM %s\r\n", in Curl_output_ntlm()
Drtsp.c357 aprintf("Transport: %s\r\n", in rtsp_do()
382 aprintf("Accept-Encoding: %s\r\n", data->set.str[STRING_ENCODING]); in rtsp_do()
415 conn->allocptr.ref = aprintf("Referer: %s\r\n", data->change.referer); in rtsp_do()
433 conn->allocptr.rangeline = aprintf("Range: %s\r\n", data->state.range); in rtsp_do()
Dkrb5.c197 stringp = aprintf("%s@%s", service, host); in krb5_auth()
261 cmd = aprintf("ADAT %s", p); in krb5_auth()
Dhttp_proxy.c223 host_port = aprintf("%s:%d", hostname, remote_port); in CONNECT()
247 aprintf("%s%s%s:%d", ipv6_ip?"[":"", hostname, ipv6_ip?"]":"", in CONNECT()
255 host = aprintf("Host: %s\r\n", hostheader); in CONNECT()
Dhttp.c289 out = aprintf("%s:%s", user, pwd); in http_output_basic()
303 *userp = aprintf("%sAuthorization: Basic %s\r\n", in http_output_basic()
330 *userp = aprintf("Authorization: Bearer %s\r\n", in http_output_bearer()
2056 pq = aprintf("%s?%s", path, query); in Curl_http()
2079 conn->allocptr.ref = aprintf("Referer: %s\r\n", data->change.referer); in Curl_http()
2095 aprintf("Accept-Encoding: %s\r\n", data->set.str[STRING_ENCODING]); in Curl_http()
2126 conn->allocptr.te = aprintf("Connection: %s%sTE\r\n" TE_HEADER, in Curl_http()
2250 conn->allocptr.host = aprintf("Host:%s\r\n", &ptr[5]); in Curl_http()
2268 conn->allocptr.host = aprintf("Host: %s%s%s\r\n", in Curl_http()
2273 conn->allocptr.host = aprintf("Host: %s%s%s:%d\r\n", in Curl_http()
[all …]
Dgopher.c95 gopherpath = aprintf("%s?%s", path, query); in gopher_do()
Dhttp_negotiate.c155 userp = aprintf("%sAuthorization: Negotiate %s\r\n", proxy ? "Proxy-" : "", in Curl_output_negotiate()
Dsmtp.c523 from = aprintf("%s", data->set.str[STRING_MAIL_FROM]); in smtp_perform_mail()
525 from = aprintf("<%s>", data->set.str[STRING_MAIL_FROM]); in smtp_perform_mail()
533 auth = aprintf("%s", data->set.str[STRING_MAIL_AUTH]); in smtp_perform_mail()
579 size = aprintf("%" CURL_FORMAT_CURL_OFF_T, data->state.infilesize); in smtp_perform_mail()
Durlapi.c1021 url = aprintf("file://%s%s%s", in curl_url_get()
1058 url = aprintf("%s://%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s", in curl_url_get()
/external/google-breakpad/src/third_party/curl/
Dmprintf.h57 # undef aprintf
74 # define aprintf curl_maprintf macro
/external/curl/src/
Dtool_operhlp.c107 urlbuffer = aprintf("%s%s", url, encfile); in add_file_name_to_url()
110 urlbuffer = aprintf("%s/%s", url, encfile); in add_file_name_to_url()
/external/curl/tests/libtest/
Dlib539.c62 newURL = aprintf("%s./", URL); in test()
/external/curl/tests/unit/
Dunit1305.c105 data_key = aprintf("%s:%d", "dummy", 0); in create_node()
Dunit1609.c147 entry_id = (void *)aprintf("%s:%d", tests[i].host, tests[i].port);
Dunit1607.c145 entry_id = (void *)aprintf("%s:%d", tests[i].host, tests[i].port);
/external/libxml2/
Dtrio.h216 #define aprintf trio_aprintf macro
/external/curl/lib/vtls/
Dnss.c455 char *slot_name = aprintf("PEM Token #%d", slot_id); in nss_create_object()
547 nickname = aprintf("PEM Token #1:%s", n); in nss_load_cert()
1270 config_string = aprintf("library=%s name=%s", library, name); in nss_load_module()
1316 char *certpath = aprintf("sql:%s", cert_dir); in nss_init_core()
1641 char *fullpath = aprintf("%s/%s", capath, entry->name); in nss_load_ca_certificates()

12