/frameworks/native/services/surfaceflinger/ |
D | EventThread.cpp | 57 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/ |
D | AudioStreamOutSink.cpp | 69 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, ×tamp.mTime); in getTimestamp() 92 timestamp.mPosition = position64; in getTimestamp()
|
D | NBLog.cpp | 343 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 …]
|
D | MonoPipe.cpp | 226 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/ |
D | ICameraRecordingProxyListener.cpp | 38 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()
|
D | ICameraClient.cpp | 70 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/ |
D | params.rsh | 27 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;
|
D | camera.rs | 37 if (camTransform->timestamp != cam->transformTimestamp || cam->isDirty) { 57 cam->timestamp ++; 61 cam->transformTimestamp = camTransform->timestamp;
|
/frameworks/av/services/camera/libcameraservice/device3/ |
D | Camera3ZslStream.cpp | 43 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/ |
D | WifiActivityEnergyInfo.java | 34 private final long timestamp; field in WifiActivityEnergyInfo 48 timestamp = System.currentTimeMillis(); in WifiActivityEnergyInfo() 54 + " timestamp=" + timestamp in toString() 130 return timestamp; in getTimeStamp()
|
D | ScanResult.java | 65 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/ |
D | BluetoothActivityEnergyInfo.java | 34 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/ |
D | GesturePoint.java | 30 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/ |
D | android_view_DisplayEventReceiver.cpp | 66 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/ |
D | sensorservicetest.cpp | 40 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/ |
D | IAudioTrack.cpp | 178 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/ |
D | CaptureCollector.java | 123 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 …]
|
D | CameraDeviceState.java | 77 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/ |
D | mp4dec_api.h | 109 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/ |
D | IGraphicBufferProducer.h | 278 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/ |
D | launch-checklist.jd | 69 …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/ |
D | CameraCaptureSession.java | 504 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/ |
D | ICameraDeviceCallbacks.cpp | 71 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/ |
D | Fence.cpp | 118 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/ |
D | GLEnvironment.java | 141 public void setSurfaceTimestamp(long timestamp) { in setSurfaceTimestamp() argument 142 if (!nativeSetSurfaceTimestamp(timestamp)) { in setSurfaceTimestamp() 183 private native boolean nativeSetSurfaceTimestamp(long timestamp); in nativeSetSurfaceTimestamp() argument
|