Searched refs:isExtentionType (Results 1 - 7 of 7) sorted by relevance
/base/web/webview/interfaces/kits/cj/include/ |
H A D | webview_controller_impl.h | 254 WebMessagePortImpl(int32_t nwebId, std::string port, bool isExtentionType);
|
H A D | webview_ffi.h | 101 FFI_EXPORT CArrI64 FfiOHOSWebviewCtlCreateWebMessagePorts(int64_t id, bool isExtentionType, int32_t *errCode);
|
/base/web/webview/interfaces/kits/napi/webviewcontroller/ |
H A D | webview_controller.h | 433 WebMessagePort(int32_t nwebId, std::string& port, bool isExtentionType);
|
H A D | webview_controller.cpp | 509 WebMessagePort::WebMessagePort(int32_t nwebId, std::string& port, bool isExtentionType) in WebMessagePort() argument 510 : nwebId_(nwebId), portHandle_(port), isExtentionType_(isExtentionType) in WebMessagePort()
|
H A D | napi_webview_controller.cpp | 1862 bool isExtentionType = false; in CreateWebMessagePorts() local 1871 if (!NapiParseUtils::ParseBoolean(env, argv[0], isExtentionType)) { in CreateWebMessagePorts() 1873 NWebError::FormatString(ParamCheckErrorMsgTemplate::TYPE_ERROR, "isExtentionType", "boolean")); in CreateWebMessagePorts() 1899 NAPI_CALL(env, napi_get_boolean(env, isExtentionType, &consParam[i][INTEGER_TWO])); in CreateWebMessagePorts() 1902 napi_get_boolean(env, isExtentionType, &jsExtention); in CreateWebMessagePorts() 1903 napi_set_named_property(env, msgPortObj, "isExtentionType", jsExtention); in CreateWebMessagePorts() 2016 bool isExtentionType = false; in JsConstructor() local 2017 if (!NapiParseUtils::ParseBoolean(env, argv[INTEGER_TWO], isExtentionType)) { in JsConstructor() 2022 WebMessagePort *msgPort = new (std::nothrow) WebMessagePort(webId, portHandle, isExtentionType); in JsConstructor()
|
/base/web/webview/interfaces/kits/cj/src/ |
H A D | webview_controller_impl.cpp | 42 WebMessagePortImpl::WebMessagePortImpl(int32_t nwebId, std::string port, bool isExtentionType) in WebMessagePortImpl() argument 43 : nwebId_(nwebId), portHandle_(port), isExtentionType_(isExtentionType) in WebMessagePortImpl()
|
H A D | webview_ffi.cpp | 863 CArrI64 FfiOHOSWebviewCtlCreateWebMessagePorts(int64_t id, bool isExtentionType, int32_t *errCode) in FfiOHOSWebviewCtlCreateWebMessagePorts() argument 886 auto nativeWebMessagePort = FFIData::Create<WebMessagePortImpl>(nwebId, ports[i], isExtentionType); in FfiOHOSWebviewCtlCreateWebMessagePorts()
|
Completed in 21 milliseconds