/foundation/communication/netstack/frameworks/js/napi/http/options/src/ |
H A D | http_request_options.cpp | 46 void HttpRequestOptions::SetUrl(const std::string &url) in SetUrl() argument 48 url_ = url; in SetUrl()
|
/third_party/ffmpeg/libavdevice/ |
H A D | openal-dec.c | 142 alcCaptureOpenDevice(ctx->url[0] ? ctx->url : NULL, in read_header()
|
H A D | fbdev_dec.c | 80 if (avctx->url[0]) in fbdev_read_header() 81 device = avctx->url; in fbdev_read_header()
|
H A D | fbdev_enc.c | 55 if (h->url[0]) in fbdev_write_header() 56 device = h->url; in fbdev_write_header()
|
/third_party/curl/tests/unit/ |
H A D | unit1653.c | 47 static CURLUcode parse_port(CURLU *url, in parse_port() argument 55 ret = Curl_parse_port(url, &host, has_scheme); in parse_port()
|
/third_party/node/lib/internal/bootstrap/ |
H A D | realm.js | 111 'url', 123 'url', 343 const url = `node:${this.id}`; 348 url, undefined, exportsKeys,
|
/third_party/node/test/parallel/ |
H A D | test-fs-utimes.js | 27 const url = require('url'); 76 const asUrl = (path) => url.pathToFileURL(path);
|
H A D | test-http-agent-keepalive.js | 38 if (req.url === '/error') { 41 } else if (req.url === '/remote_close') {
|
/third_party/libwebsockets/minimal-examples/http-server/minimal-http-server-deaddrop/mount-origin/ |
H A D | deaddrop.js | 117 var us = e.url.split("/"), ul = us[us.length - 1], n; 134 var us = e.url.split("/"), ul = us[us.length - 1], n; 192 * https:// url itself, otherwise unencrypted
|
/third_party/libwebsockets/plugins/deaddrop/assets/ |
H A D | deaddrop.js | 117 var us = e.url.split("/"), ul = us[us.length - 1], n; 134 var us = e.url.split("/"), ul = us[us.length - 1], n; 192 * https:// url itself, otherwise unencrypted
|
/third_party/skia/third_party/externals/spirv-tools/kokoro/scripts/linux/ |
H A D | build-docker.sh | 34 url=$1 37 git clone ${@:3} "$url" "$dir"
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/kokoro/scripts/linux/ |
H A D | build-docker.sh | 34 url=$1 37 git clone ${@:3} "$url" "$dir"
|
/third_party/skia/third_party/externals/icu/source/i18n/unicode/ |
H A D | vtzone.h | 121 * @param url Receives the RFC2445 TZURL property value. 125 UBool getTZURL(UnicodeString& url) const; 129 * @param url The TZURL property value. 132 void setTZURL(const UnicodeString& url);
|
/third_party/typescript/tests/baselines/reference/ |
H A D | importMeta(module=commonjs,target=es5).js | 6 const response = await fetch(new URL("../hamsters.jpg", import.meta.url).toString()); 85 case 0: return [4 /*yield*/, fetch(new URL("../hamsters.jpg", import.meta.url).toString())];
|
H A D | importMeta(module=es2020,target=es5).js | 6 const response = await fetch(new URL("../hamsters.jpg", import.meta.url).toString()); 83 case 0: return [4 /*yield*/, fetch(new URL("../hamsters.jpg", import.meta.url).toString())];
|
H A D | importMeta(module=esnext,target=es5).js | 6 const response = await fetch(new URL("../hamsters.jpg", import.meta.url).toString()); 83 case 0: return [4 /*yield*/, fetch(new URL("../hamsters.jpg", import.meta.url).toString())];
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/utils/ |
H A D | browser.c | 151 int hs20_web_browser(const char *url) in hs20_web_browser() argument 208 webkit_web_view_load_uri(view, url); in hs20_web_browser()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/hostapd/ |
H A D | ap_ctrl_iface.c | 600 const char *url; in hostapd_ctrl_iface_hs20_wnm_notif() local 604 url = cmd + 17; in hostapd_ctrl_iface_hs20_wnm_notif() 605 if (*url == '\0') { in hostapd_ctrl_iface_hs20_wnm_notif() 606 url = NULL; in hostapd_ctrl_iface_hs20_wnm_notif() 608 if (*url != ' ') in hostapd_ctrl_iface_hs20_wnm_notif() 610 url++; in hostapd_ctrl_iface_hs20_wnm_notif() 611 if (*url == '\0') in hostapd_ctrl_iface_hs20_wnm_notif() 612 url = NULL; in hostapd_ctrl_iface_hs20_wnm_notif() 615 return hs20_send_wnm_notification(hapd, addr, 1, url); in hostapd_ctrl_iface_hs20_wnm_notif() 802 const char *url, *timerst in hostapd_ctrl_iface_ess_disassoc() local 843 char *url = NULL; hostapd_ctrl_iface_bss_tm_req() local [all...] |
/foundation/arkui/ace_engine/frameworks/bridge/plugin_frontend/ |
H A D | plugin_frontend.cpp | 209 const auto& loadCallback = [weakEngine = WeakPtr<Framework::JsEngine>(jsEngine_)](const std::string& url, in InitializeFrontendDelegate() 213 jsEngine->LoadPluginComponent(url, jsPage, isMainPage); in InitializeFrontendDelegate() 392 UIContentErrorCode PluginFrontend::RunPage(const std::string& url, const std::string& params) in RunPage() argument 396 return delegate_->RunPage(url, params); in RunPage() 399 void PluginFrontend::ReplacePage(const std::string& url, const std::string& params) in ReplacePage() argument 402 delegate_->Replace(url, params); in ReplacePage() 405 void PluginFrontend::PushPage(const std::string& url, const std::string& params) in PushPage() argument 408 delegate_->Push(url, params); in PushPage()
|
/foundation/arkui/ace_engine/frameworks/bridge/js_frontend/ |
H A D | js_frontend.cpp | 301 const std::string& url, const RefPtr<Framework::JsAcePage>& jsPage, bool isMainPage) { in InitializeFrontendDelegate() 306 jsEngine->LoadJs(url, jsPage, isMainPage); in InitializeFrontendDelegate() 485 UIContentErrorCode JsFrontend::RunPage(const std::string& url, const std::string& params) in RunPage() argument 489 return delegate_->RunPage(url, params); in RunPage() 495 void JsFrontend::PushPage(const std::string& url, const std::string& params) in PushPage() argument 498 delegate_->Push(url, params); in PushPage() 502 void JsFrontend::ReplacePage(const std::string& url, const std::string& params) in ReplacePage() argument 505 delegate_->Replace(url, params); in ReplacePage()
|
/foundation/multimedia/av_codec/services/media_engine/plugins/source/http_source/http/ |
H A D | http_media_downloader.cpp | 68 HttpMediaDownloader::HttpMediaDownloader(std::string url) in HttpMediaDownloader() argument 70 if (static_cast<int32_t>(url.find(".flv")) != -1) { in HttpMediaDownloader() 139 HttpMediaDownloader::HttpMediaDownloader(std::string url, uint32_t expectBufferDuration) in HttpMediaDownloader() argument 141 if (static_cast<int32_t>(url.find(".flv")) != -1) { in HttpMediaDownloader() 164 bool HttpMediaDownloader::Open(const std::string& url, const std::map<std::string, std::string>& httpHeader) in Open() argument 177 auto downloadDoneCallback = [this] (const std::string &url, const std::string& location) { in Open() 195 requestInfo.url = url; in Open()
|
/third_party/node/src/ |
H A D | module_wrap.cc | 55 Local<String> url, in ModuleWrap() 62 object->SetInternalField(kURLSlot, url); in ModuleWrap() 104 // new ModuleWrap(url, context, source, lineOffset, columnOffset) 105 // new ModuleWrap(url, context, exportNames, syntheticExecutionFunction) 116 Local<String> url = args[0].As<String>(); in New() local 135 // new ModuleWrap(url, context, exportNames, syntheticExecutionFunction) in New() 138 // new ModuleWrap(url, context, source, lineOffset, columOffset, cachedData) in New() 148 Local<Symbol> id_symbol = Symbol::New(isolate, url); in New() 171 module = Module::CreateSyntheticModule(isolate, url, export_names, in New() 187 url, in New() 52 ModuleWrap(Environment* env, Local<Object> object, Local<Module> module, Local<String> url, Local<Object> context_object, Local<Value> synthetic_evaluation_step) ModuleWrap() argument [all...] |
/foundation/arkui/ace_engine/frameworks/core/components/web/resource/ |
H A D | web_delegate.h | 717 void UpdateUrl(const std::string& url); 883 void OnDownloadStart(const std::string& url, const std::string& userAgent, const std::string& contentDisposition, 893 void OnRefreshAccessedHistory(const std::string& url, bool isRefreshed); 897 bool OnHandleInterceptUrlLoading(const std::string& url); 899 void OnResourceLoad(const std::string& url); 929 void OnPageVisible(const std::string& url); 1023 bool OnOpenAppLink(const std::string& url, std::shared_ptr<OHOS::NWeb::NWebAppLinkCallback> callback); 1062 void OnAdsBlocked(const std::string& url, const std::vector<std::string>& adsBlocked); 1091 void CallPopPageSuccessPageUrl(const std::string& url); 1103 void LoadUrl(const std::string& url, cons [all...] |
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/web/cross_platform/ |
H A D | web_delegate_cross.cpp | 112 constexpr char NTC_PARAM_URL[] = "url"; 330 TAG_LOGE(AceLogTag::ACE_WEB, "WebObjectEventManager get WebCommonDialogImpl url failed"); in GetUrl() 1069 auto url = webResourceRequest->GetRequestUrl(); in OnErrorReceive() local 1073 auto request = AceType::MakeRefPtr<WebRequest>(requestHeader, method, url, hasGesture, isMainFrame, isRedirect); in OnErrorReceive() 1166 auto url = webResourceRequest->GetRequestUrl(); in OnHttpErrorReceive() local 1170 auto request = AceType::MakeRefPtr<WebRequest>(requestHeader, method, url, hasGesture, isMainFrame, isRedirect); in OnHttpErrorReceive() 1245 auto url = webResourceRequest->GetRequestUrl(); in OnLoadIntercept() local 1249 auto request = AceType::MakeRefPtr<WebRequest>(requestHeader, method, url, hasGesture, isMainFrame, isRedirect); in OnLoadIntercept() 1303 auto url = webDownloadResponse->GetUrl(); in OnDownloadStart() local 1309 [weak = WeakClaim(this), url, userAgen in OnDownloadStart() 1337 auto url = webCommonDialog->GetUrl(); OnCommonDialog() local [all...] |
/foundation/communication/bluetooth_service/services/bluetooth/stack/src/sdp/ |
H A D | sdp_server.c | 68 static uint16_t SdpAddAttributeForUrl(uint8_t *buffer, uint16_t offset, const uint8_t *url, uint16_t urlLen); 580 int SdpAddDocumentationUrl(uint32_t handle, const uint8_t *url, uint16_t urlLen) in SdpAddDocumentationUrl() argument 582 LOG_INFO("[%{public}s][%{public}d] handle = [0x%08x], url = [%{public}s], urlLen = [%hu]", __FUNCTION__, __LINE__, handle, url, urlLen); in SdpAddDocumentationUrl() 592 offset = SdpAddAttributeForUrl(buffer, 0, url, urlLen); in SdpAddDocumentationUrl() 599 int SdpAddClientExecutableUrl(uint32_t handle, const uint8_t *url, uint16_t urlLen) in SdpAddClientExecutableUrl() argument 601 LOG_INFO("[%{public}s][%{public}d] handle = [0x%08x], url = [%{public}s], urlLen = [%hu]", __FUNCTION__, __LINE__, handle, url, urlLen); in SdpAddClientExecutableUrl() 611 offset = SdpAddAttributeForUrl(buffer, 0, url, urlLen); in SdpAddClientExecutableUrl() 618 int SdpAddIconUrl(uint32_t handle, const uint8_t *url, uint16_ argument 924 SdpAddAttributeForUrl(uint8_t *buffer, uint16_t offset, const uint8_t *url, uint16_t urlLen) SdpAddAttributeForUrl() argument [all...] |