Searched refs:totalResult (Results 1 – 4 of 4) sorted by relevance
45 public TotalCaptureResultWrapper(TotalCaptureResult totalResult) { in TotalCaptureResultWrapper() argument46 mLogicalCameraId = totalResult.getCameraId(); in TotalCaptureResultWrapper()47 mResults = totalResult.getNativeMetadata(); in TotalCaptureResultWrapper()48 mRequest = totalResult.getRequest(); in TotalCaptureResultWrapper()49 mSequenceId = totalResult.getSequenceId(); in TotalCaptureResultWrapper()50 mFrameNumber = totalResult.getFrameNumber(); in TotalCaptureResultWrapper()51 mSessionId = totalResult.getSessionId(); in TotalCaptureResultWrapper()52 for (CaptureResult partial : totalResult.getPartialResults()) { in TotalCaptureResultWrapper()56 totalResult.getPhysicalCameraTotalResults(); in TotalCaptureResultWrapper()
93 auto totalResult = resourceValues.find(sizeResult->first); in processCurrentElement() local94 if (totalResult != resourceValues.end()) { in processCurrentElement()95 ALOGE_IF(sizeResult->second.units != totalResult->second.units, in processCurrentElement()98 totalResult->second.value += sizeResult->second.value; in processCurrentElement()99 totalResult->second.count++; in processCurrentElement()
427 private static ParcelTotalCaptureResult initializeParcelable(TotalCaptureResult totalResult) { in initializeParcelable() argument429 ret.logicalCameraId = totalResult.getCameraId(); in initializeParcelable()430 ret.results = totalResult.getNativeMetadata(); in initializeParcelable()431 ret.parent = totalResult.getRequest(); in initializeParcelable()432 ret.sequenceId = totalResult.getSequenceId(); in initializeParcelable()433 ret.frameNumber = totalResult.getFrameNumber(); in initializeParcelable()434 ret.sessionId = totalResult.getSessionId(); in initializeParcelable()435 ret.partials = new ArrayList<>(totalResult.getPartialResults().size()); in initializeParcelable()436 for (CaptureResult partial : totalResult.getPartialResults()) { in initializeParcelable()440 totalResult.getPhysicalCameraTotalResults(); in initializeParcelable()[all …]
1591 TotalCaptureResult totalResult = new TotalCaptureResult(mCameraDevice.getId(), result, in onCaptureCompleted() local1598 mClientRequest, totalResult)); in onCaptureCompleted()