/frameworks/av/services/camera/libcameraservice/api2/ |
D | CameraOfflineSessionClient.cpp | 274 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()
|
D | CameraOfflineSessionClient.h | 90 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/ |
D | Camera2ClientBase.cpp | 282 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()
|
D | CameraOfflineSessionBase.h | 49 virtual void notifyAutoFocus(uint8_t newState, int triggerId) = 0; 50 virtual void notifyAutoExposure(uint8_t newState, int triggerId) = 0; 52 int triggerId) = 0;
|
D | Camera2ClientBase.h | 72 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/ |
D | Camera2Client.cpp | 1334 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 …]
|
D | Camera2Client.h | 118 virtual void notifyAutoFocus(uint8_t newState, int triggerId); 119 virtual void notifyAutoExposure(uint8_t newState, int triggerId);
|
/frameworks/base/cmds/statsd/tests/metrics/ |
D | GaugeMetricProducer_test.cpp | 685 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/ |
D | SaveInfo.java | 911 final AutofillId triggerId = parcel.readParcelable(null); 912 if (triggerId != null) { 913 builder.setTriggerId(triggerId);
|
/frameworks/av/services/camera/libcameraservice/api1/client2/ |
D | CaptureSequencer.h | 62 void notifyAutoExposure(uint8_t newState, int triggerId);
|
D | CaptureSequencer.cpp | 98 void CaptureSequencer::notifyAutoExposure(uint8_t newState, int triggerId) { in notifyAutoExposure() argument 102 mAETriggerId = triggerId; in notifyAutoExposure()
|
/frameworks/av/services/camera/libcameraservice/device3/ |
D | Camera3Device.cpp | 5183 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()
|