Home
last modified time | relevance | path

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

/frameworks/av/services/camera/libcameraservice/api2/
DCameraOfflineSessionClient.cpp291 void CameraOfflineSessionClient::notifyAutoFocus(uint8_t newState, int triggerId) { in notifyAutoFocus() argument
293 (void)triggerId; in notifyAutoFocus()
296 __FUNCTION__, newState, triggerId); in notifyAutoFocus()
299 void CameraOfflineSessionClient::notifyAutoExposure(uint8_t newState, int triggerId) { in notifyAutoExposure() argument
301 (void)triggerId; in notifyAutoExposure()
304 __FUNCTION__, newState, triggerId); in notifyAutoExposure()
307 void CameraOfflineSessionClient::notifyAutoWhitebalance(uint8_t newState, int triggerId) { in notifyAutoWhitebalance() argument
309 (void)triggerId; in notifyAutoWhitebalance()
312 triggerId); in notifyAutoWhitebalance()
DCameraOfflineSessionClient.h95 void notifyAutoFocus(uint8_t newState, int triggerId) override;
96 void notifyAutoExposure(uint8_t newState, int triggerId) override;
97 void notifyAutoWhitebalance(uint8_t newState, int triggerId) override;
/frameworks/av/services/camera/libcameraservice/common/
DCamera2ClientBase.cpp307 int triggerId) { in notifyAutoFocus() argument
309 (void)triggerId; in notifyAutoFocus()
312 __FUNCTION__, newState, triggerId); in notifyAutoFocus()
318 int triggerId) { in notifyAutoExposure() argument
320 (void)triggerId; in notifyAutoExposure()
323 __FUNCTION__, newState, triggerId); in notifyAutoExposure()
328 int triggerId) { in notifyAutoWhitebalance() argument
330 (void)triggerId; in notifyAutoWhitebalance()
333 __FUNCTION__, newState, triggerId); in notifyAutoWhitebalance()
DCameraOfflineSessionBase.h54 virtual void notifyAutoFocus(uint8_t newState, int triggerId) = 0;
55 virtual void notifyAutoExposure(uint8_t newState, int triggerId) = 0;
57 int triggerId) = 0;
DCamera2ClientBase.h77 virtual void notifyAutoFocus(uint8_t newState, int triggerId);
78 virtual void notifyAutoExposure(uint8_t newState, int triggerId);
80 int triggerId);
/frameworks/av/services/camera/libcameraservice/api1/
DCamera2Client.cpp1344 int triggerId; in autoFocus() local
1405 triggerId = l.mParameters.currentAfTriggerId; in autoFocus()
1407 ATRACE_ASYNC_BEGIN(kAutofocusLabel, triggerId); in autoFocus()
1411 mDevice->triggerAutofocus(triggerId); in autoFocus()
1423 int triggerId; in cancelAutoFocus() local
1437 triggerId = ++l.mParameters.afTriggerCounter; in cancelAutoFocus()
1457 mDevice->triggerCancelAutofocus(triggerId); in cancelAutoFocus()
1816 void Camera2Client::notifyAutoFocus(uint8_t newState, int triggerId) { in notifyAutoFocus() argument
1818 __FUNCTION__, newState, triggerId); in notifyAutoFocus()
1850 if (triggerId != l.mParameters.currentAfTriggerId) break; in notifyAutoFocus()
[all …]
DCamera2Client.h123 virtual void notifyAutoFocus(uint8_t newState, int triggerId);
124 virtual void notifyAutoExposure(uint8_t newState, int triggerId);
/frameworks/base/core/java/android/service/autofill/
DSaveInfo.java911 final AutofillId triggerId = parcel.readParcelable(null);
912 if (triggerId != null) {
913 builder.setTriggerId(triggerId);
/frameworks/av/services/camera/libcameraservice/api1/client2/
DCaptureSequencer.h62 void notifyAutoExposure(uint8_t newState, int triggerId);
DCaptureSequencer.cpp98 void CaptureSequencer::notifyAutoExposure(uint8_t newState, int triggerId) { in notifyAutoExposure() argument
102 mAETriggerId = triggerId; in notifyAutoExposure()
/frameworks/av/services/camera/libcameraservice/device3/
DCamera3Device.cpp5670 uint32_t triggerId = static_cast<uint32_t>(trigger.entryValue); in insertTriggers() local
5672 request->mResultExtras.precaptureTriggerId = triggerId; in insertTriggers()
5673 mCurrentPreCaptureTriggerId = triggerId; in insertTriggers()
5675 request->mResultExtras.afTriggerId = triggerId; in insertTriggers()
5676 mCurrentAfTriggerId = triggerId; in insertTriggers()