Searched refs:isPrivacyAuthorityEnabled (Results 1 – 10 of 10) sorted by relevance
/ohos5.0/foundation/multimedia/player_framework/services/services/screen_capture/ipc/ |
H A D | screen_capture_service_stub.cpp | 175 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 D | screen_capture_service_proxy.h | 38 int32_t StartScreenCapture(bool isPrivacyAuthorityEnabled) override; 39 …int32_t StartScreenCaptureWithSurface(sptr<Surface> surface, bool isPrivacyAuthorityEnabled) overr…
|
H A D | i_standard_screen_capture_service.h | 43 virtual int32_t StartScreenCapture(bool isPrivacyAuthorityEnabled = false) = 0; 44 …t32_t StartScreenCaptureWithSurface(sptr<Surface> surface, bool isPrivacyAuthorityEnabled = false)…
|
H A D | screen_capture_service_stub.h | 40 int32_t StartScreenCapture(bool isPrivacyAuthorityEnabled) override; 41 …int32_t StartScreenCaptureWithSurface(sptr<Surface> surface, bool isPrivacyAuthorityEnabled) overr…
|
H A D | screen_capture_service_proxy.cpp | 250 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 D | i_screen_capture_service.h | 40 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 D | screen_capture_client.cpp | 196 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 D | screen_capture_client.h | 42 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 D | screen_capture_server.h | 261 int32_t StartScreenCapture(bool isPrivacyAuthorityEnabled) override; 262 …int32_t StartScreenCaptureWithSurface(sptr<Surface> surface, bool isPrivacyAuthorityEnabled) overr… 299 int32_t StartScreenCaptureInner(bool isPrivacyAuthorityEnabled);
|
H A D | screen_capture_server.cpp | 1393 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()
|