/foundation/distributedhardware/distributed_camera/services/cameraservice/base/src/ |
H A D | dcamera_capture_info_cmd.cpp | 142 cJSON *isCapture = cJSON_GetObjectItemCaseSensitive(capInfo, "IsCapture"); in UmarshalValue() local 143 CHECK_NULL_RETURN((isCapture == nullptr || !cJSON_IsBool(isCapture)), DCAMERA_BAD_VALUE); in UmarshalValue() 144 captureInfo->isCapture_ = cJSON_IsTrue(isCapture); in UmarshalValue()
|
/foundation/window/window_manager/dm/include/ |
H A D | display_manager_agent_default.h | 45 void NotifyCaptureStatusChanged(bool isCapture) override {};
|
/foundation/window/window_manager/dmserver/include/ |
H A D | display_manager_agent_controller.h | 50 void NotifyCaptureStatusChanged(bool isCapture);
|
/foundation/window/window_manager/dm/src/zidl/ |
H A D | display_manager_agent_stub.cpp | 115 bool isCapture = data.ReadBool();
in ProcCaptureStatusChanged() local 116 NotifyCaptureStatusChanged(isCapture);
in ProcCaptureStatusChanged()
|
H A D | display_manager_agent_proxy.cpp | 420 void DisplayManagerAgentProxy::NotifyCaptureStatusChanged(bool isCapture)
in NotifyCaptureStatusChanged() argument 435 if (!data.WriteBool(isCapture)) {
in NotifyCaptureStatusChanged() 436 WLOGFE("Write isCapture failed");
in NotifyCaptureStatusChanged()
|
/foundation/window/window_manager/dm/include/zidl/ |
H A D | display_manager_agent_interface.h | 85 virtual void NotifyCaptureStatusChanged(bool isCapture) = 0;
|
H A D | display_manager_agent_proxy.h | 45 virtual void NotifyCaptureStatusChanged(bool isCapture) override;
|
/foundation/window/window_manager/interfaces/kits/napi/display_runtime/ |
H A D | js_display_listener.h | 47 void OnCaptureStatusChanged(bool isCapture) override;
|
H A D | js_display_listener.cpp | 319 void JsDisplayListener::OnCaptureStatusChanged(bool isCapture)
in OnCaptureStatusChanged() argument 330 auto napiTask = [self = weakRef_, isCapture, env = env_]() {
in OnCaptureStatusChanged() 337 napi_value argv[] = {CreateJsValue(env, isCapture)};
in OnCaptureStatusChanged()
|
H A D | js_display_manager.cpp | 732 bool isCapture = SingletonContainer::Get<DisplayManager>().IsCaptured();
in OnIsCaptured() local 733 WLOGD("[NAPI]" PRIu64", IsCaptured = %{public}u", isCapture);
in OnIsCaptured() 735 napi_get_boolean(env, isCapture, &result);
in OnIsCaptured()
|
/foundation/window/window_manager/dm/test/unittest/ |
H A D | screen_manager_test.cpp | 623 bool isCapture = DisplayManager::GetInstance().IsCaptured(); in HWTEST_F() local 625 ASSERT_FALSE(isCapture); in HWTEST_F() 627 ASSERT_TRUE(isCapture); in HWTEST_F() 645 bool isCapture = DisplayManager::GetInstance().IsCaptured(); in HWTEST_F() local 646 ASSERT_FALSE(isCapture); in HWTEST_F()
|
H A D | display_manager_test.cpp | 1223 bool isCapture = true; in HWTEST_F() local 1224 DisplayManager::GetInstance().pImpl_->NotifyCaptureStatusChanged(isCapture); in HWTEST_F() 1239 bool isCapture = true; in HWTEST_F() local 1240 DisplayManager::GetInstance().pImpl_->NotifyCaptureStatusChanged(isCapture); in HWTEST_F()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/web/cross_platform/ |
H A D | web_delegate_cross.h | 214 std::string title, int mode, std::string defaultFileName, std::vector<std::string> acceptType, bool isCapture) in FileSelectorParam() 215 : title_(title), mode_(mode), defaultFileName_(defaultFileName), acceptType_(acceptType), isCapture_(isCapture) in FileSelectorParam() 213 FileSelectorParam( std::string title, int mode, std::string defaultFileName, std::vector<std::string> acceptType, bool isCapture) FileSelectorParam() argument
|
H A D | web_delegate_cross.cpp | 1436 auto isCapture = webFileChooser->IsCapture(); in OnShowFileChooser() local 1437 auto param = AceType::MakeRefPtr<FileSelectorParam>(title, mode, defaultFileName, acceptType, isCapture); in OnShowFileChooser()
|
/foundation/window/window_manager/interfaces/innerkits/dm/ |
H A D | display_manager.h | 122 * @param isCapture Screen capture status.
124 virtual void OnCaptureStatusChanged([[maybe_unused]]bool isCapture) {}
in OnCaptureStatusChanged() argument
|
/foundation/window/window_manager/dm/src/ |
H A D | display_manager.cpp | 112 void NotifyCaptureStatusChanged(bool isCapture);
334 virtual void NotifyCaptureStatusChanged(bool isCapture) override
336 pImpl_->NotifyCaptureStatusChanged(isCapture);
1375 void DisplayManager::Impl::NotifyCaptureStatusChanged(bool isCapture)
in NotifyCaptureStatusChanged() argument 1383 listener->OnCaptureStatusChanged(isCapture);
in NotifyCaptureStatusChanged()
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/pipeline/ |
H A D | rs_paint_filter_canvas.cpp | 1503 void RSPaintFilterCanvas::SetCapture(bool isCapture) in SetCapture() argument 1505 isCapture_ = isCapture; in SetCapture()
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/pipeline/ |
H A D | rs_paint_filter_canvas.h | 289 void SetCapture(bool isCapture);
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/ |
H A D | js_web.cpp | 1404 JSClass<JSFileSelectorParam>::CustomMethod("isCapture", &JSFileSelectorParam::IsCapture); in JSBind() 1430 auto isCapture = JSVal(ToJSValue(param_->IsCapture())); in IsCapture() local 1431 auto descriptionRef = JSRef<JSVal>::Make(isCapture); in IsCapture()
|
/foundation/window/window_manager/window_scene/screen_session_manager/src/ |
H A D | screen_session_manager.cpp | 5013 bool isCapture = IsCaptured(); in NotifyCaptureStatusChanged() local 5022 agent->NotifyCaptureStatusChanged(isCapture); in NotifyCaptureStatusChanged()
|