Home
last modified time | relevance | path

Searched refs:aprintf (Results 1 - 25 of 47) sorted by relevance

12

/third_party/curl/lib/vauth/
H A Dvauth.c64 spn = aprintf("%s/%s@%s", service, host, realm); in Curl_auth_build_spn()
66 spn = aprintf("%s/%s", service, host); in Curl_auth_build_spn()
68 spn = aprintf("%s@%s", service, realm); in Curl_auth_build_spn()
91 utf8_spn = aprintf("%s/%s", service, host); in Curl_auth_build_spn()
H A Doauth2.c70 oauth = aprintf("n,a=%s,\1host=%s\1auth=Bearer %s\1\1", user, host, in Curl_auth_create_oauth_bearer_message()
73 oauth = aprintf("n,a=%s,\1host=%s\1port=%ld\1auth=Bearer %s\1\1", user, in Curl_auth_create_oauth_bearer_message()
101 char *xoauth = aprintf("user=%s\1auth=Bearer %s\1\1", user, bearer); in Curl_auth_create_xoauth_bearer_message()
H A Ddigest.c475 response = aprintf("username=\"%s\",realm=\"%s\",nonce=\"%s\"," in Curl_auth_create_digest_md5_message()
716 hashthis = aprintf("%s:%s", userp, digest->realm ? digest->realm : ""); in auth_create_digest_http_message()
736 hashthis = aprintf("%s:%s:%s", userp, digest->realm ? digest->realm : "", in auth_create_digest_http_message()
747 tmp = aprintf("%s:%s:%s", ha1, digest->nonce, digest->cnonce); in auth_create_digest_http_message()
769 hashthis = aprintf("%s:%s", request, uripath); in auth_create_digest_http_message()
781 hashthis2 = aprintf("%s:%s", hashthis, hashed); in auth_create_digest_http_message()
794 hashthis = aprintf("%s:%s:%08x:%s:%s:%s", ha1, digest->nonce, digest->nc, in auth_create_digest_http_message()
798 hashthis = aprintf("%s:%s:%s", ha1, digest->nonce, ha2); in auth_create_digest_http_message()
843 response = aprintf("username=\"%s\", " in auth_create_digest_http_message()
864 response = aprintf("usernam in auth_create_digest_http_message()
[all...]
H A Dcram.c85 response = aprintf( in Curl_auth_create_cram_md5_message()
/third_party/curl/tests/libtest/
H A Dlib661.c48 newURL = aprintf("%s/folderA/661", URL); in test()
58 newURL = aprintf("%s/folderB/661", URL); in test()
75 newURL = aprintf("%s/folderA/661", URL); in test()
86 newURL = aprintf("%s/folderB/661", URL); in test()
94 newURL = aprintf("%s/folderA/661", URL); in test()
H A Dlib539.c64 newURL = aprintf("%s./", URL); in test()
/third_party/curl/lib/
H A Dcurl_printf.h45 # undef aprintf macro
53 # define aprintf curl_maprintf macro
H A Dcurlx.h104 # undef aprintf macro
114 # define aprintf curlx_maprintf macro
H A Dhttp_digest.c152 path = (unsigned char *) aprintf("%.*s", (int)urilen, uripath); in Curl_output_digest()
167 *allocuserpwd = aprintf("%sAuthorization: Digest %s\r\n", in Curl_output_digest()
H A Dcurl_ntlm_wb.c450 *allocuserpwd = aprintf("%sAuthorization: NTLM %s\r\n", in Curl_output_ntlm_wb()
460 char *input = aprintf("TT %s\n", ntlm->challenge); in Curl_output_ntlm_wb()
469 *allocuserpwd = aprintf("%sAuthorization: NTLM %s\r\n", in Curl_output_ntlm_wb()
H A Dhttp_ntlm.c222 *allocuserpwd = aprintf("%sAuthorization: NTLM %s\r\n", in Curl_output_ntlm()
241 *allocuserpwd = aprintf("%sAuthorization: NTLM %s\r\n", in Curl_output_ntlm()
H A Dfopen.c122 tempstore = aprintf("%s%s.tmp", dir, randbuf); in Curl_fopen()
H A Dc-hyper.c551 char *req = aprintf("%s %s HTTP/1.1\r\n", method, path); in debug_request()
615 ptr = aprintf("%.*s\r\n", (int)linelen, line); in Curl_hyper_header()
905 pq = aprintf("%s?%s", data->state.up.path, data->state.up.query); in Curl_http()
1088 char *altused = aprintf("Alt-Used: %s:%d\r\n", in Curl_http()
1113 data->state.aptr.ref = aprintf("Referer: %s\r\n", data->state.referer); in Curl_http()
1136 aprintf("Accept-Encoding: %s\r\n", data->set.str[STRING_ENCODING]); in Curl_http()
H A Dhttp.c299 out = aprintf("%s:%s", user ? user : "", pwd ? pwd : ""); in http_output_basic()
313 *userp = aprintf("%sAuthorization: Basic %s\r\n", in http_output_basic()
343 *userp = aprintf("Authorization: Bearer %s\r\n", in http_output_bearer()
2196 aptr->host = aprintf("Host:%s\r\n", &ptr[5]); in Curl_http_host()
2212 aptr->host = aprintf("Host: %s%s%s\r\n", conn->bits.ipv6_ip?"[":"", in Curl_http_host()
2215 aptr->host = aprintf("Host: %s%s%s:%d\r\n", conn->bits.ipv6_ip?"[":"", in Curl_http_host()
2855 data->state.aptr.rangeline = aprintf("Range: bytes=%s\r\n", in Curl_http_range()
2869 aprintf("Content-Range: bytes 0-%" CURL_FORMAT_CURL_OFF_T in Curl_http_range()
2879 aprintf("Content-Range: bytes %s%" CURL_FORMAT_CURL_OFF_T in Curl_http_range()
2888 aprintf("Conten in Curl_http_range()
[all...]
H A Drtsp.c342 aprintf("Transport: %s\r\n", in rtsp_do()
367 aprintf("Accept-Encoding: %s\r\n", data->set.str[STRING_ENCODING]); in rtsp_do()
401 data->state.aptr.ref = aprintf("Referer: %s\r\n", data->state.referer); in rtsp_do()
417 data->state.aptr.rangeline = aprintf("Range: %s\r\n", data->state.range); in rtsp_do()
H A Dgopher.c152 gopherpath = aprintf("%s?%s", path, query); in gopher_do()
H A Dsmtp.c630 from = aprintf("<%s@%s>", address, host.name); in smtp_perform_mail()
637 from = aprintf("<%s>", address); in smtp_perform_mail()
671 auth = aprintf("<%s@%s>", address, host.name); in smtp_perform_mail()
678 auth = aprintf("<%s>", address); in smtp_perform_mail()
728 size = aprintf("%" CURL_FORMAT_CURL_OFF_T, data->state.infilesize); in smtp_perform_mail()
/third_party/curl/src/
H A Dtool_ipfs.c83 ipfs_path = aprintf("%s/.ipfs/", home); in ipfs_gateway()
92 gateway_composed_file_path = aprintf("%sgateway", ipfs_path); in ipfs_gateway()
242 pathbuffer = aprintf("%s%s/%s%s", gwpath, protocol, cid, in ipfs_url_rewrite()
H A Dtool_operhlp.c144 newpath = aprintf("%s%s", path, encfile); in add_file_name_to_url()
147 newpath = aprintf("%s/%s", path, encfile); in add_file_name_to_url()
240 char *alt = aprintf("%s/%s", tdir, *filename); in get_url_file_name()
/third_party/mesa3d/src/freedreno/rnn/
H A Daprintf.c28 char *aprintf(const char *format, ...) { in aprintf() function
H A Dutil.h113 char *aprintf(const char *format, ...);
/third_party/zlib/examples/
H A Dgznorm.c36 local char *aprintf(char *fmt, ...) { in aprintf() function
61 *err = aprintf(__VA_ARGS__); \
/third_party/curl/tests/unit/
H A Dunit1305.c98 data_key = aprintf("%s:%d", "dummy", 0); in create_node()
H A Dunit1609.c141 entry_id = (void *)aprintf("%s:%d", tests[i].host, tests[i].port);
H A Dunit1607.c140 entry_id = (void *)aprintf("%s:%d", tests[i].host, tests[i].port);

Completed in 17 milliseconds

12