Home
last modified time | relevance | path

Searched refs:numSockets (Results 1 - 5 of 5) sorted by relevance

/base/web/webview/ohos_nweb/include/
H A Dnweb_helper.h56 void PrepareForPageLoad(std::string url, bool preconnectable, int32_t numSockets);
/base/web/webview/ohos_nweb/src/
H A Dnweb_helper.cpp805 void NWebHelper::PrepareForPageLoad(std::string url, bool preconnectable, int32_t numSockets) in PrepareForPageLoad() argument
812 nwebEngine_->PrepareForPageLoad(url, preconnectable, numSockets); in PrepareForPageLoad()
/base/web/webview/interfaces/kits/cj/src/
H A Dwebview_ffi.cpp1168 int32_t FfiOHOSWebviewCtlPrepareForPageLoad(char *url, bool preconnectable, int32_t numSockets) in FfiOHOSWebviewCtlPrepareForPageLoad() argument
1182 if (numSockets <= 0 || static_cast<uint32_t>(numSockets) > SOCKET_MAXIMUM) { in FfiOHOSWebviewCtlPrepareForPageLoad()
1185 NWeb::NWebHelper::Instance().PrepareForPageLoad(webSrc, preconnectable, numSockets); in FfiOHOSWebviewCtlPrepareForPageLoad()
/base/web/webview/interfaces/kits/cj/include/
H A Dwebview_ffi.h89 FFI_EXPORT int32_t FfiOHOSWebviewCtlPrepareForPageLoad(char *url, bool preconnectable, int32_t numSockets);
/base/web/webview/interfaces/kits/napi/webviewcontroller/
H A Dnapi_webview_controller.cpp4664 int32_t numSockets = 0; in PrepareForPageLoad() local
4665 if (!NapiParseUtils::ParseInt32(env, argv[INTEGER_TWO], numSockets)) { in PrepareForPageLoad()
4669 if (numSockets <= 0 || static_cast<uint32_t>(numSockets) > SOCKET_MAXIMUM) { in PrepareForPageLoad()
4674 NWebHelper::Instance().PrepareForPageLoad(url, preconnectable, numSockets); in PrepareForPageLoad()

Completed in 16 milliseconds