/foundation/distributedhardware/distributed_camera/services/cameraservice/cameraoperator/client/src/callback/ |
H A D | dcamera_photo_callback.cpp | 27 void DCameraPhotoCallback::OnCaptureStarted(const int32_t captureID) const in OnCaptureStarted() 29 DHLOGI("enter, captureID: %{public}d", captureID); in OnCaptureStarted() 32 void DCameraPhotoCallback::OnCaptureStarted(const int32_t captureID, uint32_t exposureTime) const in OnCaptureStarted() argument 34 DHLOGI("enter, captureID: %{public}d, exposureTime: %{public}u", captureID, exposureTime); in OnCaptureStarted() 37 void DCameraPhotoCallback::OnCaptureEnded(const int32_t captureID, const int32_t frameCount) const in OnCaptureEnded() argument 39 DHLOGI("enter, captureID: %{public}d, frameCount: %{public}d", captureID, frameCount); in OnCaptureEnded()
|
/foundation/multimedia/camera_framework/test/fuzztest/photooutput_fuzzer/ |
H A D | photo_output_fuzzer.h | 27 void OnCaptureStarted(const int32_t captureID) const override {}
28 void OnCaptureStarted(const int32_t captureID, uint32_t exposureTime) const override {}
29 void OnCaptureEnded(const int32_t captureID, const int32_t frameCount) const override {}
|
/foundation/distributedhardware/distributed_camera/services/cameraservice/cameraoperator/client/include/callback/ |
H A D | dcamera_photo_callback.h | 28 void OnCaptureStarted(const int32_t captureID) const override; 29 void OnCaptureStarted(const int32_t captureID, uint32_t exposureTime) const override; 30 void OnCaptureEnded(const int32_t captureID, const int32_t frameCount) const override;
|
/foundation/multimedia/camera_framework/frameworks/native/ndk/impl/ |
H A D | photo_output_impl.h | 121 void OnCaptureStarted(const int32_t captureID) const override 123 MEDIA_DEBUG_LOG("OnCaptureStarted is called!, captureID: %{public}d", captureID); 125 info.captureId = captureID; 132 void OnCaptureStarted(const int32_t captureID, uint32_t exposureTime) const override 134 MEDIA_DEBUG_LOG("OnCaptureStarted is called!, captureID: %{public}d", captureID); 179 void OnCaptureEnded(const int32_t captureID, const int32_t frameCount) const override 181 MEDIA_DEBUG_LOG("OnCaptureEnded is called! captureID: %{public}d", captureID); [all...] |
/foundation/multimedia/camera_framework/interfaces/inner_api/native/test/ |
H A D | test_common.cpp | 197 void TestPhotoOutputCallback::OnCaptureStarted(const int32_t captureID) const in OnCaptureStarted() 199 MEDIA_INFO_LOG("PhotoOutputCallback:OnCaptureStarted(), testName_: %{public}s, captureID: %{public}d", in OnCaptureStarted() 200 testName_, captureID); in OnCaptureStarted() 203 void TestPhotoOutputCallback::OnCaptureStarted(const int32_t captureID, uint32_t exposureTime) const in OnCaptureStarted() argument 205 MEDIA_INFO_LOG("PhotoOutputCallback:OnCaptureStarted(), testName_: %{public}s, captureID: %{public}d", in OnCaptureStarted() 206 testName_, captureID); in OnCaptureStarted() 209 void TestPhotoOutputCallback::OnCaptureEnded(const int32_t captureID, const int32_t frameCount) const in OnCaptureEnded() argument 211 MEDIA_INFO_LOG("TestPhotoOutputCallback:OnCaptureEnded(), testName_: %{public}s, captureID: %{public}d," in OnCaptureEnded() 212 " frameCount: %{public}d", testName_, captureID, frameCount); in OnCaptureEnded() 217 MEDIA_INFO_LOG("OnFrameShutter(), testName_: %{public}s, captureID in OnFrameShutter() [all...] |
H A D | test_common.h | 103 void OnCaptureStarted(const int32_t captureID) const override; 104 void OnCaptureStarted(const int32_t captureID, uint32_t exposureTime) const override; 105 void OnCaptureEnded(const int32_t captureID, const int32_t frameCount) const override;
|
/foundation/distributedhardware/distributed_camera/test/distributedcameraclienttest/ |
H A D | dcamera_client_demo.h | 197 void OnCaptureStarted(const int32_t captureID) const in OnCaptureStarted() 199 DHLOGI("DemoDCameraPhotoCallback::OnCaptureStarted captureID: %{public}d", captureID); in OnCaptureStarted() 202 void OnCaptureStarted(const int32_t captureID, uint32_t exposureTime) const in OnCaptureStarted() argument 204 DHLOGI("DemoDCameraPhotoCallback::OnCaptureStarted captureID: %{public}d, exposureTime: %{public}u", in OnCaptureStarted() 205 captureID, exposureTime); in OnCaptureStarted() 208 void OnCaptureEnded(const int32_t captureID, int32_t frameCount) const in OnCaptureEnded() argument 210 DHLOGI("DemoDCameraPhotoCallback::OnCaptureEnded captureID: %{public}d frameCount: %{public}d", in OnCaptureEnded() 211 captureID, frameCount); in OnCaptureEnded() 216 DHLOGI("DemoDCameraPhotoCallback::OnFrameShutter captureID in OnFrameShutter() [all...] |
/foundation/distributedhardware/distributed_camera/services/cameraservice/cameraoperator/client/test/sample/ |
H A D | dcamera_client_demo.h | 197 void OnCaptureStarted(const int32_t captureID) const in OnCaptureStarted() 199 DHLOGI("DemoDCameraPhotoCallback::OnCaptureStarted captureID: %{public}d", captureID); in OnCaptureStarted() 202 void OnCaptureStarted(const int32_t captureID, uint32_t exposureTime) const in OnCaptureStarted() argument 204 DHLOGI("DemoDCameraPhotoCallback::OnCaptureStarted captureID: %{public}d, exposureTime: %{public}u", in OnCaptureStarted() 205 captureID, exposureTime); in OnCaptureStarted() 208 void OnCaptureEnded(const int32_t captureID, int32_t frameCount) const in OnCaptureEnded() argument 210 DHLOGI("DemoDCameraPhotoCallback::OnCaptureEnded captureID: %{public}d frameCount: %{public}d", in OnCaptureEnded() 211 captureID, frameCount); in OnCaptureEnded() 216 DHLOGI("DemoDCameraPhotoCallback::OnFrameShutter captureID in OnFrameShutter() [all...] |
/foundation/multimedia/camera_framework/interfaces/inner_api/native/camera/include/output/ |
H A D | photo_output.h | 44 * @param captureID Obtain the constant capture id for the photo capture callback. 46 virtual void OnCaptureStarted(const int32_t captureID) const = 0; 51 * @param captureID Obtain the constant capture id for the photo capture callback. 53 virtual void OnCaptureStarted(const int32_t captureID, uint32_t exposureTime) const = 0; 58 * @param captureID Obtain the constant capture id for the photo capture callback. 61 virtual void OnCaptureEnded(const int32_t captureID, const int32_t frameCount) const = 0; 111 * @param captureID Obtain the constant capture id for the photo capture callback. 113 virtual void OnCaptureStarted(const int32_t captureID) const = 0; 118 * @param captureID Obtain the constant capture id for the photo capture callback. 121 virtual void OnCaptureEnded(const int32_t captureID, cons [all...] |
/foundation/multimedia/camera_framework/frameworks/js/camera_napi/src/output/ |
H A D | photo_output_napi.cpp | 1141 g_captureId = callbackInfo->info_.captureID; in UpdateJSExecute() 1145 g_captureId != callbackInfo->info_.captureID) { in UpdateJSExecute() 1200 void PhotoOutputCallback::OnCaptureStarted(const int32_t captureID) const in OnCaptureStarted() 1203 MEDIA_DEBUG_LOG("OnCaptureStarted is called!, captureID: %{public}d", captureID); in OnCaptureStarted() 1205 info.captureID = captureID; in OnCaptureStarted() 1209 void PhotoOutputCallback::OnCaptureStarted(const int32_t captureID, uint32_t exposureTime) const in OnCaptureStarted() argument 1212 MEDIA_DEBUG_LOG("OnCaptureStarted is called!, captureID: %{public}d", captureID); in OnCaptureStarted() 1219 OnCaptureEnded(const int32_t captureID, const int32_t frameCount) const OnCaptureEnded() argument [all...] |
/foundation/multimedia/camera_framework/interfaces/kits/js/camera_napi/include/output/ |
H A D | photo_output_napi.h | 56 int32_t captureID; member 212 void OnCaptureStarted(const int32_t captureID) const override; 213 void OnCaptureStarted(const int32_t captureID, uint32_t exposureTime) const override; 214 void OnCaptureEnded(const int32_t captureID, const int32_t frameCount) const override;
|