/foundation/graphic/graphic_3d/kits/js/include/ |
H A D | ToneMapJS.h | 44 void SetExposure(NapiApi::FunctionContext<float>& ctx);
|
/foundation/multimedia/camera_framework/interfaces/kits/js/camera_napi/include/mode/ |
H A D | night_session_napi.h | 39 static napi_value SetExposure(napi_env env, napi_callback_info info);
|
H A D | time_lapse_photo_session_napi.h | 89 static napi_value SetExposure(napi_env env, napi_callback_info info);
|
/foundation/multimedia/camera_framework/interfaces/inner_api/native/camera/include/session/ |
H A D | night_session.h | 63 int32_t SetExposure(uint32_t exposureValue);
|
H A D | time_lapse_photo_session.h | 104 int32_t SetExposure(uint32_t exposure);
|
/foundation/multimedia/camera_framework/frameworks/js/camera_napi/src/mode/ |
H A D | night_session_napi.cpp | 50 DECLARE_NAPI_FUNCTION("setExposure", NightSessionNapi::SetExposure)
in Init() 168 napi_value NightSessionNapi::SetExposure(napi_env env, napi_callback_info info)
in SetExposure() function in OHOS::CameraStandard::NightSessionNapi 170 MEDIA_DEBUG_LOG("SetExposure is called");
in SetExposure() 186 MEDIA_DEBUG_LOG("SetExposure : exposure = %{public}d", exposureValue);
in SetExposure() 188 int32_t retCode = nightSessionNapi->nightSession_->SetExposure(exposureValue);
in SetExposure() 194 MEDIA_ERR_LOG("SetExposure call Failed!");
in SetExposure()
|
H A D | time_lapse_photo_session_napi.cpp | 221 DECLARE_NAPI_FUNCTION("setExposure", SetExposure),
539 napi_value TimeLapsePhotoSessionNapi::SetExposure(napi_env env, napi_callback_info info)
in SetExposure() function in OHOS::CameraStandard::TimeLapsePhotoSessionNapi 551 int32_t ret = obj->timeLapsePhotoSession_->SetExposure(exposure);
in SetExposure()
|
/foundation/multimedia/camera_framework/test/fuzztest/timelapsephotosession_fuzzer/ |
H A D | time_lapse_photo_session_fuzzer.cpp | 174 session->SetExposure(0);
in TestManualExposure() 175 session->SetExposure(1);
in TestManualExposure() 177 session->SetExposure(MAX_UINT);
in TestManualExposure() 178 session->SetExposure(data.ReadUint32());
in TestManualExposure()
|
/foundation/graphic/graphic_3d/kits/js/src/ |
H A D | ToneMapJS.cpp | 87 &ToneMapJS::SetExposure>("exposure")); in Init() 239 void ToneMapJS::SetExposure(NapiApi::FunctionContext<float>& ctx) in SetExposure() function in ToneMapJS
|
/foundation/multimedia/camera_framework/frameworks/native/camera/src/session/ |
H A D | night_session.cpp | 54 int32_t NightSession::SetExposure(uint32_t exposureValue) in SetExposure() function in OHOS::CameraStandard::NightSession 57 "NightSession::SetExposure Session is not Commited"); in SetExposure() 59 "NightSession::SetExposure Need to call LockForControl() before setting camera properties"); in SetExposure() 63 MEDIA_DEBUG_LOG("NightSession::SetExposure exposure compensation: %{public}d", exposureValue); in SetExposure() 66 CameraErrorCode::OPERATION_NOT_ALLOWED, "NightSession::SetExposure camera device is null"); in SetExposure() 70 CameraErrorCode::OPERATION_NOT_ALLOWED, "NightSession::SetExposure range is empty"); in SetExposure() 74 "NightSession::SetExposure value(%{public}d)is not supported!", exposureValue); in SetExposure() 82 CHECK_ERROR_PRINT_LOG(!status, "NightSession::SetExposure Failed to set exposure compensation"); in SetExposure()
|
H A D | time_lapse_photo_session.cpp | 402 int32_t TimeLapsePhotoSession::SetExposure(uint32_t exposure)
in SetExposure() function in OHOS::CameraStandard::TimeLapsePhotoSession 405 "TimeLapsePhotoSession::SetExposure Session is not Commited");
in SetExposure() 407 "TimeLapsePhotoSession::SetExposure Need to call LockForControl() before setting camera properties");
in SetExposure() 411 CameraErrorCode::OPERATION_NOT_ALLOWED, "TimeLapsePhotoSession::SetExposure camera device is null");
in SetExposure()
|
/foundation/multimedia/camera_framework/frameworks/native/camera/test/moduletest/src/ |
H A D | camera_framework_moduletest.cpp | 7992 EXPECT_EQ(nightSession->SetExposure(0), SESSION_NOT_CONFIG); in HWTEST_F() 8016 EXPECT_EQ(nightSession->SetExposure(0), SESSION_NOT_CONFIG); in HWTEST_F() 9803 EXPECT_EQ(nightSession->SetExposure(exposureRange[0]), 0); in HWTEST_F() 12125 status = session->SetExposure(exposureRange[0]); in HWTEST_F()
|