/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 | oauth2.c | 70 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()
|
D | digest.c | 485 response = aprintf("username=\"%s\",realm=\"%s\",nonce=\"%s\"," in Curl_auth_create_digest_md5_message() 714 aprintf("%s:%s:%s", userp, digest->realm, passwdp); in Curl_auth_create_digest_http_message() 725 tmp = aprintf("%s:%s:%s", ha1, digest->nonce, digest->cnonce); in Curl_auth_create_digest_http_message() 748 md5this = (unsigned char *) aprintf("%s:%s", request, uripath); in Curl_auth_create_digest_http_message() 754 aprintf("%s:%s", md5this, "d41d8cd98f00b204e9800998ecf8427e"); in Curl_auth_create_digest_http_message() 768 md5this = (unsigned char *) aprintf("%s:%s:%08x:%s:%s:%s", in Curl_auth_create_digest_http_message() 777 md5this = (unsigned char *) aprintf("%s:%s:%s", in Curl_auth_create_digest_http_message() 809 response = aprintf("username=\"%s\", " in Curl_auth_create_digest_http_message() 832 response = aprintf("username=\"%s\", " in Curl_auth_create_digest_http_message() 850 tmp = aprintf("%s, opaque=\"%s\"", response, digest->opaque); in Curl_auth_create_digest_http_message() [all …]
|
D | cram.c | 122 response = aprintf( in Curl_auth_create_cram_md5_message()
|
/external/curl/lib/ |
D | curl_printf.h | 38 # undef aprintf 46 # define aprintf curl_maprintf macro
|
D | curlx.h | 99 # undef aprintf 110 # define aprintf curlx_maprintf macro
|
D | curl_ntlm_wb.c | 320 conn->response_header = aprintf("NTLM %.*s", len_out - 4, buf + 3); in ntlm_wb_response() 392 *allocuserpwd = aprintf("%sAuthorization: %s\r\n", in Curl_output_ntlm_wb() 400 input = aprintf("TT %s\n", conn->challenge_header); in Curl_output_ntlm_wb() 410 *allocuserpwd = aprintf("%sAuthorization: %s\r\n", in Curl_output_ntlm_wb()
|
D | http_digest.c | 146 path = (unsigned char *) aprintf("%.*s", urilen, uripath); in Curl_output_digest() 160 *allocuserpwd = aprintf("%sAuthorization: Digest %s\r\n", in Curl_output_digest()
|
D | http_ntlm.c | 180 *allocuserpwd = aprintf("%sAuthorization: NTLM %s\r\n", in Curl_output_ntlm() 200 *allocuserpwd = aprintf("%sAuthorization: NTLM %s\r\n", in Curl_output_ntlm()
|
D | rtsp.c | 349 aprintf("Transport: %s\r\n", in rtsp_do() 374 aprintf("Accept-Encoding: %s\r\n", data->set.str[STRING_ENCODING]); in rtsp_do() 407 conn->allocptr.ref = aprintf("Referer: %s\r\n", data->change.referer); in rtsp_do() 425 conn->allocptr.rangeline = aprintf("Range: %s\r\n", data->state.range); in rtsp_do()
|
D | http_proxy.c | 190 host_port = aprintf("%s:%hu", hostname, remote_port); in Curl_proxyCONNECT() 214 aprintf("%s%s%s:%hu", ipv6_ip?"[":"", hostname, ipv6_ip?"]":"", in Curl_proxyCONNECT() 222 host = aprintf("Host: %s\r\n", hostheader); in Curl_proxyCONNECT()
|
D | http_negotiate.c | 115 userp = aprintf("%sAuthorization: Negotiate %s\r\n", proxy ? "Proxy-" : "", in Curl_output_negotiate()
|
D | http.c | 312 *userp = aprintf("%sAuthorization: Basic %s\r\n", in http_output_basic() 1862 conn->allocptr.ref = aprintf("Referer: %s\r\n", data->change.referer); in Curl_http() 1878 aprintf("Accept-Encoding: %s\r\n", data->set.str[STRING_ENCODING]); in Curl_http() 1903 conn->allocptr.te = cptr? aprintf("%s, TE\r\n" TE_HEADER, cptr): in Curl_http() 1983 conn->allocptr.host = aprintf("%s\r\n", ptr); in Curl_http() 2001 conn->allocptr.host = aprintf("Host: %s%s%s\r\n", in Curl_http() 2006 conn->allocptr.host = aprintf("Host: %s%s%s:%hu\r\n", in Curl_http() 2185 conn->allocptr.rangeline = aprintf("Range: bytes=%s\r\n", in Curl_http() 2199 aprintf("Content-Range: bytes 0-%" CURL_FORMAT_CURL_OFF_T in Curl_http() 2209 aprintf("Content-Range: bytes %s%" CURL_FORMAT_CURL_OFF_T in Curl_http() [all …]
|
D | smtp.c | 560 from = aprintf("%s", data->set.str[STRING_MAIL_FROM]); in smtp_perform_mail() 562 from = aprintf("<%s>", data->set.str[STRING_MAIL_FROM]); in smtp_perform_mail() 570 auth = aprintf("%s", data->set.str[STRING_MAIL_AUTH]); in smtp_perform_mail() 584 size = aprintf("%" CURL_FORMAT_CURL_OFF_T, data->state.infilesize); in smtp_perform_mail()
|
D | krb5.c | 257 cmd = aprintf("ADAT %s", p); in krb5_auth()
|
D | conncache.c | 144 return aprintf("%s:%d", hostname, conn->port); in hashkey()
|
D | pingpong.c | 181 fmt_crlf = aprintf("%s\r\n", fmt); /* append a trailing CRLF */ in Curl_pp_vsendf()
|
D | ssh.c | 826 sshc->rsa = aprintf("%s/.ssh/id_rsa", home); in ssh_statemach_act() 831 sshc->rsa = aprintf("%s/.ssh/id_dsa", home); in ssh_statemach_act() 1238 char *tmp = aprintf("257 \"%s\" is current directory.\n", in ssh_statemach_act() 1655 char *tmp = aprintf("statvfs:\n" in ssh_statemach_act() 2021 tmpLine = aprintf("%s\n", sshc->readdir_filename); in ssh_statemach_act()
|
/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 | 107 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()
|
D | tool_operate.c | 770 urlbuffer = aprintf("%s%c%s", this_url, sep, httpgetfields); in operate_do() 775 urlbuffer = aprintf("%s/?%s", this_url, httpgetfields); in operate_do() 1098 file = aprintf("%s/%sssh/known_hosts", home, DOT_CHAR); in operate_do()
|
/external/curl/tests/libtest/ |
D | lib539.c | 61 newURL = aprintf("%s./", URL); in test()
|
/external/curl/tests/unit/ |
D | unit1305.c | 105 data_key = aprintf("%s:%d", "dummy", 0); in create_node()
|
/external/libxml2/ |
D | trio.h | 216 #define aprintf trio_aprintf macro
|
/external/curl/lib/vtls/ |
D | nss.c | 391 char *slot_name = aprintf("PEM Token #%d", slot_id); in nss_create_object() 469 nickname = aprintf("PEM Token #1:%s", n); in nss_load_cert() 1192 char *certpath = aprintf("sql:%s", cert_dir); in nss_init_core() 1487 char *fullpath = aprintf("%s/%s", capath, entry->name); in nss_load_ca_certificates() 1664 char *configstring = aprintf("library=%s name=PEM", pem_library); in nss_setup_connect()
|