Home
last modified time | relevance | path

Searched refs:mTimestamp (Results 1 – 25 of 41) sorted by relevance

12

/frameworks/base/location/java/android/location/
DCountry.java67 private final long mTimestamp; field in Country
88 mTimestamp = SystemClock.elapsedRealtime(); in Country()
98 mTimestamp = timestamp; in Country()
104 mTimestamp = country.mTimestamp; in Country()
133 return mTimestamp; in getTimestamp()
153 parcel.writeLong(mTimestamp); in writeToParcel()
200 return "Country {ISO=" + mCountryIso + ", source=" + mSource + ", time=" + mTimestamp + "}"; in toString()
/frameworks/av/services/camera/libcameraservice/gui/
DRingBufferConsumer.cpp84 cur.mTimestamp = item.mTimestamp; in pinSelectedBuffer()
180 item.mTimestamp, item.mFrameNumber); in pinBufferLocked()
183 item.mFrameNumber, item.mTimestamp); in pinBufferLocked()
218 if (find.mTimestamp < accIt->mTimestamp || accIt == end) { in releaseOldestBufferLocked()
238 item.mTimestamp, item.mFrameNumber); in releaseOldestBufferLocked()
243 item.mTimestamp, item.mFrameNumber); in releaseOldestBufferLocked()
257 item.mTimestamp, item.mFrameNumber); in releaseOldestBufferLocked()
311 item.mTimestamp, in onFrameAvailable()
314 if (item.mTimestamp < mLatestTimestamp) { in onFrameAvailable()
316 mLatestTimestamp, item.mTimestamp); in onFrameAvailable()
[all …]
DRingBufferConsumer.h101 int64_t mTimestamp; member
/frameworks/av/services/camera/libcameraservice/device3/
DCamera3ZslStream.cpp43 TimestampFinder(nsecs_t timestamp) : mTimestamp(timestamp) {} in TimestampFinder()
71 if (i1->mTimestamp == mTimestamp) { in compare()
73 } else if (i2->mTimestamp == mTimestamp) { in compare()
87 if (i1->mTimestamp > i2->mTimestamp) { in compare()
93 if (infoPtrs[1]->mTimestamp < mTimestamp) { in compare()
95 } else if (infoPtrs[0]->mTimestamp < mTimestamp) { in compare()
109 const nsecs_t mTimestamp; member
300 nsecs_t actual = pinnedBuffer->getBufferItem().mTimestamp; in enqueueInputBufferByTimestamp()
DCamera3StreamBufferListener.h35 int64_t mTimestamp; member
/frameworks/base/core/java/android/net/
DSamplingDataTracker.java46 public long mTimestamp; field in SamplingDataTracker.SamplingSnapshot
89 ss.mTimestamp = SystemClock.elapsedRealtime(); in getSamplingSnapshots()
101 Slog.d(TAG, "Timestamp = " + String.valueOf(ss.mTimestamp)); in getSamplingSnapshots()
162 if (s.mTimestamp - mLastSample.mTimestamp > MINIMUM_SAMPLING_INTERVAL in stopSampling()
274 return mEndingSample.mTimestamp; in getSampleTimestamp()
284 return (int) (mEndingSample.mTimestamp - mBeginningSample.mTimestamp); in getSampleDuration()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DInboundSmsTracker.java36 private final long mTimestamp; field in InboundSmsTracker
77 mTimestamp = timestamp; in InboundSmsTracker()
109 mTimestamp = timestamp; in InboundSmsTracker()
145 mTimestamp = cursor.getLong(InboundSmsHandler.DATE_COLUMN); in InboundSmsTracker()
180 values.put("date", mTimestamp); in getContentValues()
232 builder.append(new Date(mTimestamp)); in toString()
255 return mTimestamp; in getTimestamp()
/frameworks/native/libs/gui/
DBufferItem.cpp29 mTimestamp(0), in BufferItem()
46 bufferItem.mTimestamp = mTimestamp; in operator IGraphicBufferConsumer::BufferItem()
60 sizeof(mTimestamp) + in getPodSize()
130 FlattenableUtils::write(buffer, size, mTimestamp); in flatten()
172 FlattenableUtils::read(buffer, size, mTimestamp); in unflatten()
DIGraphicBufferConsumer.cpp40 mTimestamp(0), in BufferItem()
54 sizeof(mTimestamp) + in getPodSize()
134 FlattenableUtils::write(buffer, size, mTimestamp); in flatten()
176 FlattenableUtils::read(buffer, size, mTimestamp); in unflatten()
DSurface.cpp66 mTimestamp = NATIVE_WINDOW_TIMESTAMP_AUTO; in Surface()
300 if (mTimestamp == NATIVE_WINDOW_TIMESTAMP_AUTO) { in queueBuffer()
306 timestamp = mTimestamp; in queueBuffer()
730 mTimestamp = timestamp; in setBuffersTimestamp()
/frameworks/base/core/java/android/hardware/camera2/legacy/
DCaptureCollector.java55 private long mTimestamp = 0; field in CaptureCollector.CaptureHolder
93 CaptureCollector.this.mDeviceState.setCaptureStart(mRequest, mTimestamp, in tryComplete()
138 if (mTimestamp == 0) { in setJpegTimestamp()
139 mTimestamp = timestamp; in setJpegTimestamp()
144 CaptureCollector.this.mDeviceState.setCaptureStart(mRequest, mTimestamp, in setJpegTimestamp()
197 if (mTimestamp == 0) { in setPreviewTimestamp()
198 mTimestamp = timestamp; in setPreviewTimestamp()
204 CaptureCollector.this.mDeviceState.setCaptureStart(mRequest, mTimestamp, in setPreviewTimestamp()
447 timestamp.value = h.mTimestamp; in removeRequestIfCompleted()
494 return new Pair<>(h.mRequest, h.mTimestamp); in jpegProduced()
[all …]
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
DFrame.java43 private long mTimestamp = TIMESTAMP_NOT_SET; field in Frame
122 mTimestamp = timestamp; in setTimestamp()
126 return mTimestamp; in getTimestamp()
/frameworks/av/media/libstagefright/
DSurfaceMediaSource.cpp316 mFirstFrameTimestamp = item.mTimestamp; in read()
319 if (item.mTimestamp < mStartTimeNs) { in read()
326 mStartTimeNs = item.mTimestamp - mStartTimeNs; in read()
329 item.mTimestamp = mStartTimeNs + (item.mTimestamp - mFirstFrameTimestamp); in read()
358 mCurrentTimestamp = item.mTimestamp; in read()
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/base/
DGLTextureSource.java51 private long mTimestamp = Frame.TIMESTAMP_UNKNOWN; field in GLTextureSource
84 mFrame.setTimestamp(mTimestamp); in process()
/frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
DTrackerEntry.java77 private String mTimestamp; field in TrackerEntry
116 mTimestamp = timestamp; in setTimestamp()
136 return mTimestamp; in getTimestamp()
171 cValues.put(TIMESTAMP, mTimestamp); in getAsContentValues()
/frameworks/opt/net/voip/src/jni/rtp/
DAudioGroup.cpp138 uint32_t mTimestamp; member in __anon6084cbd40111::AudioStream
194 read(gRandom, &mTimestamp, sizeof(mTimestamp)); in set()
230 mDtmfStart = mTimestamp + mSampleCount; in sendDtmf()
271 mTimestamp += skipped * mSampleCount; in encode()
278 mTimestamp += mSampleCount; in encode()
282 int duration = mTimestamp - mDtmfStart; in encode()
349 buffer[1] = htonl(mTimestamp); in encode()
/frameworks/av/media/libstagefright/omx/
DGraphicBufferSource.cpp444 if (mSkipFramesBeforeNs < 0ll || item.mTimestamp >= mSkipFramesBeforeNs) { in fillCodecBuffer_l()
447 item.mTimestamp -= mSkipFramesBeforeNs; in fillCodecBuffer_l()
498 item.mTimestamp = mRepeatLastFrameTimestamp; in repeatLatestSubmittedBuffer_l()
513 mRepeatLastFrameTimestamp = item.mTimestamp + mRepeatAfterUs * 1000; in repeatLatestSubmittedBuffer_l()
542 mRepeatLastFrameTimestamp = item.mTimestamp + mRepeatAfterUs * 1000; in setLatestSubmittedBuffer_l()
583 int64_t timeUs = item.mTimestamp / 1000; in getTimestamp()
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
DFrameManager.java237 private int mTimestamp = 0; field in FrameManager.BackingCacheLru
246 ++mTimestamp; in onFetchBacking()
247 backing.cachePriority = mTimestamp; in onFetchBacking()
DBackingStore.java56 private long mTimestamp = Frame.TIMESTAMP_NOT_SET; field in BackingStore
168 mTimestamp = store.mTimestamp; in importStore()
175 return mTimestamp; in getTimestamp()
182 mTimestamp = timestamp; in setTimestamp()
/frameworks/native/include/gui/
DBufferItem.h74 int64_t mTimestamp; variable
DIGraphicBufferConsumer.h82 int64_t mTimestamp; variable
DSurface.h223 int64_t mTimestamp; variable
/frameworks/av/services/camera/libcameraservice/api1/client2/
DZslProcessor.cpp390 if (mZslQueue[i].buffer.mTimestamp != 0) { in clearZslQueueLocked()
480 ALOGVV(" Acquired buffer, timestamp %" PRId64, queueHead.buffer.mTimestamp); in processNewZslBuffer()
491 nsecs_t bufferTimestamp = queueEntry.buffer.mTimestamp; in findMatchesLocked()
548 nsecs_t bufferTimestamp = queueEntry.buffer.mTimestamp; in dumpZslQueue()
/frameworks/base/media/java/android/media/
DImageReader.java598 return mTimestamp; in getTimestamp()
710 private long mTimestamp; field in ImageReader.SurfaceImage
/frameworks/base/media/jni/
Dandroid_media_ImageReader.cpp66 jfieldID mTimestamp; member
633 gSurfaceImageClassInfo.mTimestamp = env->GetFieldID( in ImageReader_classInit()
635 LOG_ALWAYS_FATAL_IF(gSurfaceImageClassInfo.mTimestamp == NULL, in ImageReader_classInit()
859 env->SetLongField(image, gSurfaceImageClassInfo.mTimestamp, in ImageReader_imageSetup()

12