Home
last modified time | relevance | path

Searched refs:url (Results 126 - 150 of 1013) sorted by relevance

12345678910>>...41

/third_party/node/lib/internal/modules/esm/
H A Dassert.js49 * @param {string} url The URL of the imported module, for error reporting.
56 function validateAttributes(url, format,
78 return handleInvalidType(url, importAttributes.type);
89 throw new ERR_IMPORT_ASSERTION_TYPE_MISSING(url, validType);
91 return handleInvalidType(url, importAttributes.type);
97 * @param {string} url The resolved URL for the module to be imported
100 function handleInvalidType(url, type) {
110 throw new ERR_IMPORT_ASSERTION_TYPE_FAILED(url, type);
/third_party/curl/docs/examples/
H A Dcrawler.c78 CURL *make_handle(char *url) in make_handle() argument
84 curl_easy_setopt(handle, CURLOPT_URL, url); in make_handle()
120 size_t follow_links(CURLM *multi_handle, memory *mem, char *url) in follow_links() argument
124 htmlDocPtr doc = htmlReadMemory(mem->buf, mem->size, url, NULL, opts); in follow_links()
147 href = xmlBuildURI(href, (xmlChar *) url); in follow_links()
200 char *url; in main() local
203 curl_easy_getinfo(handle, CURLINFO_EFFECTIVE_URL, &url); in main()
210 printf("[%d] HTTP 200 (%s): %s\n", complete, ctype, url); in main()
213 pending += follow_links(multi_handle, mem, url); in main()
219 printf("[%d] HTTP %d: %s\n", complete, (int) res_status, url); in main()
[all...]
/third_party/node/lib/internal/source_map/
H A Dsource_map_cache.js50 const { fileURLToPath, pathToFileURL, URL } = require('internal/url');
128 // Bail out when there is no source map url.
138 const url = data ? null : sourceMapURL;
144 url,
151 url,
164 url,
193 const url = new URL(sourceMappingURL);
194 switch (url.protocol) {
196 return sourceMapFromDataUrl(sourceURL, url.pathname);
198 debug(`unknown protocol ${url
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/ap/
H A Dhs20.c104 u8 osu_method, const char *url) in hs20_send_wnm_notification()
113 if (url) { in hs20_send_wnm_notification()
114 len = 1 + os_strlen(url); in hs20_send_wnm_notification()
117 "WNM-Notification: '%s'", url); in hs20_send_wnm_notification()
136 if (url) { in hs20_send_wnm_notification()
138 wpabuf_put_data(buf, url, len - 1); in hs20_send_wnm_notification()
190 const u8 *addr, const char *url) in hs20_send_wnm_notification_t_c()
196 if (!url) { in hs20_send_wnm_notification_t_c()
201 url_len = os_strlen(url); in hs20_send_wnm_notification_t_c()
205 url); in hs20_send_wnm_notification_t_c()
103 hs20_send_wnm_notification(struct hostapd_data *hapd, const u8 *addr, u8 osu_method, const char *url) hs20_send_wnm_notification() argument
189 hs20_send_wnm_notification_t_c(struct hostapd_data *hapd, const u8 *addr, const char *url) hs20_send_wnm_notification_t_c() argument
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/ap/
H A Dhs20.c104 u8 osu_method, const char *url) in hs20_send_wnm_notification()
113 if (url) { in hs20_send_wnm_notification()
114 len = 1 + os_strlen(url); in hs20_send_wnm_notification()
117 "WNM-Notification: '%s'", url); in hs20_send_wnm_notification()
136 if (url) { in hs20_send_wnm_notification()
138 wpabuf_put_data(buf, url, len - 1); in hs20_send_wnm_notification()
190 const u8 *addr, const char *url) in hs20_send_wnm_notification_t_c()
196 if (!url) { in hs20_send_wnm_notification_t_c()
201 url_len = os_strlen(url); in hs20_send_wnm_notification_t_c()
205 url); in hs20_send_wnm_notification_t_c()
103 hs20_send_wnm_notification(struct hostapd_data *hapd, const u8 *addr, u8 osu_method, const char *url) hs20_send_wnm_notification() argument
189 hs20_send_wnm_notification_t_c(struct hostapd_data *hapd, const u8 *addr, const char *url) hs20_send_wnm_notification_t_c() argument
[all...]
/third_party/node/src/inspector/
H A Dworker_inspector.h23 const std::string& url,
47 url(target_url), in WorkerInfo()
50 std::string url; member
57 const std::string& url,
63 uint64_t thread_id, const std::string& url, const std::string& name) { in NewParentInspectorHandle()
65 thread_id, url, parent_thread_, wait_, name); in NewParentInspectorHandle()
72 const std::string& url() const { return url_; } in url() function in node::inspector::ParentInspectorHandle
91 uint64_t thread_id, const std::string& url, const std::string& name);
62 NewParentInspectorHandle( uint64_t thread_id, const std::string& url, const std::string& name) NewParentInspectorHandle() argument
/third_party/node/deps/npm/node_modules/@sigstore/sign/dist/external/
H A Drekor.js46 const url = `${this.baseUrl}/api/v1/log/entries`;
47 const response = await this.fetch(url, {
62 const url = `${this.baseUrl}/api/v1/log/entries/${uuid}`;
63 const response = await this.fetch(url);
74 const url = `${this.baseUrl}/api/v1/index/retrieve`;
75 const response = await this.fetch(url, {
90 const url = `${this.baseUrl}/api/v1/log/entries/retrieve`;
91 const response = await this.fetch(url, {
/third_party/node/deps/openssl/openssl/apps/lib/
H A Dhttp_server.c292 char *meth, *url, *end; in http_server_get_asn1_req() local
340 url = meth + 3; in http_server_get_asn1_req()
342 || (url++, strncmp(meth, "POST ", 5) == 0)) { in http_server_get_asn1_req()
347 *(url++) = '\0'; in http_server_get_asn1_req()
348 while (*url == ' ') in http_server_get_asn1_req()
349 url++; in http_server_get_asn1_req()
350 if (*url != '/') { in http_server_get_asn1_req()
353 meth, url); in http_server_get_asn1_req()
357 url++; in http_server_get_asn1_req()
360 for (end = url; *en in http_server_get_asn1_req()
[all...]
/third_party/openssl/apps/lib/
H A Dhttp_server.c292 char *meth, *url, *end; in http_server_get_asn1_req() local
340 url = meth + 3; in http_server_get_asn1_req()
342 || (url++, strncmp(meth, "POST ", 5) == 0)) { in http_server_get_asn1_req()
347 *(url++) = '\0'; in http_server_get_asn1_req()
348 while (*url == ' ') in http_server_get_asn1_req()
349 url++; in http_server_get_asn1_req()
350 if (*url != '/') { in http_server_get_asn1_req()
353 meth, url); in http_server_get_asn1_req()
357 url++; in http_server_get_asn1_req()
360 for (end = url; *en in http_server_get_asn1_req()
[all...]
/third_party/node/test/fixtures/wpt/common/
H A Dworklet-reftest.js4 * importWorklet(CSS.paintWorklet, {url: 'script.js'});
11 let url;
13 url = code.url;
16 url = URL.createObjectURL(blob);
19 return worklet.addModule(url);
/third_party/skia/tools/skiaserve/urlhandlers/
H A DDataHandler.cpp16 bool DataHandler::canHandle(const char* method, const char* url) { in canHandle() argument
19 0 == strncmp(url, kBaseUrl, strlen(kBaseUrl)); in canHandle()
23 const char* url, const char* method, in handle()
26 SkStrSplit(url, "/", &commands); in handle()
33 SkRef(request->fUrlDataManager.getDataFromUrl(SkString(url)))); 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/ffmpeg/libavformat/
H A Ddashdec.c37 char *url; member
162 static int ishttp(char *url) in ishttp() argument
164 const char *proto_name = avio_find_protocol_name(url); in ishttp()
322 av_freep(&(*seg)->url); in free_fragment()
401 static int open_url(AVFormatContext *s, AVIOContext **pb, const char *url, in open_url() argument
410 if (av_strstart(url, "crypto", NULL)) { in open_url()
411 if (url[6] == '+' || url[6] == ':') in open_url()
412 proto_name = avio_find_protocol_name(url + 7); in open_url()
416 proto_name = avio_find_protocol_name(url); in open_url()
477 char *url = NULL; get_content_url() local
703 resolve_content_path(AVFormatContext *s, const char *url, int *max_url_size, xmlNodePtr *baseurl_nodes, int n_baseurl_nodes) resolve_content_path() argument
822 parse_manifest_representation(AVFormatContext *s, const char *url, xmlNodePtr node, xmlNodePtr adaptionset_node, xmlNodePtr mpd_baseurl_node, xmlNodePtr period_baseurl_node, xmlNodePtr period_segmenttemplate_node, xmlNodePtr period_segmentlist_node, xmlNodePtr fragment_template_node, xmlNodePtr content_component_node, xmlNodePtr adaptionset_baseurl_node, xmlNodePtr adaptionset_segmentlist_node, xmlNodePtr adaptionset_supplementalproperty_node) parse_manifest_representation() argument
1114 parse_manifest_adaptationset(AVFormatContext *s, const char *url, xmlNodePtr adaptionset_node, xmlNodePtr mpd_baseurl_node, xmlNodePtr period_baseurl_node, xmlNodePtr period_segmenttemplate_node, xmlNodePtr period_segmentlist_node) parse_manifest_adaptationset() argument
1199 parse_manifest(AVFormatContext *s, const char *url, AVIOContext *in) parse_manifest() argument
1684 char *url = NULL; open_input() local
1832 nested_io_open(AVFormatContext *s, AVIOContext **pb, const char *url, int flags, AVDictionary **opts) nested_io_open() argument
1976 char *url =NULL; is_common_init_section_exist() local
[all...]
/third_party/curl/tests/libtest/
H A Dlib1560.c755 static int checkurl(const char *org, const char *url, const char *out) in checkurl() argument
757 if(strcmp(out, url)) { in checkurl()
762 org, out, url); in checkurl()
1014 if(!strcmp("url", part)) in part2id()
1153 char *url = NULL; in set_url() local
1154 rc = curl_url_get(urlp, CURLUPART_URL, &url, 0); in set_url()
1161 if(checkurl(set_url_list[i].in, url, set_url_list[i].out)) { in set_url()
1165 curl_free(url); in set_url()
1200 char *url = NULL; in setget_parts() local
1214 curl_free(url); in setget_parts()
1244 char *url = NULL; set_parts() local
1292 char *url = NULL; get_url() local
1397 char *url; append() local
1421 char *url; scopeid() local
1696 const char *url[] = { urldup() local
[all...]
H A Dlib506.c34 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...]
/third_party/node/test/fixtures/wpt/url/
H A DIdnaTestV2.window.js33 const url = new URL(`https://${encodedInput}/x`);
34 assert_equals(url.host, idnaTest.output);
35 assert_equals(url.hostname, idnaTest.output);
36 assert_equals(url.pathname, "/x");
37 assert_equals(url.href, `https://${idnaTest.output}/x`);
/third_party/node/deps/npm/node_modules/@npmcli/agent/lib/
H A Dindex.js11 const getAgent = (url, { agent, proxy, noProxy, ...options } = {}) => {
17 url = new URL(url)
19 const proxyForUrl = getProxy(url, { proxy, noProxy })
27 secureEndpoint: url.protocol === 'https:',
/third_party/openGLES/extensions/
H A Dmakeindex.py22 # url Relative URL to extension spec
30 return '<a href="' + url + '">' + name + '</a>'
66 url = ext['esurl']
68 url = ext['url']
71 print('<li value=', index, '>', makeLink(name, url), sep='')
75 print('\n <br> ', makeLink(alias, url), sep='')
/third_party/skia/third_party/externals/opengl-registry/extensions/
H A Dmakeindex.py32 # url Relative URL to extension spec
40 return '<a href="' + url + '">' + name + '</a>'
76 url = ext['esurl']
78 url = ext['url']
81 print('<li value=', index, '>', makeLink(name, url), sep='')
85 print('\n <br> ', makeLink(alias, url), sep='')
/third_party/curl/tests/http/clients/
H A Dtls-session-reuse.c145 struct curl_slist *resolve, const char *url) in add_transfer()
157 curl_easy_setopt(easy, CURLOPT_URL, url); in add_transfer()
181 const char *url; in main() local
199 url = argv[1]; in main()
205 if(curl_url_set(cu, CURLUPART_URL, url, 0)) { in main()
206 fprintf(stderr, "not a URL: '%s'\n", url); in main()
210 fprintf(stderr, "could not get host of '%s'\n", url); in main()
214 fprintf(stderr, "could not get port of '%s'\n", url); in main()
237 add_transfer(multi, share, &resolve, url); in main()
263 add_transfer(multi, share, &resolve, url); in main()
144 add_transfer(CURLM *multi, CURLSH *share, struct curl_slist *resolve, const char *url) add_transfer() argument
[all...]
/third_party/curl/lib/
H A Durlapi.c30 #include "url.h"
105 static const char *find_host_sep(const char *url) in find_host_sep() argument
111 sep = strstr(url, "//"); in find_host_sep()
113 sep = url; in find_host_sep()
121 sep = url + strlen(url); in find_host_sep()
124 query = url + strlen(url); in find_host_sep()
144 static CURLUcode urlencode_str(struct dynbuf *o, const char *url, in urlencode_str() argument
151 const unsigned char *host_sep = (const unsigned char *) url; in urlencode_str()
203 Curl_is_absolute_url(const char *url, char *buf, size_t buflen, bool guess_scheme) Curl_is_absolute_url() argument
392 junkscan(const char *url, size_t *urllen, unsigned int flags) junkscan() argument
1000 parseurl(const char *url, CURLU *u, unsigned int flags) parseurl() argument
1354 parseurl_and_replace(const char *url, CURLU *u, unsigned int flags) parseurl_and_replace() argument
1497 char *url; curl_url_get() local
[all...]
/third_party/node/lib/
H A D_http_common.js59 function parserOnHeaders(headers, url) {
65 this._url += url;
68 // `headers` and `url` are set only if .onHeaders() has not been called for
70 // `url` is not set for response parsers but that's not applicable here since
73 url, statusCode, statusMessage, upgrade,
83 if (url === undefined) {
84 url = parser._url;
99 incoming.url = url;
/third_party/skia/tools/skiaserve/
H A Dskiaserve.cpp56 int invoke(Request* request, MHD_Connection* connection, const char* url, const char* method, in invoke() argument
59 if (fHandlers[i]->canHandle(method, url)) { in invoke()
60 return fHandlers[i]->handle(request, connection, url, method, upload_data, in invoke()
74 const char* url, const char* method, const char* version, in answer_to_connection()
77 SkDebugf("New %s request for %s using version %s\n", method, url, version); in answer_to_connection()
80 int result = kUrlManager.invoke(request, connection, url, method, upload_data, in answer_to_connection()
83 fprintf(stderr, "Invalid method and / or url: %s %s\n", method, url); in answer_to_connection()
73 answer_to_connection(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** con_cls) answer_to_connection() argument
/third_party/skia/tools/skqp/
H A Dfind_commit_with_best_gold_results.py57 def urlopen(url):
59 return urllib2.urlopen(urllib2.Request(url, headers={'Cookie': cookie}))
67 def process(url):
69 testResults = json.load(urlopen(url))
71 sys.stderr.write('\nerror "%s":\n' % url)
82 threads = [threading.Thread(target=process, args=(url,)) for url in all_urls]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/hs20/client/
H A Dosu_client.h89 int cmd_prov(struct hs20_osu_client *ctx, const char *url);
90 int cmd_sim_prov(struct hs20_osu_client *ctx, const char *url);
95 int cmd_oma_dm_prov(struct hs20_osu_client *ctx, const char *url);
96 int cmd_oma_dm_sim_prov(struct hs20_osu_client *ctx, const char *url);
116 int est_load_cacerts(struct hs20_osu_client *ctx, const char *url);
117 int est_build_csr(struct hs20_osu_client *ctx, const char *url);
118 int est_simple_enroll(struct hs20_osu_client *ctx, const char *url,
/third_party/wpa_supplicant/wpa_supplicant-2.9/hs20/client/
H A Dosu_client.h87 int cmd_prov(struct hs20_osu_client *ctx, const char *url);
88 int cmd_sim_prov(struct hs20_osu_client *ctx, const char *url);
93 int cmd_oma_dm_prov(struct hs20_osu_client *ctx, const char *url);
94 int cmd_oma_dm_sim_prov(struct hs20_osu_client *ctx, const char *url);
114 int est_load_cacerts(struct hs20_osu_client *ctx, const char *url);
115 int est_build_csr(struct hs20_osu_client *ctx, const char *url);
116 int est_simple_enroll(struct hs20_osu_client *ctx, const char *url,

Completed in 18 milliseconds

12345678910>>...41