/third_party/curl/tests/libtest/ |
H A D | lib506.c | 34 char *url; member 146 curl_easy_setopt(curl, CURLOPT_URL, tdata->url); in fire() 155 fprintf(stderr, "perform url '%s' repeat %d failed, curlcode %d\n", in fire() 156 tdata->url, i, (int)code); in fire() 167 /* build request url */ 180 char *url = NULL; in test() local 270 tdata.url = suburl(URL, i); /* must be curl_free()d */ in test() 277 curl_free(tdata.url); in test() 291 url = suburl(URL, i); in test() 294 test_setopt(curl, CURLOPT_URL, url); in test() [all...] |
H A D | lib586.c | 32 char *url; member 113 curl_easy_setopt(curl, CURLOPT_URL, tdata->url); in fire() 121 fprintf(stderr, "perform url '%s' repeat %d failed, curlcode %d\n", in fire() 122 tdata->url, i, (int)code); in fire() 136 char *url; in test() local 191 tdata.url = URL; in test() 210 url = URL; in test() 211 test_setopt(curl, CURLOPT_URL, url); in test()
|
/third_party/ffmpeg/libavformat/ |
H A D | url.c | 26 #include "url.h" 89 int ff_url_decompose(URLComponents *uc, const char *url, const char *end) in ff_url_decompose() argument 93 av_assert0(url); in ff_url_decompose() 95 end = url + strlen(url); in ff_url_decompose() 96 cur = uc->url = url; in ff_url_decompose() 230 if (is_fq_dos_path(base) || av_strstart(base, "file:", NULL) || ub.path == ub.url) { in ff_make_absolute_url2() 240 keep = ub.url; in ff_make_absolute_url2() 242 if (uc.url_component_end_##component == uc.url in ff_make_absolute_url2() [all...] |
/third_party/skia/third_party/externals/microhttpd/src/testcurl/https/ |
H A D | tls_test_common.c | 74 char url[255]; in test_daemon_get() local 86 /* construct url - this might use doc_path */ in test_daemon_get() 87 gen_test_file_url (url, port); in test_daemon_get() 93 curl_easy_setopt (c, CURLOPT_URL, url); in test_daemon_get() 166 const char *url, const char *method, const char *upload_data, in http_ahc() 193 const char *url, const char *method, const char *upload_data, in http_dummy_ahc() 202 * @param url 210 send_curl_req (char *url, struct CBC * cbc, const char *cipher_suite, in send_curl_req() argument 219 curl_easy_setopt (c, CURLOPT_URL, url); in send_curl_req() 258 * compile test file url pointin 165 http_ahc(void *cls, struct MHD_Connection *connection, const char *url, const char *method, const char *upload_data, const char *version, size_t *upload_data_size, void **ptr) http_ahc() argument 192 http_dummy_ahc(void *cls, struct MHD_Connection *connection, const char *url, const char *method, const char *upload_data, const char *version, size_t *upload_data_size, void **ptr) http_dummy_ahc() argument 265 gen_test_file_url(char *url, int port) gen_test_file_url() argument 321 char url[255]; test_https_transfer() local [all...] |
/third_party/python/Lib/ |
H A D | mimetypes.py | 5 guess_type(url, strict=True) -- guess the MIME type and encoding of a URL. 103 def guess_type(self, url, strict=True): 122 url = os.fspath(url) 123 scheme, url = urllib.parse._splittype(url) 131 comma = url.find(',') 135 semi = url.find(';', 0, comma) 137 type = url[:semi] 139 type = url[ [all...] |
/third_party/node/test/parallel/ |
H A D | test-http-parser-bad-ref.js | 31 parser.url = ''; 33 parser[kOnHeaders] = function(headers, url) { 35 parser.url += url; 40 console.log('url', info.url);
|
H A D | test-http-client-request-options.js | 9 assert.strictEqual(req.url, '/ping?q=term'); 20 const url = new URL(`http://${address}:${port}/ping?q=term`); 21 url.headers = headers; 22 const clientReq = http.request(url);
|
/third_party/skia/gm/ |
H A D | annotated_text.cpp | 24 SkScalar x, SkScalar y, const SkFont& font, const char* url) { in draw_url_annotated_text_with_box() 29 sk_sp<SkData> urlData(SkData::MakeWithCString(url)); in draw_url_annotated_text_with_box() 46 const char url[] = "https://www.google.com/"; in DEF_SIMPLE_GM() local 47 draw_url_annotated_text_with_box(canvas, text, 200.0f, 80.0f, font, url); in DEF_SIMPLE_GM() 50 draw_url_annotated_text_with_box(canvas, text, 150.0f, -55.0f, font, url); in DEF_SIMPLE_GM() 22 draw_url_annotated_text_with_box( SkCanvas* canvas, const void* text, SkScalar x, SkScalar y, const SkFont& font, const char* url) draw_url_annotated_text_with_box() argument
|
/third_party/node/deps/npm/test/lib/commands/ |
H A D | help.js | 55 mockSpawn.open = async (url) => args = [cleanCwd(decodeURI(url))] 120 const [url] = getArgs() 121 t.match(url, /commands\/npm-install.html$/, 'attempts to open the correct url') 122 t.ok(url.startsWith('file:///'), 'opens with the correct uri schema') 131 const [url] = getArgs() 132 t.match(url, /configuring-npm\/install.html$/, 'attempts to open the correct url') 141 const [url] [all...] |
/third_party/python/Lib/test/ |
H A D | test_http_cookiejar.py | 306 def __init__(self, headers=[], url=None): 312 self._url = url 315 def interact_2965(cookiejar, url, *set_cookie_hdrs): 316 return _interact(cookiejar, url, set_cookie_hdrs, "Set-Cookie2") 318 def interact_netscape(cookiejar, url, *set_cookie_hdrs): 319 return _interact(cookiejar, url, set_cookie_hdrs, "Set-Cookie") 321 def _interact(cookiejar, url, set_cookie_hdrs, hdr_name): 323 req = urllib.request.Request(url) 329 res = FakeResponse(headers, url) 506 for url, domai [all...] |
/third_party/node/test/fixtures/wpt/url/resources/ |
H A D | a-element-origin.js | 7 function bURL(url, base) { 10 a.setAttribute("href", url); 28 var url = bURL(expected.input, base) 29 assert_equals(url.origin, expected.origin, "origin")
|
/third_party/skia/tools/skiaserve/urlhandlers/ |
H A D | ClipAlphaHandler.cpp | 16 bool ClipAlphaHandler::canHandle(const char* method, const char* url) { in canHandle() argument 19 0 == strncmp(url, kBasePath, strlen(kBasePath)); in canHandle() 23 const char* url, const char* method, in handle() 26 SkStrSplit(url, "/", &commands); in handle() 22 handle(Request* request, MHD_Connection* connection, const char* url, const char* method, const char* upload_data, size_t* upload_data_size) handle() argument
|
H A D | ColorModeHandler.cpp | 16 bool ColorModeHandler::canHandle(const char* method, const char* url) { in canHandle() argument 19 0 == strncmp(url, kBasePath, strlen(kBasePath)); in canHandle() 23 const char* url, const char* method, in handle() 26 SkStrSplit(url, "/", &commands); in handle() 22 handle(Request* request, MHD_Connection* connection, const char* url, const char* method, const char* upload_data, size_t* upload_data_size) handle() argument
|
H A D | EnableGPUHandler.cpp | 16 bool EnableGPUHandler::canHandle(const char* method, const char* url) { in canHandle() argument 19 0 == strncmp(url, kBasePath, strlen(kBasePath)); in canHandle() 23 const char* url, const char* method, in handle() 26 SkStrSplit(url, "/", &commands); in handle() 22 handle(Request* request, MHD_Connection* connection, const char* url, const char* method, const char* upload_data, size_t* upload_data_size) handle() argument
|
H A D | InfoHandler.cpp | 16 bool InfoHandler::canHandle(const char* method, const char* url) { in canHandle() argument 19 0 == strncmp(url, kBaseName, strlen(kBaseName)); in canHandle() 23 const char* url, const char* method, in handle() 26 SkStrSplit(url, "/", &commands); in handle() 22 handle(Request* request, MHD_Connection* connection, const char* url, const char* method, const char* upload_data, size_t* upload_data_size) handle() argument
|
H A D | OpBoundsHandler.cpp | 16 bool OpBoundsHandler::canHandle(const char* method, const char* url) { in canHandle() argument 19 0 == strncmp(url, kBasePath, strlen(kBasePath)); in canHandle() 22 int OpBoundsHandler::handle(Request* request, MHD_Connection* connection, const char* url, in handle() argument 25 SkStrSplit(url, "/", &commands); in handle()
|
H A D | OpsHandler.cpp | 16 bool OpsHandler::canHandle(const char* method, const char* url) { in canHandle() argument 18 return 0 == strncmp(url, kBasePath, strlen(kBasePath)); in canHandle() 21 int OpsHandler::handle(Request* request, MHD_Connection* connection, const char* url, in handle() argument 24 SkStrSplit(url, "/", &commands); in handle()
|
H A D | OverdrawHandler.cpp | 16 bool OverdrawHandler::canHandle(const char* method, const char* url) { in canHandle() argument 19 0 == strncmp(url, kBasePath, strlen(kBasePath)); in canHandle() 23 const char* url, const char* method, in handle() 26 SkStrSplit(url, "/", &commands); in handle() 22 handle(Request* request, MHD_Connection* connection, const char* url, const char* method, const char* upload_data, size_t* upload_data_size) handle() argument
|
/third_party/node/src/inspector/ |
H A D | worker_inspector.cc | 15 const std::string& url, in WorkerStartedRequest() 20 info_(BuildWorkerTitle(id, name), url, worker_thread), in WorkerStartedRequest() 42 delegate->WorkerCreated(info.title, info.url, waiting, info.worker_thread); in Report() 60 const std::string& url, in ParentInspectorHandle() 65 url_(url), in ParentInspectorHandle() 104 uint64_t thread_id, const std::string& url, const std::string& name) { in NewParentHandle() 107 thread_id, url, thread_, wait, name); in NewParentHandle() 13 WorkerStartedRequest( uint64_t id, const std::string& url, std::shared_ptr<node::inspector::MainThreadHandle> worker_thread, bool waiting, const std::string& name) WorkerStartedRequest() argument 58 ParentInspectorHandle( uint64_t id, const std::string& url, std::shared_ptr<MainThreadHandle> parent_thread, bool wait_for_connect, const std::string& name) ParentInspectorHandle() argument 103 NewParentHandle( uint64_t thread_id, const std::string& url, const std::string& name) NewParentHandle() argument
|
/third_party/curl/src/ |
H A D | tool_xattr.c | 39 { "user.xdg.referrer.url", CURLINFO_REFERER }, 47 char *stripcredentials(const char *url); 51 char *stripcredentials(const char *url) in stripcredentials() argument 58 uc = curl_url_set(u, CURLUPART_URL, url, 0); in stripcredentials() 116 int fwrite_xattr(CURL *curl, const char *url, int fd) in fwrite_xattr() argument 130 char *nurl = stripcredentials(url); in fwrite_xattr() 133 err = xattr(fd, "user.xdg.origin.url", nurl); in fwrite_xattr()
|
/third_party/ffmpeg/tests/fate/ |
H A D | libavformat.mak | 17 FATE_LIBAVFORMAT-yes += fate-url 18 fate-url: libavformat/tests/url$(EXESUF) 19 fate-url: CMD = run libavformat/tests/url$(EXESUF)
|
/third_party/node/test/fixtures/wpt/resources/ |
H A D | idlharness-shadowrealm.js | 2 function fetch_text(url) { 3 return fetch(url).then(function (r) { 5 throw new Error("Error fetching " + url + "."); 42 const ss = await Promise.all(script_urls.map(url => fetch_text(url)));
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/ |
H A D | requirements.py | 40 self.url: Optional[str] = parsed.url or None 58 if self.url: 59 yield f"@ {self.url}" 88 and self.url == other.url
|
/third_party/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-cpp/ |
H A D | main.cxx | 80 std::string url, filepath; in main() local 82 url = "https://warmcat.com/test-"; in main() 83 url += ('a' + n); in main() 84 url += ".bin"; in main() 90 new lssFile(context, url, filepath, lss_completion, 0); in main()
|
/third_party/vk-gl-cts/external/openglcts/scripts/ |
H A D | verify_kc_cts_rev.py | 52 def __init__(self, url, revision, baseDir, extractDir = "src"): 54 self.url = url 61 execute(["git", "clone", "--no-checkout", self.url, fullDstPath]) 65 execute(["git", "fetch", self.url, "+refs/heads/*:refs/remotes/origin/*"])
|