Home
last modified time | relevance | path

Searched refs:isPrivacyAuthorityEnabled (Results 1 – 10 of 10) sorted by relevance

/ohos5.0/foundation/multimedia/player_framework/services/services/screen_capture/ipc/
H A Dscreen_capture_service_stub.cpp175 int32_t ScreenCaptureServiceStub::StartScreenCapture(bool isPrivacyAuthorityEnabled) in StartScreenCapture() argument
179 return screenCaptureServer_->StartScreenCapture(isPrivacyAuthorityEnabled); in StartScreenCapture()
182 …reServiceStub::StartScreenCaptureWithSurface(sptr<Surface> surface, bool isPrivacyAuthorityEnabled) in StartScreenCaptureWithSurface() argument
187 return screenCaptureServer_->StartScreenCaptureWithSurface(surface, isPrivacyAuthorityEnabled); in StartScreenCaptureWithSurface()
476 bool isPrivacyAuthorityEnabled = data.ReadBool(); in StartScreenCapture() local
477 int32_t ret = StartScreenCapture(isPrivacyAuthorityEnabled); in StartScreenCapture()
497 bool isPrivacyAuthorityEnabled = data.ReadBool(); in StartScreenCaptureWithSurface() local
498 int32_t ret = StartScreenCaptureWithSurface(surface, isPrivacyAuthorityEnabled); in StartScreenCaptureWithSurface()
H A Dscreen_capture_service_proxy.h38 int32_t StartScreenCapture(bool isPrivacyAuthorityEnabled) override;
39 …int32_t StartScreenCaptureWithSurface(sptr<Surface> surface, bool isPrivacyAuthorityEnabled) overr…
H A Di_standard_screen_capture_service.h43 virtual int32_t StartScreenCapture(bool isPrivacyAuthorityEnabled = false) = 0;
44 …t32_t StartScreenCaptureWithSurface(sptr<Surface> surface, bool isPrivacyAuthorityEnabled = false)…
H A Dscreen_capture_service_stub.h40 int32_t StartScreenCapture(bool isPrivacyAuthorityEnabled) override;
41 …int32_t StartScreenCaptureWithSurface(sptr<Surface> surface, bool isPrivacyAuthorityEnabled) overr…
H A Dscreen_capture_service_proxy.cpp250 int32_t ScreenCaptureServiceProxy::StartScreenCapture(bool isPrivacyAuthorityEnabled) in StartScreenCapture() argument
259 token = data.WriteBool(isPrivacyAuthorityEnabled); in StartScreenCapture()
269 …eServiceProxy::StartScreenCaptureWithSurface(sptr<Surface> surface, bool isPrivacyAuthorityEnabled) in StartScreenCaptureWithSurface() argument
290 token = data.WriteBool(isPrivacyAuthorityEnabled); in StartScreenCaptureWithSurface()
/ohos5.0/foundation/multimedia/player_framework/services/include/
H A Di_screen_capture_service.h40 virtual int32_t StartScreenCapture(bool isPrivacyAuthorityEnabled = false) = 0;
41 …t32_t StartScreenCaptureWithSurface(sptr<Surface> surface, bool isPrivacyAuthorityEnabled = false)…
/ohos5.0/foundation/multimedia/player_framework/services/services/screen_capture/client/
H A Dscreen_capture_client.cpp196 int32_t ScreenCaptureClient::StartScreenCapture(bool isPrivacyAuthorityEnabled) in StartScreenCapture() argument
200 return screenCaptureProxy_->StartScreenCapture(isPrivacyAuthorityEnabled); in StartScreenCapture()
203 …CaptureClient::StartScreenCaptureWithSurface(sptr<Surface> surface, bool isPrivacyAuthorityEnabled) in StartScreenCaptureWithSurface() argument
207 return screenCaptureProxy_->StartScreenCaptureWithSurface(surface, isPrivacyAuthorityEnabled); in StartScreenCaptureWithSurface()
H A Dscreen_capture_client.h42 int32_t StartScreenCapture(bool isPrivacyAuthorityEnabled) override;
43 …int32_t StartScreenCaptureWithSurface(sptr<Surface> surface, bool isPrivacyAuthorityEnabled) overr…
/ohos5.0/foundation/multimedia/player_framework/services/services/screen_capture/server/
H A Dscreen_capture_server.h261 int32_t StartScreenCapture(bool isPrivacyAuthorityEnabled) override;
262 …int32_t StartScreenCaptureWithSurface(sptr<Surface> surface, bool isPrivacyAuthorityEnabled) overr…
299 int32_t StartScreenCaptureInner(bool isPrivacyAuthorityEnabled);
H A Dscreen_capture_server.cpp1393 int32_t ScreenCaptureServer::StartScreenCaptureInner(bool isPrivacyAuthorityEnabled) in StartScreenCaptureInner() argument
1396 …Mode:%{public}d, dataType:%{public}d", appInfo_.appUid, appInfo_.appPid, isPrivacyAuthorityEnabled, in StartScreenCaptureInner()
1411 isPrivacyAuthorityEnabled_ = isPrivacyAuthorityEnabled; in StartScreenCaptureInner()
1690 int32_t ScreenCaptureServer::StartScreenCapture(bool isPrivacyAuthorityEnabled) in StartScreenCapture() argument
1699 FAKE_POINTER(this), isPrivacyAuthorityEnabled ? "true" : "false", captureState_); in StartScreenCapture()
1704 … MEDIA_LOGI("StartScreenCapture isPrivacyAuthorityEnabled:%{public}d", isPrivacyAuthorityEnabled); in StartScreenCapture()
1706 return StartScreenCaptureInner(isPrivacyAuthorityEnabled); in StartScreenCapture()
1709 …CaptureServer::StartScreenCaptureWithSurface(sptr<Surface> surface, bool isPrivacyAuthorityEnabled) in StartScreenCaptureWithSurface() argument
1716 …I("StartScreenCaptureWithSurface isPrivacyAuthorityEnabled:%{public}d", isPrivacyAuthorityEnabled); in StartScreenCaptureWithSurface()
1724 return StartScreenCaptureInner(isPrivacyAuthorityEnabled); in StartScreenCaptureWithSurface()