/frameworks/av/services/camera/libcameraservice/common/ |
D | CameraOfflineSessionBase.h | 59 virtual void notifyAutoFocus(uint8_t newState, int triggerId) = 0; 60 virtual void notifyAutoExposure(uint8_t newState, int triggerId) = 0; 62 int triggerId) = 0;
|
D | Camera2ClientBase.h | 93 virtual void notifyAutoFocus(uint8_t newState, int triggerId); 94 virtual void notifyAutoExposure(uint8_t newState, int triggerId); 96 int triggerId);
|
D | Camera2ClientBase.cpp | 422 [[maybe_unused]] int triggerId) { in notifyAutoFocus() argument 424 __FUNCTION__, newState, triggerId); in notifyAutoFocus() 430 [[maybe_unused]] int triggerId) { in notifyAutoExposure() argument 432 __FUNCTION__, newState, triggerId); in notifyAutoExposure() 438 [[maybe_unused]] int triggerId) { in notifyAutoWhitebalance() argument 440 __FUNCTION__, newState, triggerId); in notifyAutoWhitebalance()
|
/frameworks/av/services/camera/libcameraservice/api2/ |
D | CameraOfflineSessionClient.cpp | 337 [[maybe_unused]] int triggerId) { in notifyAutoFocus() argument 339 __FUNCTION__, newState, triggerId); in notifyAutoFocus() 343 [[maybe_unused]] int triggerId) { in notifyAutoExposure() argument 345 __FUNCTION__, newState, triggerId); in notifyAutoExposure() 349 [[maybe_unused]] int triggerId) { in notifyAutoWhitebalance() argument 351 triggerId); in notifyAutoWhitebalance()
|
D | CameraOfflineSessionClient.h | 118 void notifyAutoFocus(uint8_t newState, int triggerId) override; 119 void notifyAutoExposure(uint8_t newState, int triggerId) override; 120 void notifyAutoWhitebalance(uint8_t newState, int triggerId) override;
|
/frameworks/base/core/java/android/service/autofill/ |
D | SaveInfo.java | 354 AutofillId triggerId) { in SaveInfo() argument 367 mTriggerId = triggerId; in SaveInfo() 941 … final AutofillId triggerId = parcel.readParcelable(null, android.view.autofill.AutofillId.class); 942 if (triggerId != null) { 943 builder.setTriggerId(triggerId);
|
/frameworks/av/services/camera/libcameraservice/api1/ |
D | Camera2Client.cpp | 1382 int triggerId; in autoFocus() local 1443 triggerId = l.mParameters.currentAfTriggerId; in autoFocus() 1445 ATRACE_ASYNC_BEGIN(kAutofocusLabel, triggerId); in autoFocus() 1449 mDevice->triggerAutofocus(triggerId); in autoFocus() 1461 int triggerId; in cancelAutoFocus() local 1480 triggerId = ++l.mParameters.afTriggerCounter; in cancelAutoFocus() 1500 mDevice->triggerCancelAutofocus(triggerId); in cancelAutoFocus() 1867 void Camera2Client::notifyAutoFocus(uint8_t newState, int triggerId) { in notifyAutoFocus() argument 1869 __FUNCTION__, newState, triggerId); in notifyAutoFocus() 1901 if (triggerId != l.mParameters.currentAfTriggerId) break; in notifyAutoFocus() [all …]
|
D | Camera2Client.h | 133 virtual void notifyAutoFocus(uint8_t newState, int triggerId); 134 virtual void notifyAutoExposure(uint8_t newState, int triggerId);
|
/frameworks/av/services/camera/libcameraservice/api1/client2/ |
D | CaptureSequencer.h | 62 void notifyAutoExposure(uint8_t newState, int triggerId);
|
D | CaptureSequencer.cpp | 99 void CaptureSequencer::notifyAutoExposure(uint8_t newState, int triggerId) { in notifyAutoExposure() argument 103 mAETriggerId = triggerId; in notifyAutoExposure()
|
/frameworks/av/services/camera/libcameraservice/device3/ |
D | Camera3Device.cpp | 4720 uint32_t triggerId = static_cast<uint32_t>(trigger.entryValue); in insertTriggers() local 4722 request->mResultExtras.precaptureTriggerId = triggerId; in insertTriggers() 4723 mCurrentPreCaptureTriggerId = triggerId; in insertTriggers() 4725 request->mResultExtras.afTriggerId = triggerId; in insertTriggers() 4726 mCurrentAfTriggerId = triggerId; in insertTriggers()
|