Searched refs:urlTrustList (Results 1 - 11 of 11) sorted by relevance
/base/web/webview/test/fuzztest/ohos_nweb/nwebhelper_fuzzer/ |
H A D | nweb_create_window.h | 220 int SetUrlTrustList(const std::string& urlTrustList) override 224 int SetUrlTrustListWithErrMsg(const std::string& urlTrustList, std::string& detailErrMsg) override
|
/base/web/webview/test/unittest/common/ |
H A D | nweb_create_window.h | 289 int SetUrlTrustList(const std::string& urlTrustList) override 293 int SetUrlTrustListWithErrMsg(const std::string& urlTrustList, std::string& detailErrMsg) override
|
/base/web/webview/ohos_interface/ohos_glue/ohos_nweb/include/ |
H A D | ark_web_nweb.h | 1312 virtual int SetUrlTrustList(const ArkWebString& urlTrustList) = 0; 1409 virtual int SetUrlTrustListWithErrMsg(const ArkWebString& urlTrustList, ArkWebString& detailErrMsg) = 0;
|
/base/web/webview/ohos_interface/ohos_glue/ohos_nweb/bridge/webcore/ |
H A D | ark_web_nweb_impl.h | 1145 * @param urlTrustList The url trust list. 1148 int SetUrlTrustList(const ArkWebString& urlTrustList) override; 1244 * @param urlTrustList The url trust list. 1248 int SetUrlTrustListWithErrMsg(const ArkWebString& urlTrustList, ArkWebString& detailErrMsg) override;
|
H A D | ark_web_nweb_impl.cpp | 1022 int ArkWebNWebImpl::SetUrlTrustList(const ArkWebString& urlTrustList) in SetUrlTrustList() argument 1024 return nweb_nweb_->SetUrlTrustList(ArkWebStringStructToClass(urlTrustList)); in SetUrlTrustList() 1027 int ArkWebNWebImpl::SetUrlTrustListWithErrMsg(const ArkWebString& urlTrustList, ArkWebString& detailErrMsg) in SetUrlTrustListWithErrMsg() argument 1030 int res = nweb_nweb_->SetUrlTrustListWithErrMsg(ArkWebStringStructToClass(urlTrustList), in SetUrlTrustListWithErrMsg()
|
/base/web/webview/ohos_interface/ohos_glue/ohos_nweb/bridge/webview/ |
H A D | ark_web_nweb_wrapper.cpp | 1189 const std::string& urlTrustList, std::string& detailErrMsg) in SetUrlTrustListWithErrMsg() 1191 ArkWebString stUrlTrustList = ArkWebStringClassToStruct(urlTrustList); in SetUrlTrustListWithErrMsg() 1212 int ArkWebNWebWrapper::SetUrlTrustList(const std::string& urlTrustList) in SetUrlTrustList() argument 1214 ArkWebString stUrlTrustList = ArkWebStringClassToStruct(urlTrustList); in SetUrlTrustList() 1188 SetUrlTrustListWithErrMsg( const std::string& urlTrustList, std::string& detailErrMsg) SetUrlTrustListWithErrMsg() argument
|
H A D | ark_web_nweb_wrapper.h | 1168 int SetUrlTrustList(const std::string& urlTrustList) override; 1226 int SetUrlTrustListWithErrMsg(const std::string& urlTrustList, std::string& detailErrMsg) override;
|
/base/web/webview/ohos_interface/include/ohos_nweb/ |
H A D | nweb.h | 1348 * @param urlTrustList The url Trust list. 1350 virtual int SetUrlTrustList(const std::string& urlTrustList) { in SetUrlTrustList() argument 1440 * @param urlTrustList The url Trust list. 1443 virtual int SetUrlTrustListWithErrMsg(const std::string& urlTrustList, std::string& detailErrMsg) { in SetUrlTrustListWithErrMsg() argument
|
/base/web/webview/interfaces/kits/napi/webviewcontroller/ |
H A D | webview_controller.h | 358 ErrCode SetUrlTrustList(const std::string& urlTrustList, std::string& detailErrMsg);
|
H A D | webview_controller.cpp | 1829 ErrCode WebviewController::SetUrlTrustList(const std::string& urlTrustList, std::string& detailErrMsg) in SetUrlTrustList() argument 1837 switch (nweb_ptr->SetUrlTrustListWithErrMsg(urlTrustList, detailErrMsg)) { in SetUrlTrustList()
|
H A D | napi_webview_controller.cpp | 6158 std::string urlTrustList; in SetUrlTrustList() local 6159 if (!NapiParseUtils::ParseString(env, argv[0], urlTrustList)) { in SetUrlTrustList() 6161 NWebError::FormatString(ParamCheckErrorMsgTemplate::TYPE_ERROR, "urlTrustList", "string")); in SetUrlTrustList() 6164 if (urlTrustList.size() > MAX_URL_TRUST_LIST_STR_LEN) { in SetUrlTrustList() 6177 ErrCode ret = webviewController->SetUrlTrustList(urlTrustList, detailMsg); in SetUrlTrustList()
|
Completed in 28 milliseconds