Searched defs:timestamp (Results 76 - 100 of 165) sorted by relevance

1234567

/frameworks/base/services/core/java/com/android/server/tv/
H A DTvRemoteService.java150 private void sendTimeStampInternalLocked(IBinder token, long timestamp) { argument
153 inputBridge.sendTimestamp(token, timestamp);
301 public void sendTimeStamp(TvRemoteProviderProxy provider, IBinder token, long timestamp) { argument
304 mService.sendTimeStampInternalLocked(token, timestamp);
H A DTvRemoteProviderProxy.java258 void sendTimeStamp(TvRemoteProviderProxy provider, IBinder token, long timestamp); argument
402 void sendTimestamp(final IBinder token, final long timestamp) { argument
409 timestamp);
599 public void sendTimestamp(IBinder token, long timestamp) throws RemoteException { argument
602 connection.sendTimestamp(token, timestamp);
/frameworks/base/services/core/jni/
H A Dcom_android_server_tv_TvUinputBridge.cpp203 static void nativeSendTimestamp(JNIEnv* env, jclass clazz, jlong ptr, jlong timestamp) { argument
206 connection->sendEvent(EV_MSC, MSC_ANDROID_TIME_SEC, timestamp / 1000L);
207 connection->sendEvent(EV_MSC, MSC_ANDROID_TIME_USEC, (timestamp % 1000L) * 1000L);
/frameworks/base/services/usb/java/com/android/server/usb/
H A DUsbMidiDevice.java120 public void onSend(byte[] msg, int offset, int count, long timestamp) throws IOException { argument
123 receiver.send(msg, offset, count, timestamp);
215 long timestamp = System.nanoTime();
235 outputReceivers[index].send(buffer, 0, count, timestamp);
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DFrame.java55 /** Special timestamp value indicating that no time-stamp was set. */
80 * Set the frame's timestamp in nanoseconds.
82 * @param timestamp the timestamp of this frame in nanoseconds.
84 public final void setTimestamp(long timestamp) { argument
85 mBackingStore.setTimestamp(timestamp);
89 * @return the frame's timestamp in nanoseconds.
96 * @return the frame's timestamp in milliseconds.
/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/native/include/gui/
H A DIGraphicBufferProducer.h296 // timestamp - a monotonically increasing value in nanoseconds
297 // isAutoTimestamp - if the timestamp was synthesized at queue time
306 inline QueueBufferInput(int64_t timestamp, bool isAutoTimestamp, argument
309 : timestamp(timestamp), isAutoTimestamp(isAutoTimestamp),
318 *outTimestamp = timestamp;
340 int64_t timestamp; member in struct:android::IGraphicBufferProducer::QueueBufferInput
/frameworks/native/libs/gui/tests/
H A DBufferQueue_test.cpp70 int64_t timestamp; local
78 input.deflate(&timestamp, &isAutoTimestamp, &dataSpace, &crop,
80 ASSERT_EQ(timestamp, item.mTimestamp);
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/services/surfaceflinger/
H A DEventThread.cpp58 mVSyncEvent[i].header.timestamp = 0;
157 void EventThread::onVSyncEvent(nsecs_t timestamp) { argument
161 mVSyncEvent[0].header.timestamp = timestamp;
175 event.header.timestamp = systemTime();
224 nsecs_t timestamp = 0; local
226 timestamp = mVSyncEvent[i].header.timestamp;
227 if (timestamp) {
230 mVSyncEvent[i].header.timestamp
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DInboundSmsTracker.java72 * @param timestamp the message timestamp
78 public InboundSmsTracker(byte[] pdu, long timestamp, int destPort, boolean is3gpp2, argument
81 mTimestamp = timestamp;
101 * @param timestamp the message timestamp
110 public InboundSmsTracker(byte[] pdu, long timestamp, int destPort, boolean is3gpp2, argument
114 mTimestamp = timestamp;
238 StringBuilder builder = new StringBuilder("SmsTracker{timestamp=");
H A DTelephonyComponentFactory.java94 public InboundSmsTracker makeInboundSmsTracker(byte[] pdu, long timestamp, int destPort, argument
96 return new InboundSmsTracker(pdu, timestamp, destPort, is3gpp2, is3gpp2WapPdu, address,
103 public InboundSmsTracker makeInboundSmsTracker(byte[] pdu, long timestamp, int destPort, argument
106 return new InboundSmsTracker(pdu, timestamp, destPort, is3gpp2, address, referenceNumber,
/frameworks/av/camera/
H A DCamera.cpp363 void Camera::dataCallbackTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr) argument
374 proxylistener->dataCallbackTimestamp(timestamp, msgType, dataPtr);
385 listener->postDataTimestamp(timestamp, msgType, dataPtr);
392 void Camera::recordingFrameHandleCallbackTimestamp(nsecs_t timestamp, native_handle_t* handle) argument
403 proxylistener->recordingFrameHandleCallbackTimestamp(timestamp, handle);
414 listener->postRecordingFrameHandleTimestamp(timestamp, handle);
/frameworks/base/core/java/android/hardware/camera2/legacy/
H A DCaptureCollector.java129 public void setJpegTimestamp(long timestamp) { argument
145 mTimestamp = timestamp;
188 public void setPreviewTimestamp(long timestamp) { argument
204 mTimestamp = timestamp;
424 * @param timestamp the timestamp of the request will be written out to here, in ns
431 MutableLong timestamp)
437 while (!removeRequestIfCompleted(holder, /*out*/timestamp)) {
449 private boolean removeRequestIfCompleted(RequestHolder holder, MutableLong timestamp) { argument
453 timestamp
430 waitForRequestCompleted(RequestHolder holder, long timeout, TimeUnit unit, MutableLong timestamp) argument
469 jpegCaptured(long timestamp) argument
527 previewCaptured(long timestamp) argument
[all...]
/frameworks/base/media/java/android/media/
H A DMediaSync.java82 * // surface timestamp must contain media presentation time in nanoseconds.
467 * To help users get current playback position, this method always anchors the timestamp
471 * @return a MediaTimestamp object if a timestamp is available, or {@code null} if no timestamp
480 // TODO: create the timestamp in native
481 MediaTimestamp timestamp = new MediaTimestamp();
482 if (native_getTimestamp(timestamp)) {
483 return timestamp;
492 private native final boolean native_getTimestamp(@NonNull MediaTimestamp timestamp); argument
502 * @param presentationTimeUs the presentation timestamp i
[all...]
/frameworks/base/media/jni/
H A Dandroid_media_MediaSync.cpp273 JNIEnv *env, jobject thiz, jobject timestamp) {
291 env->SetLongField(timestamp, gFields.mediaTimestampMediaTimeUsID,
293 env->SetLongField(timestamp, gFields.mediaTimestampNanoTimeID,
295 env->SetFloatField(timestamp, gFields.mediaTimestampClockRateID,
272 android_media_MediaSync_native_getTimestamp( JNIEnv *env, jobject thiz, jobject timestamp) argument
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DFrame.java121 public void setTimestamp(long timestamp) { argument
122 mTimestamp = timestamp;
/frameworks/base/services/core/java/com/android/server/pm/
H A DEphemeralApplicationRegistry.java538 final long timestamp = metadataFile.lastModified();
545 parseMetadata(parser, packageName), timestamp);
720 long timestamp) {
722 mTimestamp = timestamp;
719 UninstalledEphemeralAppState(EphemeralApplicationInfo ephemeralApp, long timestamp) argument
/frameworks/base/telecomm/java/android/telecom/
H A DVoicemail.java41 private Voicemail(Long timestamp, String number, PhoneAccountHandle phoneAccountHandle, Long id, argument
44 mTimestamp = timestamp;
60 * The number and the timestamp are mandatory for insertion.
62 public static Builder createForInsertion(long timestamp, String number) { argument
63 return new Builder().setNumber(number).setTimestamp(timestamp);
104 public Builder setTimestamp(long timestamp) { argument
105 mBuilderTimestamp = timestamp;
186 /** The timestamp the voicemail was received, in millis since the epoch, zero if not set. */
/frameworks/base/wifi/java/android/net/wifi/
H A DScanResult.java130 * timestamp in microseconds (since boot) when
133 public long timestamp; field in class:ScanResult
369 this.timestamp = tsf;
387 this.timestamp = tsf;
408 this.timestamp = tsf;
447 timestamp = source.timestamp;
484 append(", timestamp: ").
485 append(timestamp);
522 dest.writeLong(timestamp);
[all...]
/frameworks/native/include/android/
H A Dsensor.h230 int64_t timestamp; member in struct:ASensorEvent
/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/rs/
H A DrsAllocation.h75 int64_t timestamp; member in struct:android::renderscript::Allocation::Hal::State
191 int64_t getTimeStamp() {return mHal.state.timestamp;}
/frameworks/av/camera/tests/
H A DCameraBinderTests.cpp188 int64_t timestamp) {
190 (void) timestamp;
187 onCaptureStarted(const CaptureResultExtras& resultExtras, int64_t timestamp) argument
/frameworks/av/media/libstagefright/
H A DOMXClient.cpp149 OMX_U32 flags, OMX_TICKS timestamp, int fenceFd);
468 OMX_U32 flags, OMX_TICKS timestamp, int fenceFd) {
470 node, buffer, range_offset, range_length, flags, timestamp, fenceFd);
464 emptyBuffer( node_id node, buffer_id buffer, OMX_U32 range_offset, OMX_U32 range_length, OMX_U32 flags, OMX_TICKS timestamp, int fenceFd) argument

Completed in 882 milliseconds

1234567