/external/curl/lib/vauth/ |
D | vauth.c | 60 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()
|
D | digest.c | 492 response = aprintf("username=\"%s\",realm=\"%s\",nonce=\"%s\"," in Curl_auth_create_digest_md5_message() 725 hashthis = (unsigned char *) aprintf("%s:%s", userp, digest->realm); in _Curl_auth_create_digest_http_message() 747 aprintf("%s:%s:%s", digest->userhash ? userh : userp, in _Curl_auth_create_digest_http_message() 761 tmp = aprintf("%s:%s:%s", ha1, digest->nonce, digest->cnonce); in _Curl_auth_create_digest_http_message() 784 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 …]
|
D | oauth2.c | 73 oauth = aprintf("n,a=%s,\1host=%s\1auth=Bearer %s\1\1", user, host, in Curl_auth_create_oauth_bearer_message() 76 oauth = aprintf("n,a=%s,\1host=%s\1port=%ld\1auth=Bearer %s\1\1", user, in Curl_auth_create_oauth_bearer_message() 114 char *xoauth = aprintf("user=%s\1auth=Bearer %s\1\1", user, bearer); in Curl_auth_create_xoauth_bearer_message()
|
D | cram.c | 122 response = aprintf( in Curl_auth_create_cram_md5_message()
|
/external/curl/tests/libtest/ |
D | lib661.c | 46 newURL = aprintf("%s/folderA/661", URL); in test() 54 newURL = aprintf("%s/folderB/661", URL); in test() 69 newURL = aprintf("%s/folderA/661", URL); in test() 78 newURL = aprintf("%s/folderB/661", URL); in test() 84 newURL = aprintf("%s/folderA/661", URL); in test()
|
D | lib539.c | 62 newURL = aprintf("%s./", URL); in test()
|
/external/curl/lib/ |
D | curl_printf.h | 38 # undef aprintf 46 # define aprintf curl_maprintf macro
|
D | curlx.h | 89 # undef aprintf 99 # define aprintf curlx_maprintf macro
|
D | curl_ntlm_wb.c | 328 conn->response_header = aprintf("NTLM %.*s", len_out - 4, buf + 3); in ntlm_wb_response() 443 *allocuserpwd = aprintf("%sAuthorization: %s\r\n", in Curl_output_ntlm_wb() 454 input = aprintf("TT %s\n", conn->challenge_header); in Curl_output_ntlm_wb() 464 *allocuserpwd = aprintf("%sAuthorization: %s\r\n", in Curl_output_ntlm_wb()
|
D | http_digest.c | 148 path = (unsigned char *) aprintf("%.*s", urilen, uripath); in Curl_output_digest() 163 *allocuserpwd = aprintf("%sAuthorization: Digest %s\r\n", in Curl_output_digest()
|
D | http_ntlm.c | 201 *allocuserpwd = aprintf("%sAuthorization: NTLM %s\r\n", in Curl_output_ntlm() 221 *allocuserpwd = aprintf("%sAuthorization: NTLM %s\r\n", in Curl_output_ntlm()
|
D | rtsp.c | 339 aprintf("Transport: %s\r\n", in rtsp_do() 364 aprintf("Accept-Encoding: %s\r\n", data->set.str[STRING_ENCODING]); in rtsp_do() 397 conn->allocptr.ref = aprintf("Referer: %s\r\n", data->change.referer); in rtsp_do() 415 conn->allocptr.rangeline = aprintf("Range: %s\r\n", data->state.range); in rtsp_do()
|
D | krb5.c | 197 stringp = aprintf("%s@%s", service, host); in krb5_auth() 261 cmd = aprintf("ADAT %s", p); in krb5_auth()
|
D | http.c | 305 out = aprintf("%s:%s", user, pwd); in http_output_basic() 319 *userp = aprintf("%sAuthorization: Basic %s\r\n", in http_output_basic() 346 *userp = aprintf("Authorization: Bearer %s\r\n", in http_output_bearer() 2120 pq = aprintf("%s?%s", path, query); in Curl_http() 2143 conn->allocptr.ref = aprintf("Referer: %s\r\n", data->change.referer); in Curl_http() 2159 aprintf("Accept-Encoding: %s\r\n", data->set.str[STRING_ENCODING]); in Curl_http() 2190 conn->allocptr.te = aprintf("Connection: %s%sTE\r\n" TE_HEADER, in Curl_http() 2318 conn->allocptr.host = aprintf("Host:%s\r\n", &ptr[5]); in Curl_http() 2336 conn->allocptr.host = aprintf("Host: %s%s%s\r\n", in Curl_http() 2341 conn->allocptr.host = aprintf("Host: %s%s%s:%d\r\n", in Curl_http() [all …]
|
D | http_proxy.c | 223 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()
|
D | gopher.c | 95 gopherpath = aprintf("%s?%s", path, query); in gopher_do()
|
D | http_negotiate.c | 166 userp = aprintf("%sAuthorization: Negotiate %s\r\n", proxy ? "Proxy-" : "", in Curl_output_negotiate()
|
/external/google-breakpad/src/third_party/curl/ |
D | mprintf.h | 57 # undef aprintf 74 # define aprintf curl_maprintf macro
|
/external/curl/src/ |
D | tool_operhlp.c | 112 urlbuffer = aprintf("%s%s", url, encfile); in add_file_name_to_url() 115 urlbuffer = aprintf("%s/%s", url, encfile); in add_file_name_to_url()
|
/external/mesa3d/src/freedreno/rnn/ |
D | aprintf.c | 28 char *aprintf(const char *format, ...) { in aprintf() function
|
D | util.h | 113 char *aprintf(const char *format, ...);
|
D | meson.build | 22 'aprintf.c',
|
/external/curl/tests/unit/ |
D | unit1305.c | 105 data_key = aprintf("%s:%d", "dummy", 0); in create_node()
|
D | unit1609.c | 135 entry_id = (void *)aprintf("%s:%d", tests[i].host, tests[i].port);
|
D | unit1607.c | 132 entry_id = (void *)aprintf("%s:%d", tests[i].host, tests[i].port);
|