Home
last modified time | relevance | path

Searched refs:url (Results 226 - 250 of 1046) sorted by relevance

12345678910>>...42

/third_party/skia/third_party/externals/microhttpd/src/testcurl/
H A Dtest_termination.c54 const char *url, in connection_handler()
107 char url[255]; in main() local
108 sprintf (url, "http://127.0.0.1:%d", PORT); in main()
109 curl_easy_setopt (curl, CURLOPT_URL, url); in main()
52 connection_handler(void *cls, struct MHD_Connection *connection, const char *url, const char *method, const char *version, const char *upload_data, size_t * upload_data_size, void **ptr) connection_handler() argument
/third_party/typescript/tests/baselines/reference/
H A DvarArgsOnConstructorTypes.js10 constructor(element: any, url: string) {
13 this.p2 = url;
55 function B(element, url) {
58 _this.p2 = url;
/third_party/python/Lib/urllib/
H A Dresponse.py6 headers and a geturl() method that returns the url.
71 def __init__(self, fp, headers, url, code=None):
73 self.url = url
84 return self.url
/third_party/pulseaudio/src/modules/rtp/
H A Drtsp_client.c76 char *url; member
126 pa_xfree(c->url); in pa_rtsp_client_free()
430 return c->url != NULL && c->ioline != NULL; in pa_rtsp_exec_ready()
433 void pa_rtsp_set_url(pa_rtsp_client *c, const char *url) { in pa_rtsp_set_url() argument
436 c->url = pa_xstrdup(url); in pa_rtsp_set_url()
476 pa_assert(c->url); in rtsp_exec()
483 pa_strbuf_printf(buf, "%s %s RTSP/1.0\r\nCSeq: %d\r\n", cmd, c->url, ++c->cseq); in rtsp_exec()
525 char *url; in pa_rtsp_options() local
530 url in pa_rtsp_options()
[all...]
/test/xts/acts/telephony/networkmanager/ndk/networkndk/entry/src/main/cpp/
H A Dnet_stack_ndk_test.cpp248 const char *url = WEBSOCKET_ADDRESS; in OHWebSocketClientConnect() local
249 ret = OH_WebSocketClient_Connect(client, url, client->requestOptions); in OHWebSocketClientConnect()
251 const char *url = "192.168.123.255"; in OHWebSocketClientConnect() local
252 ret = OH_WebSocketClient_Connect(client, url, client->requestOptions); in OHWebSocketClientConnect()
254 const char *url = WEBSOCKET_ADDRESS; in OHWebSocketClientConnect() local
255 ret = OH_WebSocketClient_Connect(nullptr, url, client->requestOptions); in OHWebSocketClientConnect()
257 const char *url = ""; in OHWebSocketClientConnect() local
258 ret = OH_WebSocketClient_Connect(client, url, client->requestOptions); in OHWebSocketClientConnect()
280 const char *url = WEBSOCKET_ADDRESS; in OHWebSocketClientSend() local
281 ret = OH_WebSocketClient_Connect(client, url, clien in OHWebSocketClientSend()
311 const char *url = WEBSOCKET_ADDRESS; OHWebSocketClientClose() local
319 const char *url = WEBSOCKET_ADDRESS; OHWebSocketClientClose() local
361 const char *url = WEBSOCKET_ADDRESS; OHWebSocketClientDestroy() local
373 const char *url = WEBSOCKET_ADDRESS; OHWebSocketClientDestroy() local
[all...]
/third_party/ffmpeg/libavformat/
H A Dimg2enc.c65 const char *str = strrchr(s->url, '.'); in write_header()
88 ret = avformat_alloc_output_context2(&fmt, NULL, img->muxer, s->url); in write_muxed_file()
149 av_strlcpy(filename, s->url, sizeof(filename)); in write_packet()
155 if (!strftime(filename, sizeof(filename), s->url, tm)) { in write_packet()
160 if (av_get_frame_filename2(filename, sizeof(filename), s->url, pkt->pts, AV_FRAME_FILENAME_FLAGS_MULTIPLE) < 0) { in write_packet()
164 } else if (av_get_frame_filename2(filename, sizeof(filename), s->url, in write_packet()
168 av_log(s, AV_LOG_WARNING, "The specified filename '%s' does not contain an image sequence pattern or a pattern is invalid.\n", s->url); in write_packet()
172 av_strlcpy(filename, s->url, sizeof(filename)); in write_packet()
H A Drtmphttp.c187 char headers[1024], url[1024]; in rtmp_http_open() local
203 ff_url_join(url, sizeof(url), "https", NULL, rt->host, rt->port, "/open/1"); in rtmp_http_open()
207 ff_url_join(url, sizeof(url), "http", NULL, rt->host, rt->port, "/open/1"); in rtmp_http_open()
211 if ((ret = ffurl_alloc(&rt->stream, url, AVIO_FLAG_READ_WRITE, &h->interrupt_callback)) < 0) in rtmp_http_open()
/third_party/curl/lib/
H A Dhttp1.c142 CURLU *url = NULL; in start_req() local
222 url = curl_url(); in start_req()
223 if(!url) { in start_req()
232 uc = curl_url_set(url, CURLUPART_URL, tmp, url_options); in start_req()
238 if(!url && (options & H1_PARSE_OPT_STRICT)) { in start_req()
244 if(url) { in start_req()
245 result = Curl_http_req_make2(&parser->req, m, m_len, url, scheme_default); in start_req()
257 curl_url_cleanup(url); in start_req()
/third_party/skia/third_party/externals/swiftshader/tests/regres/llvm/
H A Dllvm.go70 url, sig, key, err := v.DownloadInfoForOS(osName)
75 resp, err := http.Get(url)
77 return nil, fmt.Errorf("Could not download LLVM from %v: %v", url, err)
83 return nil, fmt.Errorf("Could not download LLVM from %v: %v", url, err)
104 // DownloadInfoForOS returns the download url, signature and key for the given
106 func (v Version) DownloadInfoForOS(os string) (url, sig, key string, err error) {
112 url = "https://github.com/llvm/llvm-project/releases/download/llvmorg-10.0.0/clang+llvm-10.0.0-x86_64-linux-gnu-ubuntu-18.04.tar.xz"
116 url = "https://github.com/llvm/llvm-project/releases/download/llvmorg-10.0.0/clang+llvm-10.0.0-x86_64-apple-darwin.tar.xz"
120 url = "https://github.com/llvm/llvm-project/releases/download/llvmorg-10.0.0/LLVM-10.0.0-win64.exe"
/third_party/curl/tests/unit/
H A Dunit1621.c27 #include "url.h"
47 char *stripcredentials(const char *url);
70 const char *url = tests[i].input;
71 char *stripped = stripcredentials(url);
/third_party/curl/docs/examples/
H A Dhttpput-postfields.c54 char *url; in main() local
59 url = argv[1]; in main()
87 curl_easy_setopt(curl, CURLOPT_URL, url); in main()
/third_party/node/test/fixtures/wpt/url/
H A Durl-setters.any.js7 // Keep this file in sync with url-setters-a-area.window.js.
26 var url = new URL(test_case.href);
27 url[attribute_to_be_set] = test_case.new_value;
29 assert_equals(url[attribute], test_case.expected[attribute])
/third_party/node/test/parallel/
H A Dtest-http-url.parse-basic.js26 const url = require('url');
35 assert.strictEqual(request.url, '/');
36 // The host header should use the url.parse.hostname
50 testURL = url.parse(`http://localhost:${this.address().port}`);
H A Dtest-http-url.parse-post.js26 const url = require('url');
31 // url.parse should not mess with the method
34 assert.strictEqual(request.url, '/asdf?qwer=zxcv');
35 // The host header should use the url.parse.hostname
49 testURL = url.parse(`http://localhost:${this.address().port}/asdf?qwer=zxcv`);
/third_party/node/benchmark/url/
H A Durl-format.js3 const url = require('url');
18 // Force-optimize url.format() so that the benchmark doesn't get
21 url.format(inputs[name]);
25 url.format(input);
H A Dlegacy-url-parse.js3 const url = require('url');
13 let result = url.parse(data[0]); // Avoid dead code elimination
17 result = url.parse(data[i]);
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/wps/
H A Dhttp_client.h21 char * http_client_url_parse(const char *url, struct sockaddr_in *dst,
29 struct http_client * http_client_url(const char *url,
38 char * http_link_update(char *url, const char *base);
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/wps/
H A Dhttp_client.h21 char * http_client_url_parse(const char *url, struct sockaddr_in *dst,
29 struct http_client * http_client_url(const char *url,
38 char * http_link_update(char *url, const char *base);
/third_party/node/deps/ada/
H A Dada.cpp10366 template ada::result<url> parse<url>(std::string_view input,
10367 const url* base_url = nullptr);
10521 // Let path be url's path.
10522 // If url's scheme is "file", path's size is 1, and path[0] is a normalized
10546 // Let path be url's path.
10547 // If url's scheme is "file", path's size is 1, and path[0] is a normalized
10893 * The spec at https://url.spec.whatwg.org/#hostname-state expects us to
11117 // If url's scheme is "file", url'
[all...]
/third_party/node/lib/internal/modules/esm/
H A Dresolve.js40 const { URL, pathToFileURL, fileURLToPath, isURL, toPathIfFileURL } = require('internal/url');
42 const { canParse: URLCanParse } = internalBinding('url');
121 * @param {URL} url - The URL of the module being resolved.
126 function emitLegacyIndexDeprecation(url, packageJSONUrl, base, main) {
127 const format = defaultGetFormatWithoutErrors(url);
129 const path = fileURLToPath(url);
157 * @param {string | URL} url
160 function fileExists(url) {
161 return internalModuleStat(toNamespacedPath(toPathIfFileURL(url))) === 0;
808 * @param {URL} url
[all...]
/third_party/node/lib/
H A Durl.js50 // WHATWG URL implementation provided by internal/url
62 } = require('internal/url');
64 const bindingUrl = internalBinding('url');
68 // Original url.parse() API
127 function urlParse(url, parseQueryString, slashesDenoteHost) {
131 '`url.parse()` behavior is not standardized and prone to ' +
133 'instead. CVEs are not issued for `url.parse()` vulnerabilities.',
139 if (url instanceof Url) return url;
142 urlObject.parse(url, parseQueryStrin
[all...]
/third_party/node/lib/internal/source_map/
H A Dsource_map.js246 const url = map.sources[i];
247 originalToCanonicalURLMap[url] = url;
248 ArrayPrototypePush(sources, url);
249 this.#sources[url] = true;
252 this.#sourceContentByURL[url] = map.sourcesContent[i];
/third_party/node/deps/npm/lib/utils/
H A Dsbom-cyclonedx.js147 if (node.package?.repository?.url) {
148 component.externalReferences.push(extRef(REF_VCS, node.package.repository.url))
155 if (node.package?.bugs?.url) {
156 component.externalReferences.push(extRef(REF_ISSUE_TRACKER, node.package.bugs.url))
185 const extRef = (type, url) => ({ type, url })
/third_party/skia/tools/skqp/
H A Dcut_release.py22 def urlopen(url):
24 return urllib2.urlopen(urllib2.Request(url, headers={'Cookie': cookie}))
29 for url in urls:
30 urllib.urlretrieve(url, tmp + '/' + url[url.rindex('/') + 1:])
/third_party/node/test/internet/
H A Dtest-inspector-help-page.js16 function check(url, cb) {
17 https.get(url, { agent: new https.Agent() }, common.mustCall((res) => {
21 return check(new URL(res.headers.location, url), cb);

Completed in 27 milliseconds

12345678910>>...42