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

/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/base/core/java/android/hardware/
H A DSensorEvent.java154 public long timestamp; field in class:SensorEvent
H A DSensorManager.java374 final long timestamp[] = new long[1];
389 final int sensor = sensors_data_poll(values, status, timestamp);
416 values, timestamp, accuracy);
505 void onSensorChangedLocked(Sensor sensor, float[] values, long[] timestamp, int accuracy) { argument
511 t.timestamp = timestamp[0];
1407 v[0] = mYawfilter.filter(event.timestamp, v[0]);
1569 static native int sensors_data_poll(float[] values, int[] status, long[] timestamp); argument
H A DCamera.java729 private static final String KEY_GPS_TIMESTAMP = "gps-timestamp";
1347 * Sets GPS timestamp. This will be stored in JPEG EXIF header.
1349 * @param timestamp GPS timestamp (UTC in seconds since January 1,
1352 public void setGpsTimestamp(long timestamp) { argument
1353 set(KEY_GPS_TIMESTAMP, Long.toString(timestamp));
1367 * Removes GPS latitude, longitude, altitude, and timestamp from the
/frameworks/base/libs/camera/
H A DICameraClient.cpp65 void dataCallbackTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& imageData) argument
70 data.writeInt64(timestamp);
105 nsecs_t timestamp = data.readInt64(); local
108 dataCallbackTimestamp(timestamp, msgType, imageData);
H A DCamera.cpp335 void Camera::dataCallbackTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr) argument
343 listener->postDataTimestamp(timestamp, msgType, dataPtr);
/frameworks/base/include/media/
H A DIOMX.h106 OMX_U32 flags, OMX_TICKS timestamp) = 0;
167 OMX_TICKS timestamp; member in struct:android::omx_message::__anon54::__anon57
/frameworks/base/location/java/android/location/
H A DGpsStatus.java127 void onNmeaReceived(long timestamp, String nmea); argument
H A DLocationManager.java1146 Nmea(long timestamp, String nmea) { argument
1147 mTimestamp = timestamp;
1204 public void onNmeaReceived(long timestamp, String nmea) { argument
1207 mNmeaBuffer.add(new Nmea(timestamp, nmea));
/frameworks/base/media/libstagefright/
H A DMPEG4Writer.cpp56 int64_t timestamp; member in struct:android::MPEG4Writer::Track::SampleInfo
493 // Our timestamp is in ms.
494 info.timestamp = (timestampUs + 500) / 1000;
739 int64_t last = (*it).timestamp;
743 mOwner->writeInt32((*it).timestamp - last);
745 last = (*it).timestamp;
H A DCameraSource.cpp77 nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr);
111 nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr) {
113 timestamp, msgType, dataPtr->pointer(), dataPtr->size());
110 postDataTimestamp( nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr) argument
/frameworks/base/media/libstagefright/codecs/m4v_h263/dec/
H A DM4vH263Decoder.cpp192 uint32_t timestamp = 0xFFFFFFFF; local
196 mHandle, &bitstream, &timestamp, &bufferSize,
/frameworks/base/core/jni/
H A Dandroid_hardware_SensorManager.cpp149 jfloatArray values, jintArray status, jlongArray timestamp)
157 env->SetLongArrayRegion(timestamp, 0, 1, &data.time);
148 sensors_data_poll(JNIEnv *env, jclass clazz, jfloatArray values, jintArray status, jlongArray timestamp) argument
H A Dandroid_hardware_Camera.cpp51 virtual void postDataTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr);
229 void JNICameraContext::postDataTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr) argument
231 // TODO: plumb up to Java. For now, just drop the timestamp
H A Dandroid_location_GpsLocationProvider.cpp59 GpsUtcTime timestamp; member in struct:NmeaSentence
121 static void nmea_callback(GpsUtcTime timestamp, const char* nmea, int length) argument
136 sNmeaBuffer[mNmeaSentenceCount].timestamp = timestamp;
317 (jfloat)sGpsLocationCopy.accuracy, (jlong)sGpsLocationCopy.timestamp);
330 env->CallVoidMethod(obj, method_reportNmea, i, sNmeaBuffer[i].timestamp);
/frameworks/base/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/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/media/libstagefright/omx/
H A DOMXNodeInstance.cpp368 OMX_U32 flags, OMX_TICKS timestamp) {
375 header->nTimeStamp = timestamp;
365 emptyBuffer( OMX::buffer_id buffer, OMX_U32 rangeOffset, OMX_U32 rangeLength, OMX_U32 flags, OMX_TICKS timestamp) argument
H A DOMX.cpp316 OMX_U32 flags, OMX_TICKS timestamp) {
318 buffer, range_offset, range_length, flags, timestamp);
374 msg.u.extended_buffer_data.timestamp = pBuffer->nTimeStamp;
312 emptyBuffer( node_id node, buffer_id buffer, OMX_U32 range_offset, OMX_U32 range_length, OMX_U32 flags, OMX_TICKS timestamp) argument
/frameworks/base/media/libmedia/
H A DIOMX.cpp312 OMX_U32 flags, OMX_TICKS timestamp) {
320 data.writeInt64(timestamp);
640 OMX_TICKS timestamp = data.readInt64(); local
645 flags, timestamp));
308 emptyBuffer( node_id node, buffer_id buffer, OMX_U32 range_offset, OMX_U32 range_length, OMX_U32 flags, OMX_TICKS timestamp) argument
/frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dpvdec_api.cpp996 uint32 timestamp[], int32 buffer_size[], uint use_ext_timestamp[], uint8 *currYUV)
1001 status = (PV_STATUS)PVDecodeVopHeader(decCtrl, buffer, timestamp, buffer_size, &header_info, use_ext_timestamp, currYUV);
1024 uint32 timestamp[], int32 buffer_size[], VopHeaderInfo *header_info, uint use_ext_timestamp [], uint8 *currYUV)
1048 timestamp[idx] = -1;
1052 /* did the application provide a timestamp for this vop? */
1053 if (timestamp[idx] < 0)
1057 /* decode the timestamp in the bitstream */
1076 timestamp[idx] = CalcVopDisplayTime(video->vol[idx], vopHeader[idx], video->shortVideoHeader);
1083 timestamp[idx] = vopHeader[idx]->timeStamp;
1088 if (timestamp[id
995 PVDecodeVideoFrame(VideoDecControls *decCtrl, uint8 *buffer[], uint32 timestamp[], int32 buffer_size[], uint use_ext_timestamp[], uint8 *currYUV) argument
1023 PVDecodeVopHeader(VideoDecControls *decCtrl, uint8 *buffer[], uint32 timestamp[], int32 buffer_size[], VopHeaderInfo *header_info, uint use_ext_timestamp [], uint8 *currYUV) argument
1592 PVDecSetReference(VideoDecControls *decCtrl, uint8 *refYUV, uint32 timestamp) argument
1633 PVDecSetEnhReference(VideoDecControls *decCtrl, uint8 *refYUV, uint32 timestamp) argument
[all...]
/frameworks/base/camera/libcameraservice/
H A DCameraService.cpp1154 void CameraService::Client::dataCallbackTimestamp(nsecs_t timestamp, int32_t msgType, argument
1166 LOGE("Null data returned in data with timestamp callback");
1175 c->dataCallbackTimestamp(timestamp, msgType, dataPtr);
/frameworks/base/camera/tests/CameraServiceTest/
H A DCameraServiceTest.cpp157 virtual void dataCallbackTimestamp(nsecs_t timestamp, argument
/frameworks/base/location/java/com/android/internal/location/
H A DGpsLocationProvider.java964 float speed, float bearing, float accuracy, long timestamp) {
966 " timestamp: " + timestamp);
996 mLocation.setTime(timestamp);
1220 private void reportNmea(int index, long timestamp) { argument
1231 listener.mListener.onNmeaReceived(timestamp, nmea);
963 reportLocation(int flags, double latitude, double longitude, double altitude, float speed, float bearing, float accuracy, long timestamp) argument

Completed in 2428 milliseconds