Searched refs:timestamp (Results 51 - 75 of 360) sorted by relevance

1234567891011>>

/frameworks/av/media/ndk/
H A DNdkImagePriv.h36 int64_t timestamp, int32_t width, int32_t height, int32_t numPlanes);
56 media_status_t getTimestamp(/*out*/int64_t* timestamp) const;
/frameworks/av/services/camera/libcameraservice/device3/
H A DCamera3DummyStream.h81 nsecs_t timestamp,
106 nsecs_t timestamp);
H A DCamera3IOStreamBase.h59 // Last received output buffer's timestamp
67 nsecs_t timestamp,
72 nsecs_t timestamp,
/frameworks/base/core/java/com/android/internal/midi/
H A DMidiDispatcher.java88 public void onSend(byte[] msg, int offset, int count, long timestamp) throws IOException { argument
91 receiver.send(msg, offset, count, timestamp);
H A DEventScheduler.java24 * Store arbitrary timestamped events using a Long timestamp.
95 * @param timestamp
97 public SchedulableEvent(long timestamp) { argument
98 mTimestamp = timestamp;
102 * @return timestamp
109 * The timestamp should not be modified when the event is in the
112 public void setTimestamp(long timestamp) { argument
113 mTimestamp = timestamp;
184 * @param timestamp
/frameworks/base/media/java/android/media/tv/
H A DITvRemoteServiceInput.aidl27 void sendTimestamp(IBinder token, long timestamp);
/frameworks/base/media/native/midi/
H A Dmidi.h51 int64_t timestamp; member in struct:__anon1298
147 * Sends data to the specified input port with a timestamp.
152 * timestamp The time stamp to associate with the sent data.
157 ssize_t numBytes, int64_t timestamp);
H A Dmidi.cpp68 * | | + timestamp (8 bytes)
185 message->timestamp = 0;
191 message->timestamp = *(uint64_t*)(readBuffer + readCount - sizeof(uint64_t));
222 uint8_t *buffer, uint8_t *data, ssize_t numBytes,uint64_t timestamp) {
225 memcpy(buffer + 1 + numBytes, &timestamp, sizeof(timestamp));
241 ssize_t numBytes, int64_t timestamp) {
250 ssize_t numTransferBytes = AMIDI_makeSendBuffer(writeBuffer, data, numBytes, timestamp);
221 AMIDI_makeSendBuffer( uint8_t *buffer, uint8_t *data, ssize_t numBytes,uint64_t timestamp) argument
240 AMIDI_sendWithTimestamp(AMIDI_InputPort *inputPort, uint8_t *data, ssize_t numBytes, int64_t timestamp) argument
/frameworks/base/services/core/java/com/android/server/location/
H A DGnssStatusListenerHelper.java97 public void onNmeaReceived(final long timestamp, final String nmea) { argument
101 listener.onNmeaReceived(timestamp, nmea);
/frameworks/base/telephony/java/com/android/ims/internal/uce/presence/
H A DPresTupleInfo.java62 * Gets the timestamp.
70 * Sets the timestamp.
73 public void setTimestamp(String timestamp) { argument
74 this.mTimestamp = timestamp;
/frameworks/native/services/sensorservice/
H A DSensorFusion.cpp75 if ( event.timestamp - mGyroTime> 0 &&
76 event.timestamp - mGyroTime< (int64_t)(5e7) ) { //0.05sec
78 dT = (event.timestamp - mGyroTime) / 1000000000.0f;
94 mGyroTime = event.timestamp;
104 if ( event.timestamp - mAccTime> 0 &&
105 event.timestamp - mAccTime< (int64_t)(1e8) ) { //0.1sec
106 dT = (event.timestamp - mAccTime) / 1000000000.0f;
116 mAccTime = event.timestamp;
/frameworks/native/services/surfaceflinger/tests/vsync/
H A Dvsync.cpp38 float t = float(buffer[i].header.timestamp - oldTimeStamp) / s2ns(1);
41 oldTimeStamp = buffer[i].header.timestamp;
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/include/
H A Dmp4dec_api.h109 uint32 timestamp; member in struct:tagVopHeaderInfo
155 Bool PVDecSetReference(VideoDecControls *decCtrl, uint8 *refYUV, uint32 timestamp);
156 Bool PVDecSetEnhReference(VideoDecControls *decCtrl, uint8 *refYUV, uint32 timestamp);
157 OSCL_IMPORT_REF Bool PVDecodeVideoFrame(VideoDecControls *decCtrl, uint8 *bitstream[], uint32 *timestamp, int32 *buffer_size, uint use_ext_timestamp[], uint8* currYUV);
158 Bool PVDecodeVopHeader(VideoDecControls *decCtrl, uint8 *buffer[], uint32 timestamp[], int32 buffer_size[], VopHeaderInfo *header_info, uint use_ext_timestamp[], uint8 *currYUV);
/frameworks/av/media/libaudioclient/
H A DIAudioTrack.cpp128 virtual status_t getTimestamp(AudioTimestamp& timestamp) { argument
135 timestamp.mPosition = reply.readInt32();
136 timestamp.mTime.tv_sec = reply.readInt32();
137 timestamp.mTime.tv_nsec = reply.readInt32();
242 AudioTimestamp timestamp; local
243 status_t status = getTimestamp(timestamp);
246 reply->writeInt32(timestamp.mPosition);
247 reply->writeInt32(timestamp.mTime.tv_sec);
248 reply->writeInt32(timestamp.mTime.tv_nsec);
/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/services/core/java/com/android/server/tv/
H A DUinputBridge.java38 private static native void nativeSendTimestamp(long ptr, long timestamp); argument
96 public void sendTimestamp(IBinder token, long timestamp) { argument
98 nativeSendTimestamp(mPtr, timestamp);
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/samples/simplecamera/
H A DMotionSensorWTime.java54 .addOutputPort("timestamp", Signature.PORT_OPTIONAL, FrameType.single(long.class))
108 OutputPort timeOutPort = getConnectedOutputPort("timestamp");
110 long timestamp = System.nanoTime();
111 Log.v("MotionSensor", "Timestamp is: " + timestamp);
113 timeStampFrame.setValue(timestamp);
/frameworks/av/include/media/nbaio/
H A DMonoPipe.h83 // Return NO_ERROR if there is a timestamp available
84 status_t getTimestamp(ExtendedTimestamp &timestamp);
/frameworks/av/media/libnbaio/include/
H A DMonoPipe.h83 // Return NO_ERROR if there is a timestamp available
84 status_t getTimestamp(ExtendedTimestamp &timestamp);
/frameworks/base/core/tests/bandwidthtests/src/com/android/bandwidthtest/util/
H A DBandwidthTestUtil.java78 * @param timestamp
82 String timestamp) {
84 "&timestamp=" + timestamp;
119 * Post a given file for a given device and timestamp to the server.
122 * @param timestamp {@link String} timestamp
126 public static boolean postFileToServer(String server, String deviceId, String timestamp, argument
140 new StringPart("timestamp", timestamp),
81 buildDownloadUrl(String server, int size, String deviceId, String timestamp) argument
[all...]
/frameworks/base/media/java/android/media/
H A DImage.java173 * Get the timestamp associated with this frame.
175 * The timestamp is measured in nanoseconds, and is normally monotonically
178 * timebase of the timestamp depend on the source providing images. See
187 * Set the timestamp associated with this frame.
189 * The timestamp is measured in nanoseconds, and is normally monotonically
192 * timebase of the timestamp depend on the source providing images. See
201 * {@link ImageWriter}, or the timestamp will be generated automatically when
205 * @param timestamp The timestamp to be set for this image.
207 public void setTimestamp(long timestamp) { argument
[all...]
/frameworks/base/media/packages/BluetoothMidiService/src/com/android/bluetoothmidiservice/
H A DBluetoothPacketEncoder.java44 // timestamp for first message in current packet
56 public void onSend(byte[] msg, int offset, int count, long timestamp)
60 int milliTimestamp = (int)(timestamp / MILLISECOND_NANOS) & MILLISECOND_MASK;
75 // Status bytes must be preceded by a timestamp
79 // SysEx start byte must be preceded by a timestamp
82 // SysEx continuation packets must not have timestamp byte
86 if (needsTimestamp) bytesNeeded++; // add one for timestamp byte
100 // write new timestamp byte if necessary
102 // timestamp byte with bits 0 - 6 of timestamp
188 onSend(byte[] msg, int offset, int count, long timestamp) argument
[all...]
/frameworks/base/native/android/
H A Dchoreographer.cpp70 virtual void dispatchVsync(nsecs_t timestamp, int32_t id, uint32_t count);
71 virtual void dispatchHotplug(nsecs_t timestamp, int32_t id, bool connected);
143 void Choreographer::dispatchVsync(nsecs_t timestamp, int32_t id, uint32_t) { argument
159 cb.callback(timestamp, cb.data);
/frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
H A DNetworkLogger.java56 long timestamp, int uid) {
61 mPm.getNameForUid(uid), timestamp);
66 public void onConnectEvent(String ipAddr, int port, long timestamp, int uid) {
71 timestamp);
/frameworks/hardware/interfaces/displayservice/1.0/vts/functional/
H A DVtsFwkDisplayServiceV1_0TargetTest.cpp56 Return<void> onVsync(uint64_t timestamp, uint32_t count) override {
57 ALOGE("onVsync: timestamp=%" PRIu64 " count=%d", timestamp, count);
62 Return<void> onHotplug(uint64_t timestamp, bool connected) override {
63 ALOGE("onVsync: timestamp=%" PRIu64 " connected=%s", timestamp, connected ? "true" : "false");

Completed in 1410 milliseconds

1234567891011>>