Searched refs:timestamp (Results 76 - 100 of 221) sorted by relevance

123456789

/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/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/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
H A DTransform.java85 mTransformData.timestamp = 1;
/frameworks/native/include/gui/
H A DCpuConsumer.h55 int64_t timestamp; member in struct:android::CpuConsumer::LockedBuffer
H A DDisplayEventReceiver.h52 nsecs_t timestamp __attribute__((aligned(8))); member in struct:android::DisplayEventReceiver::Event::Header
/frameworks/native/services/surfaceflinger/
H A DDispSync.h75 // addPresentFence is called. When the fence does signal, its timestamp
96 bool addResyncSample(nsecs_t timestamp);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DInboundSmsTracker.java69 * @param timestamp the message timestamp
74 InboundSmsTracker(byte[] pdu, long timestamp, int destPort, boolean is3gpp2, argument
77 mTimestamp = timestamp;
96 * @param timestamp the message timestamp
105 public InboundSmsTracker(byte[] pdu, long timestamp, int destPort, boolean is3gpp2, argument
109 mTimestamp = timestamp;
231 StringBuilder builder = new StringBuilder("SmsTracker{timestamp=");
/frameworks/base/core/java/android/hardware/camera2/legacy/
H A DCameraDeviceUserShim.java229 public void onCaptureStarted(final CaptureResultExtras resultExtras, final long timestamp) { argument
231 /*arg1*/ (int) (timestamp & 0xFFFFFFFFL),
232 /*arg2*/ (int) ( (timestamp >> 32) & 0xFFFFFFFFL),
285 long timestamp = msg.arg2 & 0xFFFFFFFFL;
286 timestamp = (timestamp << 32) | (msg.arg1 & 0xFFFFFFFFL);
288 mCallbacks.onCaptureStarted(resultExtras, timestamp);
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/
H A DSoftMPEG4.cpp221 // so use fake timestamp instead
222 uint32_t timestamp = 0xFFFFFFFF; local
225 timestamp = mPvTime;
236 mHandle, &bitstream, &timestamp, &tmp,
253 outHeader->nTimeStamp = mPvToOmxTimeMap.valueFor(timestamp);
254 mPvToOmxTimeMap.removeItem(timestamp);
/frameworks/av/services/camera/libcameraservice/device3/
H A DCamera3OutputStream.cpp135 nsecs_t timestamp) {
138 status_t res = returnAnyBufferLocked(buffer, timestamp, /*output*/true);
144 mLastTimestamp = timestamp;
151 nsecs_t timestamp,
196 res = native_window_set_buffers_timestamp(mConsumer.get(), timestamp);
198 ALOGE("%s: Stream %d: Error setting timestamp: %s (%d)",
133 returnBufferLocked( const camera3_stream_buffer &buffer, nsecs_t timestamp) argument
149 returnBufferCheckedLocked( const camera3_stream_buffer &buffer, nsecs_t timestamp, bool output, sp<Fence> *releaseFenceOut) argument
H A DCamera3Stream.h281 nsecs_t timestamp);
382 nsecs_t timestamp);
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dpvdec_api.cpp1054 uint32 timestamp[], int32 buffer_size[], uint use_ext_timestamp[], uint8 *currYUV)
1059 status = (PV_STATUS)PVDecodeVopHeader(decCtrl, buffer, timestamp, buffer_size, &header_info, use_ext_timestamp, currYUV);
1082 uint32 timestamp[], int32 buffer_size[], VopHeaderInfo *header_info, uint use_ext_timestamp [], uint8 *currYUV)
1106 timestamp[idx] = -1;
1110 /* did the application provide a timestamp for this vop? */
1111 if (timestamp[idx] < 0)
1115 /* decode the timestamp in the bitstream */
1134 timestamp[idx] = CalcVopDisplayTime(video->vol[idx], vopHeader[idx], video->shortVideoHeader);
1141 timestamp[idx] = vopHeader[idx]->timeStamp;
1146 if (timestamp[id
1053 PVDecodeVideoFrame(VideoDecControls *decCtrl, uint8 *buffer[], uint32 timestamp[], int32 buffer_size[], uint use_ext_timestamp[], uint8 *currYUV) argument
1081 PVDecodeVopHeader(VideoDecControls *decCtrl, uint8 *buffer[], uint32 timestamp[], int32 buffer_size[], VopHeaderInfo *header_info, uint use_ext_timestamp [], uint8 *currYUV) argument
1650 PVDecSetReference(VideoDecControls *decCtrl, uint8 *refYUV, uint32 timestamp) argument
1691 PVDecSetEnhReference(VideoDecControls *decCtrl, uint8 *refYUV, uint32 timestamp) argument
[all...]
/frameworks/native/libs/gui/tests/
H A DIGraphicBufferProducer_test.cpp128 timestamp = QUEUE_BUFFER_INPUT_TIMESTAMP;
140 timestamp,
150 QueueBufferInputBuilder& setTimestamp(int64_t timestamp) { argument
151 this->timestamp = timestamp;
191 int64_t timestamp; member in struct:android::IGraphicBufferProducerTest::QueueBufferInputBuilder
/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/camera/
H A DCamera.h43 virtual void postDataTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr) = 0;
150 virtual void dataCallbackTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr);
/frameworks/av/services/audioflinger/
H A DAudioStreamOut.cpp85 status_t AudioStreamOut::getPresentationPosition(uint64_t *frames, struct timespec *timestamp) argument
92 status_t status = stream->get_presentation_position(stream, &halPosition, timestamp);
/frameworks/av/services/camera/libcameraservice/api1/
H A DCameraClient.h101 static void dataCallbackTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr, void* user);
112 void handleGenericDataTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr);
/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DCaptureSequencer.h67 nsecs_t timestamp);
73 void onCaptureAvailable(nsecs_t timestamp, sp<MemoryBase> captureBuffer);
/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/core/java/android/hardware/location/
H A DActivityRecognitionHardware.java51 public long timestamp; field in class:ActivityRecognitionHardware.Event
149 new ActivityRecognitionEvent(activityName, event.type, event.timestamp);
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DFrame.java121 public void setTimestamp(long timestamp) { argument
122 mTimestamp = timestamp;
/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/native/services/sensorservice/
H A DSensorFusion.cpp65 const float dT = (event.timestamp - mGyroTime) / 1000000000.0f;
74 mGyroTime = event.timestamp;
/frameworks/av/services/camera/libcameraservice/common/
H A DCamera2ClientBase.h70 nsecs_t timestamp);
/frameworks/base/media/mca/filterfw/jni/
H A Djni_gl_environment.h91 jlong timestamp);

Completed in 586 milliseconds

123456789