Home
last modified time | relevance | path

Searched refs:triggerId (Results 1 – 11 of 11) sorted by relevance

/frameworks/av/services/camera/libcameraservice/common/
DCameraOfflineSessionBase.h59 virtual void notifyAutoFocus(uint8_t newState, int triggerId) = 0;
60 virtual void notifyAutoExposure(uint8_t newState, int triggerId) = 0;
62 int triggerId) = 0;
DCamera2ClientBase.h93 virtual void notifyAutoFocus(uint8_t newState, int triggerId);
94 virtual void notifyAutoExposure(uint8_t newState, int triggerId);
96 int triggerId);
DCamera2ClientBase.cpp422 [[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/
DCameraOfflineSessionClient.cpp337 [[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()
DCameraOfflineSessionClient.h118 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/
DSaveInfo.java354 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/
DCamera2Client.cpp1382 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 …]
DCamera2Client.h133 virtual void notifyAutoFocus(uint8_t newState, int triggerId);
134 virtual void notifyAutoExposure(uint8_t newState, int triggerId);
/frameworks/av/services/camera/libcameraservice/api1/client2/
DCaptureSequencer.h62 void notifyAutoExposure(uint8_t newState, int triggerId);
DCaptureSequencer.cpp99 void CaptureSequencer::notifyAutoExposure(uint8_t newState, int triggerId) { in notifyAutoExposure() argument
103 mAETriggerId = triggerId; in notifyAutoExposure()
/frameworks/av/services/camera/libcameraservice/device3/
DCamera3Device.cpp4720 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()