Searched refs:timestamp (Results 126 - 150 of 360) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/hardware/
H A DSystemSensorManager.java318 long timestamp) {
325 timestamp);
636 float[] values,int accuracy, long timestamp);
749 long timestamp) {
750 return nativeInjectSensorData(nSensorEventQueue, handle, values, accuracy, timestamp);
759 long timestamp);
801 long timestamp) {
820 t.timestamp = timestamp;
896 long timestamp) {
317 injectSensorDataImpl(Sensor sensor, float[] values, int accuracy, long timestamp) argument
635 nativeInjectSensorData(long eventQ, int handle, float[] values,int accuracy, long timestamp) argument
748 injectSensorDataBase(int handle, float[] values, int accuracy, long timestamp) argument
758 dispatchSensorEvent(int handle, float[] values, int accuracy, long timestamp) argument
800 dispatchSensorEvent(int handle, float[] values, int inAccuracy, long timestamp) argument
895 dispatchSensorEvent(int handle, float[] values, int accuracy, long timestamp) argument
933 injectSensorData(int handle, float[] values,int accuracy, long timestamp) argument
938 dispatchSensorEvent(int handle, float[] values, int accuracy, long timestamp) argument
[all...]
/frameworks/av/media/libaudioclient/
H A DAudioTrack.cpp583 // save start timestamp
614 mProxy->clearTimestamp(); // need new server push for valid timestamp
766 // the same configuration. A timestamp query for a paused track
2377 status_t AudioTrack::getTimestamp(ExtendedTimestamp *timestamp) argument
2379 if (timestamp == nullptr) {
2383 return getTimestamp_l(timestamp);
2386 status_t AudioTrack::getTimestamp_l(ExtendedTimestamp *timestamp) argument
2400 status_t status = mProxy->getTimestamp(timestamp);
2403 timestamp->mPosition[ExtendedTimestamp::LOCATION_CLIENT] = mFramesWritten;
2404 timestamp
2418 getTimestamp(AudioTimestamp& timestamp) argument
2424 getTimestamp_l(AudioTimestamp& timestamp) argument
[all...]
/frameworks/av/camera/
H A DCamera.cpp371 void Camera::dataCallbackTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr) argument
382 proxylistener->dataCallbackTimestamp(timestamp, msgType, dataPtr);
393 listener->postDataTimestamp(timestamp, msgType, dataPtr);
400 void Camera::recordingFrameHandleCallbackTimestamp(nsecs_t timestamp, native_handle_t* handle) argument
411 proxylistener->recordingFrameHandleCallbackTimestamp(timestamp, handle);
422 listener->postRecordingFrameHandleTimestamp(timestamp, handle);
/frameworks/av/media/libaaudio/src/client/
H A DAudioStreamInternal.cpp369 // TODO Get a more accurate timestamp from the service. This code just adds a fudge factor.
385 int64_t framePosition = command.timestamp.position;
386 int64_t nanoTime = command.timestamp.timestamp;
387 ALOGD("AudioStreamInternal() timestamp says framePosition = %08lld at nanoTime %lld",
407 processTimestamp(message->timestamp.position, message->timestamp.timestamp);
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dpvdec_api.cpp1056 uint32 timestamp[], int32 buffer_size[], uint use_ext_timestamp[], uint8 *currYUV)
1061 status = (PV_STATUS)PVDecodeVopHeader(decCtrl, buffer, timestamp, buffer_size, &header_info, use_ext_timestamp, currYUV);
1084 uint32 timestamp[], int32 buffer_size[], VopHeaderInfo *header_info, uint use_ext_timestamp [], uint8 *currYUV)
1108 timestamp[idx] = -1;
1112 /* did the application provide a timestamp for this vop? */
1113 if (timestamp[idx] < 0)
1117 /* decode the timestamp in the bitstream */
1136 timestamp[idx] = CalcVopDisplayTime(video->vol[idx], vopHeader[idx], video->shortVideoHeader);
1143 timestamp[idx] = vopHeader[idx]->timeStamp;
1148 if (timestamp[id
1055 PVDecodeVideoFrame(VideoDecControls *decCtrl, uint8 *buffer[], uint32 timestamp[], int32 buffer_size[], uint use_ext_timestamp[], uint8 *currYUV) argument
1083 PVDecodeVopHeader(VideoDecControls *decCtrl, uint8 *buffer[], uint32 timestamp[], int32 buffer_size[], VopHeaderInfo *header_info, uint use_ext_timestamp [], uint8 *currYUV) argument
1657 PVDecSetReference(VideoDecControls *decCtrl, uint8 *refYUV, uint32 timestamp) argument
1698 PVDecSetEnhReference(VideoDecControls *decCtrl, uint8 *refYUV, uint32 timestamp) argument
[all...]
/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/av/include/media/audiohal/
H A DStreamHalInterface.h117 virtual status_t getNextWriteTimestamp(int64_t *timestamp) = 0;
143 virtual status_t getPresentationPosition(uint64_t *frames, struct timespec *timestamp) = 0;
/frameworks/av/media/libaudiohal/
H A DStreamHalLocal.h109 virtual status_t getNextWriteTimestamp(int64_t *timestamp);
133 virtual status_t getPresentationPosition(uint64_t *frames, struct timespec *timestamp);
H A DStreamHalLocal.cpp147 status_t StreamOutHalLocal::getNextWriteTimestamp(int64_t *timestamp) { argument
149 return mStream->get_next_write_timestamp(mStream, timestamp);
221 status_t StreamOutHalLocal::getPresentationPosition(uint64_t *frames, struct timespec *timestamp) { argument
223 return mStream->get_presentation_position(mStream, frames, timestamp);
/frameworks/av/media/libaudiohal/include/
H A DStreamHalInterface.h117 virtual status_t getNextWriteTimestamp(int64_t *timestamp) = 0;
143 virtual status_t getPresentationPosition(uint64_t *frames, struct timespec *timestamp) = 0;
/frameworks/av/media/libstagefright/omx/
H A DBWGraphicBufferSource.cpp42 int64_t timestamp, int fenceFd) override {
43 return mOMXNode->emptyBuffer(bufferId, buffer, flags, timestamp, fenceFd);
/frameworks/av/services/audioflinger/
H A DAudioStreamOut.cpp91 status_t AudioStreamOut::getPresentationPosition(uint64_t *frames, struct timespec *timestamp) argument
98 status_t status = stream->getPresentationPosition(&halPosition, timestamp);
/frameworks/av/services/camera/libcameraservice/api1/
H A DCameraClient.h109 static void dataCallbackTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr, void* user);
122 void handleGenericDataTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr);
/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DCaptureSequencer.h66 nsecs_t timestamp);
72 void onCaptureAvailable(nsecs_t timestamp, const sp<MemoryBase>& captureBuffer, bool captureError);
/frameworks/av/services/camera/libcameraservice/device3/
H A DCamera3OutputStream.h187 nsecs_t timestamp,
219 // Whether consumer assumes MONOTONIC timestamp
258 nsecs_t timestamp);
H A DCamera3Stream.h301 nsecs_t timestamp);
432 nsecs_t timestamp);
H A DCamera3StreamInterface.h225 nsecs_t timestamp) = 0;
/frameworks/base/core/java/android/hardware/camera2/impl/
H A DCallbackProxies.java102 CaptureRequest request, long timestamp, long frameNumber) {
103 mProxy.invoke("onCaptureStarted", camera, request, timestamp, frameNumber);
101 onCaptureStarted(CameraDevice camera, CaptureRequest request, long timestamp, long frameNumber) 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/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A Dtouch_analytics.proto72 optional uint64 timestamp = 4;
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DInputPort.java188 long timestamp = frame.getTimestamp();
189 if (timestamp != Frame.TIMESTAMP_NOT_SET) {
/frameworks/av/camera/include/camera/ndk/
H A DNdkCameraCaptureSession.h164 * @param timestamp The timestamp when the capture is started. This timestmap will match
170 const ACaptureRequest* request, int64_t timestamp);
262 * with the actual timestamp for the start of exposure.
263 * This timestamp matches the timestamps that will be
/frameworks/av/include/camera/ndk/
H A DNdkCameraCaptureSession.h164 * @param timestamp The timestamp when the capture is started. This timestmap will match
170 const ACaptureRequest* request, int64_t timestamp);
262 * with the actual timestamp for the start of exposure.
263 * This timestamp matches the timestamps that will be
/frameworks/base/core/java/android/app/
H A DActivityManagerInternal.java138 * @param timestamp The time at which the app transition started in
141 public abstract void notifyAppTransitionStarting(SparseIntArray reasons, long timestamp); argument
/frameworks/base/core/jni/
H A Dandroid_app_admin_SecurityLog.cpp205 jlong timestamp,
212 readEvents(env, ANDROID_LOG_RDONLY | ANDROID_LOG_NONBLOCK, timestamp, out);
226 jlong timestamp,
232 readEvents(env, ANDROID_LOG_RDONLY | ANDROID_LOG_NONBLOCK | ANDROID_LOG_WRAP, timestamp, out);
204 android_app_admin_SecurityLog_readEventsSince(JNIEnv* env, jobject , jlong timestamp, jobject out) argument
225 android_app_admin_SecurityLog_readEventsOnWrapping(JNIEnv* env, jobject , jlong timestamp, jobject out) argument

Completed in 477 milliseconds

1234567891011>>