Searched refs:urlList (Results 1 - 10 of 10) sorted by relevance
| /third_party/node/deps/undici/src/lib/fetch/ |
| H A D | response.js | 177 const urlList = this[kState].urlList 182 const url = urlList[urlList.length - 1] ?? null 197 return this[kState].urlList.length > 1 341 urlList: init.urlList ? [...init.urlList] : [] 407 urlList: Object.freeze([]),
|
| H A D | util.js | 28 const urlList = response.urlList 29 const length = urlList.length 30 return length === 0 ? null : urlList[length - 1].toString() 62 return request.urlList[request.urlList.length - 1]
|
| H A D | index.js | 265 if (!response.urlList?.length) { 270 const originalURL = response.urlList[0] 695 if (internalResponse.urlList.length === 0) { 696 internalResponse.urlList.push(...request.urlList) 914 response.urlList = [fetchParams.request.urlList[0]] 1237 request.urlList.push(locationURL) 1497 response.urlList = [...httpRequest.urlList] [all...] |
| /foundation/bundlemanager/app_domain_verify/frameworks/common/include/config/ |
| H A D | white_list_config_mgr.h | 36 void Split(std::string urlList);
|
| /base/web/webview/interfaces/kits/napi/webviewcontroller/ |
| H A D | webview_controller.cpp | 1704 ParseURLResult WebviewController::ParseURLList(napi_env env, napi_value value, std::vector<std::string>& urlList) in ParseURLList() argument 1706 if (!NapiParseUtils::ParseStringArray(env, value, urlList)) { in ParseURLList() 1710 for (auto url : urlList) { in ParseURLList() 1760 void WebviewController::InjectOfflineResource(const std::vector<std::string>& urlList, in InjectOfflineResource() argument 1770 std::string originUrl = urlList[0]; in InjectOfflineResource() 1771 if (urlList.size() == 1) { in InjectOfflineResource() 1776 for (size_t i = 1 ; i < urlList.size() ; i++) { in InjectOfflineResource() 1777 nweb_ptr->InjectOfflineResource(urlList[i], originUrl, resource, response_headers, type); in InjectOfflineResource()
|
| H A D | webview_controller.h | 347 ParseURLResult ParseURLList(napi_env env, napi_value value, std::vector<std::string>& urlList); 353 void InjectOfflineResource(const std::vector<std::string>& urlList,
|
| H A D | napi_webview_controller.h | 61 napi_value urlList; member
|
| H A D | napi_webview_controller.cpp | 5898 if ((napi_get_named_property(env, obj, "urlList", &urlListObj) != napi_ok) || in AddResourcesToMemoryCache() 5908 resourceValue.urlList = urlListObj; in AddResourcesToMemoryCache() 5926 std::vector<std::string> urlList; in AddResourceItemToMemoryCache() local 5927 ParseURLResult result = webviewController->ParseURLList(env, resourceValue.urlList, urlList); in AddResourceItemToMemoryCache() 5931 WVLOG_E("BusinessError: 401. The type of 'urlList' must be Array of string."); in AddResourceItemToMemoryCache() 5959 webviewController->InjectOfflineResource(urlList, resource, responseHeaders, type); in AddResourceItemToMemoryCache()
|
| /third_party/node/deps/undici/src/lib/websocket/ |
| H A D | connection.js | 52 urlList: [requestURL],
|
| /third_party/node/deps/undici/ |
| H A D | undici.js | 1158 const urlList = response.urlList; 1159 const length = urlList.length; 1160 return length === 0 ? null : urlList[length - 1].toString(); 1178 return request.urlList[request.urlList.length - 1]; 5723 const urlList = this[kState].urlList; 5724 const url = urlList[urlList [all...] |
Completed in 35 milliseconds