Home
last modified time | relevance | path

Searched refs:mTimestampNs (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/core/java/android/hardware/camera2/params/
DOisSample.java54 mTimestampNs = timestamp; in OisSample()
68 return mTimestampNs; in getTimestamp()
104 return mTimestampNs == other.mTimestampNs in equals()
116 int timestampHash = HashCodeHelpers.hashCode(mTimestampNs); in hashCode()
130 return String.format("OisSample{timestamp:%d, shift_x:%f, shift_y:%f}", mTimestampNs, in toString()
134 private final long mTimestampNs; field in OisSample
/frameworks/base/core/java/android/hardware/location/
DActivityRecognitionEvent.java30 private final long mTimestampNs; field in ActivityRecognitionEvent
35 mTimestampNs = timestampNs; in ActivityRecognitionEvent()
47 return mTimestampNs; in getTimestampNs()
76 parcel.writeLong(mTimestampNs); in writeToParcel()
85 mTimestampNs); in toString()
/frameworks/base/location/lib/java/com/android/location/provider/
DActivityRecognitionEvent.java26 private final long mTimestampNs; field in ActivityRecognitionEvent
31 mTimestampNs = timestampNs; in ActivityRecognitionEvent()
43 return mTimestampNs; in getTimestampNs()
69 mTimestampNs); in toString()
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/videosink/
DMediaEncoderFilter.java164 private long mTimestampNs = 0; field in MediaEncoderFilter
342 mTimestampNs = timestampNs; in skipFrameAndModifyTimestamp()
345 ", setting t = " + mTimestampNs ); in skipFrameAndModifyTimestamp()
368 mTimestampNs = mTimestampNs + (1000000000L / (long)mFps); in skipFrameAndModifyTimestamp()
370 + mTimestampNs + ", delta t = " + (1000000000L / (long)mFps) + in skipFrameAndModifyTimestamp()
398 mTimestampNs = input.getTimestamp(); in process()
408 glEnv.setSurfaceTimestamp(mTimestampNs); in process()
/frameworks/av/media/libstagefright/bqhelper/
DGraphicBufferSource.cpp571 int64_t itemTimeUs = item.mTimestampNs / 1000; in fillCodecBuffer_l()
658 if (mSkipFramesBeforeNs < 0ll || item.mTimestampNs >= mSkipFramesBeforeNs) { in fillCodecBuffer_l()
661 item.mTimestampNs -= mSkipFramesBeforeNs; in fillCodecBuffer_l()
664 int64_t timeUs = item.mTimestampNs / 1000; in fillCodecBuffer_l()
720 mLatestBuffer.mTimestampNs += mFrameRepeatIntervalUs * 1000; in repeatLatestBuffer_l()
735 mLatestBuffer.mTimestampNs += mFrameRepeatIntervalUs * 1000; in setLatestBuffer_l()
815 if (!calculateCodecTimestamp_l(item.mTimestampNs, &codecTimeUs)) { in submitBuffer_l()
/frameworks/av/media/libstagefright/bqhelper/include/media/stagefright/bqhelper/
DGraphicBufferSource.h243 nsecs_t mTimestampNs; member