Searched defs:timestamp (Results 1 - 25 of 117) sorted by last modified time

12345

/frameworks/rs/driver/runtime/
H A Drs_structs.h47 int64_t timestamp; member in struct:Allocation::__anon1498::__anon1499
/frameworks/rs/
H A DrsAllocation.h71 int64_t timestamp; member in struct:android::renderscript::Allocation::Hal::State
/frameworks/support/v4/java/android/support/v4/app/
H A DNotificationCompat.java280 * of a timestamp, as supplied to {@link Builder#setUsesChronometer(boolean)}.
926 * Control whether the timestamp set with {@link #setWhen(long) setWhen} is shown
937 * Instead of presenting <code>when</code> as a timestamp, the notification will show an
3112 * Gets the timestamp of the conversation.
3198 * Sets the timestamp of the most recent message in an unread conversation.
3202 * but without a newer timestamp may result in Android Auto not displaying a
3205 * @param timestamp The timestamp of the most recent message in the conversation.
3208 public Builder setLatestTimestamp(long timestamp) { argument
3209 mLatestTimestamp = timestamp;
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DInboundSmsTracker.java69 * @param timestamp the message timestamp
74 InboundSmsTracker(byte[] pdu, long timestamp, int destPort, boolean is3gpp2, argument
77 mTimestamp = timestamp;
96 * @param timestamp the message timestamp
105 public InboundSmsTracker(byte[] pdu, long timestamp, int destPort, boolean is3gpp2, argument
109 mTimestamp = timestamp;
231 StringBuilder builder = new StringBuilder("SmsTracker{timestamp=");
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCdmaInboundSmsHandler.java278 long timestamp) {
321 InboundSmsTracker tracker = new InboundSmsTracker(userData, timestamp, destinationPort,
277 processCdmaWapPdu(byte[] pdu, int referenceNumber, String address, long timestamp) argument
/frameworks/native/include/android/
H A Dsensor.h155 int64_t timestamp; member in struct:ASensorEvent
/frameworks/native/include/gui/
H A DCpuConsumer.h55 int64_t timestamp; member in struct:android::CpuConsumer::LockedBuffer
H A DDisplayEventReceiver.h52 nsecs_t timestamp __attribute__((aligned(8))); member in struct:android::DisplayEventReceiver::Event::Header
H A DIGraphicBufferProducer.h268 // timestamp - a monotonically increasing value in nanoseconds
269 // isAutoTimestamp - if the timestamp was synthesized at queue time
278 inline QueueBufferInput(int64_t timestamp, bool isAutoTimestamp, argument
281 : timestamp(timestamp), isAutoTimestamp(isAutoTimestamp), crop(crop),
288 *outTimestamp = timestamp;
307 int64_t timestamp; member in struct:android::IGraphicBufferProducer::QueueBufferInput
/frameworks/native/libs/gui/
H A DBufferQueueProducer.cpp517 int64_t timestamp; local
525 input.deflate(&timestamp, &isAutoTimestamp, &crop, &scalingMode, &transform,
584 slot, mCore->mFrameCounter + 1, timestamp,
610 item.mTimestamp = timestamp;
H A DSurface.cpp298 int64_t timestamp; local
301 timestamp = systemTime(SYSTEM_TIME_MONOTONIC);
303 ALOGV("Surface::queueBuffer making up timestamp: %.2f ms",
304 timestamp / 1000000.f);
306 timestamp = mTimestamp;
320 IGraphicBufferProducer::QueueBufferInput input(timestamp, isAutoTimestamp,
527 int64_t timestamp = va_arg(args, int64_t); local
528 return setBuffersTimestamp(timestamp);
726 int Surface::setBuffersTimestamp(int64_t timestamp) argument
730 mTimestamp = timestamp;
[all...]
/frameworks/native/libs/gui/tests/
H A DCpuConsumer_test.cpp486 int64_t timestamp, uint32_t *stride) {
531 ALOGVV("Set timestamp to %p", anw.get());
532 err = native_window_set_buffers_timestamp(anw.get(), timestamp);
568 EXPECT_EQ(time, b.timestamp);
609 EXPECT_EQ(time[i], b.timestamp);
651 EXPECT_EQ(time, b[i].timestamp);
674 EXPECT_EQ(time, bTooMuch.timestamp);
484 produceOneFrame(const sp<ANativeWindow>& anw, const CpuConsumerTestParams& params, int64_t timestamp, uint32_t *stride) argument
H A DIGraphicBufferProducer_test.cpp127 timestamp = QUEUE_BUFFER_INPUT_TIMESTAMP;
138 timestamp,
147 QueueBufferInputBuilder& setTimestamp(int64_t timestamp) { argument
148 this->timestamp = timestamp;
183 int64_t timestamp; member in struct:android::IGraphicBufferProducerTest::QueueBufferInputBuilder
/frameworks/native/libs/ui/
H A DFence.cpp118 uint64_t timestamp = 0; local
120 if (pinfo->timestamp_ns > timestamp) {
121 timestamp = pinfo->timestamp_ns;
126 return nsecs_t(timestamp);
/frameworks/native/opengl/tests/gl2_cameraeye/src/com/android/gl2cameraeye/
H A DGL2CameraEye.java191 long timestamp = mSurface.getTimestamp();
192 doPhysics(timestamp);
339 private void doPhysics(long timestamp) { argument
345 mLastTime = timestamp;
347 float deltaT = (timestamp - mLastTime)/1000000000.f; // To seconds
355 mLastTime = timestamp;
/frameworks/native/services/surfaceflinger/
H A DDispSync.cpp352 bool DispSync::addResyncSample(nsecs_t timestamp) { argument
356 mResyncSamples[idx] = timestamp;
H A DEventThread.cpp57 mVSyncEvent[i].header.timestamp = 0;
148 void EventThread::onVSyncEvent(nsecs_t timestamp) { argument
152 mVSyncEvent[0].header.timestamp = timestamp;
166 event.header.timestamp = systemTime();
215 nsecs_t timestamp = 0; local
217 timestamp = mVSyncEvent[i].header.timestamp;
218 if (timestamp) {
221 mVSyncEvent[i].header.timestamp
[all...]
H A DSurfaceFlinger.cpp784 void SurfaceFlinger::onVSyncReceived(int type, nsecs_t timestamp) { argument
790 needsHwVsync = mPrimaryDispSync.addResyncSample(timestamp);
967 // timestamp instead.
/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DHWComposer.cpp264 int64_t timestamp) {
267 ctx->hwc->vsync(disp, timestamp);
281 void HWComposer::vsync(int disp, int64_t timestamp) { argument
287 // with the same timestamp when turning the display off and on. This
290 if (timestamp == mLastHwVSync[disp]) {
292 timestamp);
296 mLastHwVSync[disp] = timestamp;
303 mEventHandler.onVSyncReceived(disp, timestamp);
449 // this returns the last refresh timestamp.
451 // the refresh period and whatever closest timestamp w
263 hook_vsync(const struct hwc_procs* procs, int disp, int64_t timestamp) argument
[all...]
H A DVirtualDisplaySurface.cpp454 int64_t timestamp; local
460 input.deflate(&timestamp, &isAutoTimestamp, &crop, &scalingMode,
/frameworks/ex/camera2/public/src/com/android/ex/camera2/blocking/
H A DBlockingCaptureCallback.java126 long timestamp, long frameNumber) {
127 if (mProxy != null) mProxy.onCaptureStarted(session, request, timestamp, frameNumber);
125 onCaptureStarted(CameraCaptureSession session, CaptureRequest request, long timestamp, long frameNumber) argument
/frameworks/ex/camera2/utils/src/com/android/ex/camera2/utils/
H A DCamera2CaptureCallbackForwarder.java92 final long timestamp, final long frameNumber) {
96 mListener.onCaptureStarted(session, request, timestamp, frameNumber);
91 onCaptureStarted(final CameraCaptureSession session, final CaptureRequest request, final long timestamp, final long frameNumber) argument
H A DCamera2CaptureCallbackSplitter.java90 long timestamp, long frameNumber) {
92 target.onCaptureStarted(session, request, timestamp, frameNumber);
89 onCaptureStarted(CameraCaptureSession session, CaptureRequest request, long timestamp, long frameNumber) argument
/frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
H A DTrackerEntry.java115 private void setTimestamp(String timestamp) { argument
116 mTimestamp = timestamp;
209 String timestamp = cursor.getString(cursor.getColumnIndex(TIMESTAMP));
213 entry.setTimestamp(timestamp);
/frameworks/base/wifi/java/android/net/wifi/
H A DScanResult.java62 * timestamp in microseconds (since boot) when
65 public long timestamp; field in class:ScanResult
235 this.timestamp = tsf;
249 this.timestamp = tsf;
263 timestamp = source.timestamp;
298 append(", timestamp: ").
299 append(timestamp);
329 dest.writeLong(timestamp);

Completed in 269 milliseconds

12345