Home
last modified time | relevance | path

Searched refs:timestamp (Results 1 – 25 of 282) sorted by relevance

12345678910>>...12

/frameworks/native/services/surfaceflinger/
DEventThread.cpp57 mVSyncEvent[i].header.timestamp = 0; in EventThread()
148 void EventThread::onVSyncEvent(nsecs_t timestamp) { in onVSyncEvent() argument
152 mVSyncEvent[0].header.timestamp = timestamp; in onVSyncEvent()
166 event.header.timestamp = systemTime(); in onHotplugReceived()
215 nsecs_t timestamp = 0; in waitForEvent() local
217 timestamp = mVSyncEvent[i].header.timestamp; in waitForEvent()
218 if (timestamp) { in waitForEvent()
221 mVSyncEvent[i].header.timestamp = 0; in waitForEvent()
227 if (!timestamp) { in waitForEvent()
247 if (timestamp) { in waitForEvent()
[all …]
/frameworks/av/media/libnbaio/
DAudioStreamOutSink.cpp69 status_t AudioStreamOutSink::getNextWriteTimestamp(int64_t *timestamp) { in getNextWriteTimestamp() argument
70 ALOG_ASSERT(timestamp != NULL); in getNextWriteTimestamp()
78 return mStream->get_next_write_timestamp(mStream, timestamp); in getNextWriteTimestamp()
81 status_t AudioStreamOutSink::getTimestamp(AudioTimestamp& timestamp) in getTimestamp() argument
88 int ok = mStream->get_presentation_position(mStream, &position64, &timestamp.mTime); in getTimestamp()
92 timestamp.mPosition = position64; in getTimestamp()
DNBLog.cpp343 String8 timestamp, body; in dump() local
349 dumpLine(timestamp, body); in dump()
357 timestamp.appendFormat("[%*s]", (int) width + 4, ""); in dump()
402 dumpLine(timestamp, body); in dump()
405 timestamp.clear(); in dump()
407 timestamp.appendFormat("[%d.%03d to .%.03d by .%.03d to .%.03d]", in dump()
415 timestamp.appendFormat("[%d.%03d]", (int) ts.tv_sec, in dump()
427 dumpLine(timestamp, body); in dump()
432 dumpLine(timestamp, body); in dump()
438 void NBLog::Reader::dumpLine(const String8& timestamp, String8& body) in dumpLine() argument
[all …]
DMonoPipe.cpp226 status_t MonoPipe::getNextWriteTimestamp(int64_t *timestamp) in getNextWriteTimestamp() argument
230 ALOG_ASSERT(NULL != timestamp); in getNextWriteTimestamp()
235 observeFrontAndNRPTS(&front, timestamp); in getNextWriteTimestamp()
237 if (AudioBufferProvider::kInvalidPTS != *timestamp) { in getNextWriteTimestamp()
245 *timestamp = offsetTimestampByAudioFrames(*timestamp, pendingFrames); in getNextWriteTimestamp()
334 status_t MonoPipe::getTimestamp(AudioTimestamp& timestamp) in getTimestamp() argument
336 if (mTimestampObserver.poll(timestamp)) { in getTimestamp()
/frameworks/av/camera/
DICameraRecordingProxyListener.cpp38 void dataCallbackTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& imageData) in dataCallbackTimestamp() argument
43 data.writeInt64(timestamp); in dataCallbackTimestamp()
61 nsecs_t timestamp = data.readInt64(); in onTransact() local
64 dataCallbackTimestamp(timestamp, msgType, imageData); in onTransact()
DICameraClient.cpp70 void dataCallbackTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& imageData) in dataCallbackTimestamp() argument
75 data.writeInt64(timestamp); in dataCallbackTimestamp()
118 nsecs_t timestamp = data.readInt64(); in onTransact() local
121 dataCallbackTimestamp(timestamp, msgType, imageData); in onTransact()
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
Dparams.rsh27 rsDebug("data timestamp ", pData->timestamp);
28 rsDebug("param timestamp", p->dataTimestamp);
36 rsDebug("timestamp", pTransform->timestamp);
37 rsDebug("param timestamp", p->transformTimestamp);
83 if (p->transformTimestamp == pTransform->timestamp) {
86 p->transformTimestamp = pTransform->timestamp;
88 if (p->dataTimestamp == pData->timestamp) {
91 p->dataTimestamp = pData->timestamp;
Dcamera.rs37 if (camTransform->timestamp != cam->transformTimestamp || cam->isDirty) {
57 cam->timestamp ++;
61 cam->transformTimestamp = camTransform->timestamp;
/frameworks/av/services/camera/libcameraservice/device3/
DCamera3ZslStream.cpp43 TimestampFinder(nsecs_t timestamp) : mTimestamp(timestamp) {} in TimestampFinder()
188 nsecs_t timestamp, in returnBufferCheckedLocked() argument
196 timestamp, in returnBufferCheckedLocked()
284 nsecs_t timestamp, in enqueueInputBufferByTimestamp() argument
289 TimestampFinder timestampFinder = TimestampFinder(timestamp); in enqueueInputBufferByTimestamp()
302 if (actual != timestamp) { in enqueueInputBufferByTimestamp()
306 __FUNCTION__, timestamp, actual); in enqueueInputBufferByTimestamp()
/frameworks/base/wifi/java/android/net/wifi/
DWifiActivityEnergyInfo.java34 private final long timestamp; field in WifiActivityEnergyInfo
48 timestamp = System.currentTimeMillis(); in WifiActivityEnergyInfo()
54 + " timestamp=" + timestamp in toString()
130 return timestamp; in getTimeStamp()
DScanResult.java65 public long timestamp; field in ScanResult
235 this.timestamp = tsf; in ScanResult()
249 this.timestamp = tsf; in ScanResult()
263 timestamp = source.timestamp; in ScanResult()
299 append(timestamp); in toString()
329 dest.writeLong(timestamp); in writeToParcel()
/frameworks/base/core/java/android/bluetooth/
DBluetoothActivityEnergyInfo.java34 private final long timestamp; field in BluetoothActivityEnergyInfo
48 timestamp = System.currentTimeMillis(); in BluetoothActivityEnergyInfo()
54 + " timestamp=" + timestamp in toString()
130 return timestamp; in getTimeStamp()
/frameworks/base/core/java/android/gesture/
DGesturePoint.java30 public final long timestamp; field in GesturePoint
35 timestamp = t; in GesturePoint()
49 return new GesturePoint(x, y, timestamp); in clone()
/frameworks/base/core/jni/
Dandroid_view_DisplayEventReceiver.cpp66 void dispatchVsync(nsecs_t timestamp, int32_t id, uint32_t count);
67 void dispatchHotplug(nsecs_t timestamp, int32_t id, bool connected);
168 *outTimestamp = ev.header.timestamp; in processPendingEvents()
173 dispatchHotplug(ev.header.timestamp, ev.header.id, ev.hotplug.connected); in processPendingEvents()
187 void NativeDisplayEventReceiver::dispatchVsync(nsecs_t timestamp, int32_t id, uint32_t count) { in dispatchVsync() argument
192 gDisplayEventReceiverClassInfo.dispatchVsync, timestamp, id, count); in dispatchVsync()
198 void NativeDisplayEventReceiver::dispatchHotplug(nsecs_t timestamp, int32_t id, bool connected) { in dispatchHotplug() argument
203 gDisplayEventReceiverClassInfo.dispatchHotplug, timestamp, id, connected); in dispatchHotplug()
/frameworks/native/services/sensorservice/tests/
Dsensorservicetest.cpp40 t = float(buffer[i].timestamp - oldTimeStamp) / s2ns(1); in receiver()
42 t = float(buffer[i].timestamp - sStartTime) / s2ns(1); in receiver()
44 oldTimeStamp = buffer[i].timestamp; in receiver()
48 buffer[i].timestamp, in receiver()
/frameworks/av/media/libmedia/
DIAudioTrack.cpp178 virtual status_t getTimestamp(AudioTimestamp& timestamp) { in getTimestamp() argument
185 timestamp.mPosition = reply.readInt32(); in getTimestamp()
186 timestamp.mTime.tv_sec = reply.readInt32(); in getTimestamp()
187 timestamp.mTime.tv_nsec = reply.readInt32(); in getTimestamp()
275 AudioTimestamp timestamp; in onTransact() local
276 status_t status = getTimestamp(timestamp); in onTransact()
279 reply->writeInt32(timestamp.mPosition); in onTransact()
280 reply->writeInt32(timestamp.mTime.tv_sec); in onTransact()
281 reply->writeInt32(timestamp.mTime.tv_nsec); in onTransact()
/frameworks/base/core/java/android/hardware/camera2/legacy/
DCaptureCollector.java123 public void setJpegTimestamp(long timestamp) { in setJpegTimestamp() argument
139 mTimestamp = timestamp; in setJpegTimestamp()
182 public void setPreviewTimestamp(long timestamp) { in setPreviewTimestamp() argument
198 mTimestamp = timestamp; in setPreviewTimestamp()
425 MutableLong timestamp) in waitForRequestCompleted() argument
431 while (!removeRequestIfCompleted(holder, /*out*/timestamp)) { in waitForRequestCompleted()
443 private boolean removeRequestIfCompleted(RequestHolder holder, MutableLong timestamp) { in removeRequestIfCompleted() argument
447 timestamp.value = h.mTimestamp; in removeRequestIfCompleted()
463 public RequestHolder jpegCaptured(long timestamp) { in jpegCaptured() argument
472 h.setJpegTimestamp(timestamp); in jpegCaptured()
[all …]
DCameraDeviceState.java77 void onCaptureStarted(RequestHolder holder, long timestamp); in onCaptureStarted() argument
143 public synchronized boolean setCaptureStart(final RequestHolder request, long timestamp, in setCaptureStart() argument
146 doStateTransition(STATE_CAPTURING, timestamp, captureError); in setCaptureStart()
213 private void doStateTransition(int newState, final long timestamp, final int error) { in doStateTransition() argument
309 mCurrentListener.onCaptureStarted(mCurrentRequest, timestamp); in doStateTransition()
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/include/
Dmp4dec_api.h109 uint32 timestamp; member
155 Bool PVDecSetReference(VideoDecControls *decCtrl, uint8 *refYUV, uint32 timestamp);
156 Bool PVDecSetEnhReference(VideoDecControls *decCtrl, uint8 *refYUV, uint32 timestamp);
157 …DecodeVideoFrame(VideoDecControls *decCtrl, uint8 *bitstream[], uint32 *timestamp, int32 *buffer_s…
158 …Bool PVDecodeVopHeader(VideoDecControls *decCtrl, uint8 *buffer[], uint32 timestamp[], int32 bu…
/frameworks/native/include/gui/
DIGraphicBufferProducer.h278 inline QueueBufferInput(int64_t timestamp, bool isAutoTimestamp,
281 : timestamp(timestamp), isAutoTimestamp(isAutoTimestamp), crop(crop), in timestamp() function
288 *outTimestamp = timestamp;
307 int64_t timestamp;
/frameworks/base/docs/html-intl/intl/zh-cn/distribute/tools/
Dlaunch-checklist.jd69 …ute/toolsreference/launchchecklist/understanding/zhcn" data-sortorder="-timestamp" data-cardsizes=…
86 …stribute/toolsreference/launchchecklist/policies/zhcn" data-sortorder="-timestamp" data-cardsizes=…
111 …istribute/toolsreference/launchchecklist/quality/zhcn" data-sortorder="-timestamp" data-cardsizes=…
150 …distribute/toolsreference/launchchecklist/rating/zhcn" data-sortorder="-timestamp" data-cardsizes=…
201 …istribute/toolsreference/launchchecklist/country/zhcn" data-sortorder="-timestamp" data-cardsizes=…
238 …n:distribute/toolsreference/launchchecklist/size/zhcn" data-sortorder="-timestamp" data-cardsizes=…
266 …on:distribute/toolsreference/launchchecklist/platform" data-sortorder="-timestamp" data-cardsizes=…
307 …:distribute/toolsreference/launchchecklist/price/zhcn" data-sortorder="-timestamp" data-cardsizes=…
328 …te/toolsreference/launchchecklist/purchasemethod/zhcn" data-sortorder="-timestamp" data-cardsizes=…
349 …stribute/toolsreference/launchchecklist/setprice/zhcn" data-sortorder="-timestamp" data-cardsizes=…
[all …]
/frameworks/base/core/java/android/hardware/camera2/
DCameraCaptureSession.java504 CaptureRequest request, long timestamp, long frameNumber) { in onCaptureStarted() argument
506 onCaptureStarted(session, request, timestamp); in onCaptureStarted()
514 CaptureRequest request, long timestamp) { in onCaptureStarted() argument
/frameworks/av/camera/camera2/
DICameraDeviceCallbacks.cpp71 void onCaptureStarted(const CaptureResultExtras& result, int64_t timestamp) in onCaptureStarted() argument
78 data.writeInt64(timestamp); in onCaptureStarted()
139 int64_t timestamp = data.readInt64(); in onTransact() local
140 onCaptureStarted(result, timestamp); in onTransact()
/frameworks/native/libs/ui/
DFence.cpp118 uint64_t timestamp = 0; in getSignalTime() local
120 if (pinfo->timestamp_ns > timestamp) { in getSignalTime()
121 timestamp = pinfo->timestamp_ns; in getSignalTime()
126 return nsecs_t(timestamp); in getSignalTime()
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
DGLEnvironment.java141 public void setSurfaceTimestamp(long timestamp) { in setSurfaceTimestamp() argument
142 if (!nativeSetSurfaceTimestamp(timestamp)) { in setSurfaceTimestamp()
183 private native boolean nativeSetSurfaceTimestamp(long timestamp); in nativeSetSurfaceTimestamp() argument

12345678910>>...12