Home
last modified time | relevance | path

Searched refs:hasReadoutTimestamp (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/core/java/android/hardware/camera2/impl/
DCaptureResultExtras.java36 private boolean hasReadoutTimestamp; field in CaptureResultExtras
61 long lastCompletedZslFrameNumber, boolean hasReadoutTimestamp, in CaptureResultExtras() argument
74 this.hasReadoutTimestamp = hasReadoutTimestamp; in CaptureResultExtras()
101 dest.writeBoolean(hasReadoutTimestamp); in writeToParcel()
102 if (hasReadoutTimestamp) { in writeToParcel()
122 hasReadoutTimestamp = in.readBoolean(); in readFromParcel()
123 if (hasReadoutTimestamp) { in readFromParcel()
172 public boolean hasReadoutTimestamp() { in hasReadoutTimestamp() method in CaptureResultExtras
173 return hasReadoutTimestamp; in hasReadoutTimestamp()
DCameraDeviceImpl.java2157 final boolean hasReadoutTimestamp = resultExtras.hasReadoutTimestamp(); in onCaptureStarted()
2165 + ", hasReadoutTimestamp " + hasReadoutTimestamp in onCaptureStarted()
2166 + (hasReadoutTimestamp ? ", readoutTimestamp " + readoutTimestamp : "")) ; in onCaptureStarted()
2220 if (hasReadoutTimestamp) { in onCaptureStarted()
2233 if (hasReadoutTimestamp) { in onCaptureStarted()
/frameworks/av/camera/
DCaptureResult.cpp56 parcel->readBool(&hasReadoutTimestamp); in readFromParcel()
57 if (hasReadoutTimestamp) { in readFromParcel()
89 parcel->writeBool(hasReadoutTimestamp); in writeToParcel()
90 if (hasReadoutTimestamp) { in writeToParcel()
/frameworks/av/camera/include/camera/
DCaptureResult.h109 bool hasReadoutTimestamp; member
133 hasReadoutTimestamp(false), in CaptureResultExtras()
/frameworks/av/services/camera/libcameraservice/device3/aidl/
DAidlCamera3OutputUtils.h83 bool hasReadoutTimestamp);
DAidlCamera3OutputUtils.cpp71 bool hasReadoutTimestamp) { in notify() argument
114 m.message.shutter.readout_timestamp_valid = hasReadoutTimestamp; in notify()
116 hasReadoutTimestamp ? msg.get<Tag::shutter>().readoutTimestamp : 0LL; in notify()
/frameworks/av/services/camera/libcameraservice/device3/
DCamera3OutputUtils.cpp991 nsecs_t readoutTimestamp = request.resultExtras.hasReadoutTimestamp ? in collectAndRemovePendingOutputBuffers()
1064 r.resultExtras.hasReadoutTimestamp = true; in notifyShutter()