Home
last modified time | relevance | path

Searched refs:url (Results 326 - 350 of 1004) sorted by relevance

1...<<11121314151617181920>>...41

/third_party/elfutils/debuginfod/
H A Ddebuginfod-client.c126 /* Stores current/last url, if any. */
127 char* url; member
192 char url[PATH_MAX]; member
225 const char *url = NULL; in debuginfod_write_callback() local
227 CURLINFO_EFFECTIVE_URL, &url); in debuginfod_write_callback()
228 if (curl_res == CURLE_OK && url) in debuginfod_write_callback()
230 free (d->client->url); in debuginfod_write_callback()
231 d->client->url = strdup(url); /* ok if fails */ in debuginfod_write_callback()
514 const char* url in default_progressfn() local
[all...]
/third_party/nghttp2/src/
H A Dhttp2_test.cc33 #include "url-parser/url_parser.h"
333 auto res = http2::parse_link_header(StringRef::from_lit("<url>")); in test_http2_parse_link_header()
337 // URI url should be extracted in test_http2_parse_link_header()
339 http2::parse_link_header(StringRef::from_lit("<url>; rel=preload")); in test_http2_parse_link_header()
341 CU_ASSERT("url" == res[0].uri); in test_http2_parse_link_header()
344 // With extra link-param. URI url should be extracted in test_http2_parse_link_header()
346 StringRef::from_lit("<url>; rel=preload; as=file")); in test_http2_parse_link_header()
348 CU_ASSERT("url" == res[0].uri); in test_http2_parse_link_header()
351 // With extra link-param. URI url should be extracted in test_http2_parse_link_header()
353 StringRef::from_lit("<url>; a in test_http2_parse_link_header()
[all...]
/third_party/node/test/fixtures/wpt/url/
H A Durl-origin.any.js12 const url = new URL(expected.input, base);
13 assert_equals(url.origin, expected.origin, "origin");
/third_party/node/test/parallel/
H A Dtest-http-url.parse-auth-with-header-in-request.js26 const url = require('url');
43 url.parse(`http://asdf:qwer@localhost:${this.address().port}`);
H A Dtest-http-url.parse-auth.js26 const url = require('url');
44 const testURL = url.parse(`http://user:pass%3A@localhost:${port}`);
H A Dtest-http-url.parse-https.request.js30 const url = require('url');
52 const testURL = url.parse(`https://localhost:${this.address().port}`);
H A Dtest-policy-parse-integrity.js13 const { pathToFileURL } = require('url');
60 for (const [url, { body, integrity }] of Object.entries(resources)) {
61 manifest.resources[url] = {
64 fs.writeFileSync(new URL(url, tmpdirURL.href), body);
H A Dtest-url-format.js4 const url = require('url');
270 const actual = url.format(u);
271 const actualObj = url.format(formatTests[u]);
/third_party/node/src/
H A Dnode_dtrace.h46 char* url; member
51 * The original version of this structure contained only a url and method, just
68 char* url; member
/third_party/node/test/fixtures/wpt/common/
H A Dmedia.js43 * @param {string} url
46 function getMediaContentType(url) {
47 var extension = new URL(url, location).pathname.split(".").pop();
/third_party/node/benchmark/url/
H A Durl-parse.js3 const url = require('url');
20 url.parse(input);
H A Durl-resolve.js3 const url = require('url');
5 hrefs.noscheme = 'some.ran/dom/url.thing?oh=yes#whoo';
27 url.resolve(h, p);
/third_party/python/Tools/scripts/
H A Dgoogle.py21 url = urllib.parse.urljoin('https://www.google.com/search', '?q=' + qstring)
22 webbrowser.open(url)
/third_party/skia/docs/examples/
H A DCanvas_drawAnnotation_2.cpp13 const char url[] = "https://www.google.com/"; in REG_FIDDLE() local
14 sk_sp<SkData> urlData(SkData::MakeWithCString(url)); in REG_FIDDLE()
H A DCanvas_129.cpp13 const char url[] = "https://www.google.com/"; in REG_FIDDLE() local
14 sk_sp<SkData> urlData(SkData::MakeWithCString(url)); in REG_FIDDLE()
/third_party/node/deps/npm/node_modules/ip-address/dist/
H A Dipv6.js174 * @param {string} url - a URL with optional port number
180 static fromURL(url) {
185 if (url.indexOf('[') !== -1 && url.indexOf(']:') !== -1) {
186 result = constants6.RE_URL_WITH_PORT.exec(url);
198 else if (url.indexOf('/') !== -1) {
200 url = url.replace(/^[a-z0-9]+:\/\//, '');
202 result = constants6.RE_URL.exec(url);
214 host = url;
[all...]
/third_party/python/Lib/test/
H A Dtest_urllib.py43 def urlopen(url, data=None, proxies=None):
44 """urlopen(url [, data]) -> open file-like object"""
54 return opener.open(url)
56 return opener.open(url, data)
209 self.assertEqual(self.returned_obj.url, self.quoted_pathname)
359 url = 'http://docs.python.org/library/urllib.html#OK'
362 fp = urllib.request.urlopen(url)
363 self.assertEqual(fp.geturl(), url)
384 # test suite. They use different url opening codepaths. Plain
387 # above attempts at injection within the url _path
[all...]
/third_party/skia/tools/skp/
H A Dgenerate_page_set.py24 url = raw_input('URL? (eg: http://www.google.com): ')
32 'url': url,
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/ap/
H A Dhs20.h17 u8 osu_method, const char *url);
22 const u8 *addr, const char *url);
H A Dwnm_ap.h19 struct sta_info *sta, const char *url,
24 const char *url, const u8 *nei_rep, size_t nei_rep_len,
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/ap/
H A Dhs20.h17 u8 osu_method, const char *url);
22 const u8 *addr, const char *url);
H A Dwnm_ap.h19 struct sta_info *sta, const char *url,
23 const u8 *bss_term_dur, const char *url,
/third_party/curl/tests/libtest/
H A Dlib1565.c44 static const char *url; variable
59 easy_setopt(easy, CURLOPT_URL, url); in run_thread()
111 url = URL; in test()
/third_party/curl/tests/http/clients/
H A Dws-pingpong.c122 const char *url, *payload; in main() local
125 fprintf(stderr, "usage: ws-pingpong url payload\n"); in main()
128 url = argv[1]; in main()
135 curl_easy_setopt(curl, CURLOPT_URL, url); in main()
/third_party/libwebsockets/minimal-examples/ws-client/minimal-ws-client-echo/
H A Dminimal-ws-client-echo.c27 static const char *url = "/", *ads = "localhost", *iface = NULL; variable
48 "url", /* pvo name */
49 (void *)&url /* pvo value */
112 lwsl_user(" lws-minimal-ws-client-echo [-n (no exts)] [-u url] [-p port] [-o (once)]\n"); in main()
115 url = p; in main()

Completed in 10 milliseconds

1...<<11121314151617181920>>...41