Home
last modified time | relevance | path

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

/frameworks/av/services/camera/libcameraservice/api2/
DCameraOfflineSessionClient.cpp274 void CameraOfflineSessionClient::notifyAutoFocus(uint8_t newState, int triggerId) { in notifyAutoFocus() argument
276 (void)triggerId; in notifyAutoFocus()
279 __FUNCTION__, newState, triggerId); in notifyAutoFocus()
282 void CameraOfflineSessionClient::notifyAutoExposure(uint8_t newState, int triggerId) { in notifyAutoExposure() argument
284 (void)triggerId; in notifyAutoExposure()
287 __FUNCTION__, newState, triggerId); in notifyAutoExposure()
290 void CameraOfflineSessionClient::notifyAutoWhitebalance(uint8_t newState, int triggerId) { in notifyAutoWhitebalance() argument
292 (void)triggerId; in notifyAutoWhitebalance()
295 triggerId); in notifyAutoWhitebalance()
DCameraOfflineSessionClient.h90 void notifyAutoFocus(uint8_t newState, int triggerId) override;
91 void notifyAutoExposure(uint8_t newState, int triggerId) override;
92 void notifyAutoWhitebalance(uint8_t newState, int triggerId) override;
/frameworks/av/services/camera/libcameraservice/common/
DCamera2ClientBase.cpp282 int triggerId) { in notifyAutoFocus() argument
284 (void)triggerId; in notifyAutoFocus()
287 __FUNCTION__, newState, triggerId); in notifyAutoFocus()
293 int triggerId) { in notifyAutoExposure() argument
295 (void)triggerId; in notifyAutoExposure()
298 __FUNCTION__, newState, triggerId); in notifyAutoExposure()
303 int triggerId) { in notifyAutoWhitebalance() argument
305 (void)triggerId; in notifyAutoWhitebalance()
308 __FUNCTION__, newState, triggerId); in notifyAutoWhitebalance()
DCameraOfflineSessionBase.h49 virtual void notifyAutoFocus(uint8_t newState, int triggerId) = 0;
50 virtual void notifyAutoExposure(uint8_t newState, int triggerId) = 0;
52 int triggerId) = 0;
DCamera2ClientBase.h72 virtual void notifyAutoFocus(uint8_t newState, int triggerId);
73 virtual void notifyAutoExposure(uint8_t newState, int triggerId);
75 int triggerId);
/frameworks/av/services/camera/libcameraservice/api1/
DCamera2Client.cpp1334 int triggerId; in autoFocus() local
1395 triggerId = l.mParameters.currentAfTriggerId; in autoFocus()
1397 ATRACE_ASYNC_BEGIN(kAutofocusLabel, triggerId); in autoFocus()
1401 mDevice->triggerAutofocus(triggerId); in autoFocus()
1413 int triggerId; in cancelAutoFocus() local
1427 triggerId = ++l.mParameters.afTriggerCounter; in cancelAutoFocus()
1447 mDevice->triggerCancelAutofocus(triggerId); in cancelAutoFocus()
1806 void Camera2Client::notifyAutoFocus(uint8_t newState, int triggerId) { in notifyAutoFocus() argument
1808 __FUNCTION__, newState, triggerId); in notifyAutoFocus()
1840 if (triggerId != l.mParameters.currentAfTriggerId) break; in notifyAutoFocus()
[all …]
DCamera2Client.h118 virtual void notifyAutoFocus(uint8_t newState, int triggerId);
119 virtual void notifyAutoExposure(uint8_t newState, int triggerId);
/frameworks/base/cmds/statsd/tests/metrics/
DGaugeMetricProducer_test.cpp685 int triggerId = 5; in TEST() local
688 triggerId, tagId, bucketStartTimeNs, bucketStartTimeNs, in TEST()
695 CreateNoValuesLogEvent(&triggerEvent, triggerId, bucketStartTimeNs + 10); in TEST()
764 int triggerId = 5; in TEST() local
767 triggerId, tagId, bucketStartTimeNs, bucketStartTimeNs, in TEST()
772 CreateNoValuesLogEvent(&triggerEvent, triggerId, bucketStartTimeNs + 3); in TEST()
827 int triggerId = 5; in TEST() local
830 triggerId, tagId, bucketStartTimeNs, bucketStartTimeNs, in TEST()
835 CreateNoValuesLogEvent(&triggerEvent, triggerId, bucketStartTimeNs + 3); in TEST()
/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.cpp5183 uint32_t triggerId = static_cast<uint32_t>(trigger.entryValue); in insertTriggers() local
5185 request->mResultExtras.precaptureTriggerId = triggerId; in insertTriggers()
5186 mCurrentPreCaptureTriggerId = triggerId; in insertTriggers()
5188 request->mResultExtras.afTriggerId = triggerId; in insertTriggers()
5189 mCurrentAfTriggerId = triggerId; in insertTriggers()