HomeSort by relevance Sort by last modified time
    Searched refs:mTimestampQueue (Results 1 - 2 of 2) sorted by null

  /frameworks/base/core/java/android/hardware/camera2/legacy/
PerfMeasurement.java 72 private Queue<Long> mTimestampQueue = new LinkedList<>();
187 mCollectedTimestamps.add(mTimestampQueue.isEmpty() ?
188 NO_DURATION_YET : mTimestampQueue.poll());
194 if (!mTimestampQueue.isEmpty()) {
195 mTimestampQueue.poll();
208 mTimestampQueue.add(timestamp);
  /packages/apps/Camera2/src/com/android/camera/one/v2/core/
RequestBuilder.java 56 private final BufferQueue<Long> mTimestampQueue;
64 mTimestampQueue = timestampQueue;
70 mBuilderProxy.addTarget(mCaptureStream.bind(mTimestampQueue));
75 mTimestampQueue.close();

Completed in 292 milliseconds