Lines Matching defs:url

120     int32_t FfiOHOSWebviewCtlLoadUrl(int64_t id, char *url)
126 std::string webSrc = url;
131 int32_t FfiOHOSWebviewCtlLoadUrlWithHeaders(int64_t id, char *url, ArrWebHeader headers)
146 return nativeWebviewCtl->LoadUrl(url, httpHeaders);
163 int32_t FfiOHOSWebviewCtlPreFetchPage(int64_t id, char *url)
169 std::string webSrc = url;
188 int32_t FfiOHOSWebviewCtlPreFetchPageWithHeaders(int64_t id, char *url, ArrWebHeader headers)
194 std::string webSrc = url;
393 std::string url = "";
394 url = nativeWebviewCtl->GetUrl();
396 ret.data = MallocCString(url);
407 std::string url = "";
408 url = nativeWebviewCtl->GetOriginalUrl();
410 ret.data = MallocCString(url);
435 const char* FfiOHOSCookieMgrFetchCookieSync(const char *url, bool incognitoMode, int32_t* errCode)
437 std::string curl = url;
443 int32_t FfiOHOSCookieMgrConfigCookieSync(const char* url, const char* value, bool incognitoMode)
445 std::string curl = url;
806 int32_t FfiOHOSWebviewCtlPostUrl(int64_t id, char *url, CArrUI8 buffer)
812 std::string sUrl = url;
834 bool ParsePrepareUrl(std::string& url)
836 if (url.size() > URL_MAXIMUM) {
840 if (!regex_match(url, std::regex(URL_REGEXPR, std::regex_constants::icase))) {
847 int32_t FfiOHOSWebviewCtlStartDownload(int64_t id, char *url)
853 std::string webSrc = url;
1168 int32_t FfiOHOSWebviewCtlPrepareForPageLoad(char *url, bool preconnectable, int32_t numSockets)
1171 std::string webSrc = url;
1469 std::string urlValue = nativeWebDownloadItemImpl->url;
1590 webDownloadPb.set_url(nativeWebDownloadItemImpl->url);
1638 webDownloadItem->url = webDownloadPb.url();