Searched defs:timestamp (Results 1 - 25 of 116) sorted by relevance

12345

/frameworks/av/include/media/
H A DExtendedAudioBufferProvider.h32 // Invoked by buffer consumer when a new timestamp is available.
33 // Default implementation ignores the timestamp.
34 virtual void onTimestamp(const AudioTimestamp& timestamp) { } argument
H A DIOMX.h139 OMX_U32 flags, OMX_TICKS timestamp) = 0;
190 OMX_TICKS timestamp; member in struct:android::omx_message::__anon41::__anon44
/frameworks/base/core/java/android/hardware/
H A DTriggerEvent.java28 * when the trigger happened, the timestamp along with detailed
57 public long timestamp; field in class:TriggerEvent
H A DSensorEvent.java173 * private float timestamp;
178 * if (timestamp != 0) {
179 * final float dT = (event.timestamp - timestamp) * NS2S;
207 * timestamp = event.timestamp;
502 public long timestamp; field in class:SensorEvent
/frameworks/base/core/java/android/gesture/
H A DGesturePoint.java30 public final long timestamp; field in class:GesturePoint
35 timestamp = t;
42 // Read timestamp
49 return new GesturePoint(x, y, timestamp);
/frameworks/av/camera/
H A DICameraRecordingProxyListener.cpp38 void dataCallbackTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& imageData) argument
43 data.writeInt64(timestamp);
61 nsecs_t timestamp = data.readInt64(); local
64 dataCallbackTimestamp(timestamp, msgType, imageData);
H A DICameraClient.cpp70 void dataCallbackTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& imageData) argument
75 data.writeInt64(timestamp);
118 nsecs_t timestamp = data.readInt64(); local
121 dataCallbackTimestamp(timestamp, msgType, imageData);
/frameworks/base/core/java/android/hardware/location/
H A DGeofenceHardwareCallback.java37 * @param timestamp The timestamp (elapsed real time in milliseconds) when the transition was
42 long timestamp, int monitoringType) {
41 onGeofenceTransition(int geofenceId, int transition, Location location, long timestamp, int monitoringType) argument
/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/av/media/libnbaio/
H A DMonoPipeReader.cpp89 void MonoPipeReader::onTimestamp(const AudioTimestamp& timestamp) argument
91 mPipe->mTimestampMutator.push(timestamp);
H A DSourceAudioBufferProvider.cpp110 void SourceAudioBufferProvider::onTimestamp(const AudioTimestamp& timestamp) argument
112 mSource->onTimestamp(timestamp);
H A DAudioStreamOutSink.cpp69 status_t AudioStreamOutSink::getNextWriteTimestamp(int64_t *timestamp) { argument
70 ALOG_ASSERT(timestamp != NULL);
78 return mStream->get_next_write_timestamp(mStream, timestamp);
81 status_t AudioStreamOutSink::getTimestamp(AudioTimestamp& timestamp) argument
88 int ok = mStream->get_presentation_position(mStream, &position64, &timestamp.mTime);
92 timestamp.mPosition = position64;
/frameworks/native/include/gui/
H A DDisplayEventReceiver.h52 nsecs_t timestamp __attribute__((aligned(8))); member in struct:android::DisplayEventReceiver::Event::Header
H A DCpuConsumer.h55 int64_t timestamp; member in struct:android::CpuConsumer::LockedBuffer
/frameworks/av/camera/camera2/
H A DICameraDeviceCallbacks.cpp71 void onCaptureStarted(const CaptureResultExtras& result, int64_t timestamp) argument
78 data.writeInt64(timestamp);
139 int64_t timestamp = data.readInt64(); local
140 onCaptureStarted(result, timestamp);
/frameworks/av/services/camera/libcameraservice/device3/
H A DCamera3DummyStream.cpp47 nsecs_t timestamp) {
55 nsecs_t timestamp,
45 returnBufferLocked( const camera3_stream_buffer &buffer, nsecs_t timestamp) argument
53 returnBufferCheckedLocked( const camera3_stream_buffer &buffer, nsecs_t timestamp, bool output, sp<Fence> *releaseFenceOut) argument
H A DCamera3IOStreamBase.cpp76 lines.appendFormat(" Frames produced: %d, last timestamp: %" PRId64 " ns\n",
209 nsecs_t timestamp,
226 res = returnBufferCheckedLocked(buffer, timestamp, output,
261 mLastTimestamp = timestamp;
207 returnAnyBufferLocked( const camera3_stream_buffer &buffer, nsecs_t timestamp, bool output) argument
H A DCamera3InputStream.cpp92 nsecs_t timestamp,
97 (void)timestamp;
161 return returnAnyBufferLocked(buffer, /*timestamp*/0, /*output*/false);
90 returnBufferCheckedLocked( const camera3_stream_buffer &buffer, nsecs_t timestamp, bool output, sp<Fence> *releaseFenceOut) argument
/frameworks/base/location/java/android/location/
H A DCountry.java91 private Country(final String countryIso, final int source, long timestamp) { argument
98 mTimestamp = timestamp;
158 * the timestamp value and just checks for equivalence of countryIso and source values.
168 // No need to check the equivalence of the timestamp
188 * and timestamp fields, return true if the countryIso fields are equal
/frameworks/base/services/core/java/com/android/server/location/
H A DGpsStatusListenerHelper.java83 public void onNmeaReceived(final long timestamp, final String nmea) { argument
87 listener.onNmeaReceived(timestamp, nmea);
/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/av/include/media/nbaio/
H A DNBAIO.h228 // Returns NO_ERROR if a timestamp is available. The timestamp includes the total number
230 // as of this presentation count. The timestamp parameter is undefined if error is returned.
231 virtual status_t getTimestamp(AudioTimestamp& timestamp) { return INVALID_OPERATION; } argument
320 // Invoked asynchronously by corresponding sink when a new timestamp is available.
321 // Default implementation ignores the timestamp.
322 virtual void onTimestamp(const AudioTimestamp& timestamp) { } argument
/frameworks/av/services/audioflinger/
H A DFastMixer.h83 AudioTimestamp timestamp; member in class:android::FastMixer
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothActivityEnergyInfo.java34 private final long timestamp; field in class:BluetoothActivityEnergyInfo
48 timestamp = System.currentTimeMillis();
54 + " timestamp=" + timestamp
127 * @return timestamp(wall clock) of record creation
130 return timestamp;

Completed in 1184 milliseconds

12345