Searched defs:frameTime (Results 1 - 6 of 6) sorted by relevance

/frameworks/av/media/libstagefright/
H A DCameraSourceTimeLapse.cpp182 int64_t frameTime,
192 (*newBuffer)->meta_data()->setInt64(kKeyTime, frameTime);
197 int64_t frameTime; local
198 CHECK(sourceBuffer.meta_data()->findInt64(kKeyTime, &frameTime));
199 createMediaBufferCopy(sourceBuffer, frameTime, &mLastReadBufferCopy);
180 createMediaBufferCopy( const MediaBuffer& sourceBuffer, int64_t frameTime, MediaBuffer **newBuffer) argument
H A DCameraSource.cpp840 int64_t frameTime; local
863 frameTime = *mFrameTimes.begin();
869 (*buffer)->meta_data()->setInt64(kKeyTime, frameTime);
/frameworks/base/core/jni/
H A Dandroid_view_InputEventReceiver.cpp59 status_t consumeEvents(JNIEnv* env, bool consumeBatches, nsecs_t frameTime,
218 bool consumeBatches, nsecs_t frameTime, bool* outConsumedBatch) {
220 ALOGD("channel '%s' ~ Consuming input events, consumeBatches=%s, frameTime=%lld.",
221 getInputChannelName(), consumeBatches ? "true" : "false", (long long)frameTime);
237 consumeBatches, frameTime, &seq, &inputEvent);
217 consumeEvents(JNIEnv* env, bool consumeBatches, nsecs_t frameTime, bool* outConsumedBatch) argument
/frameworks/base/libs/hwui/
H A DJankTracker.cpp80 static uint32_t frameCountIndexForFrameTime(nsecs_t frameTime, uint32_t max) { argument
81 uint32_t index = static_cast<uint32_t>(ns2ms(frameTime));
/frameworks/base/core/java/android/animation/
H A DValueAnimator.java707 void doAnimationFrame(long frameTime) { argument
708 mLastFrameTime = frameTime;
736 if (anim.delayedAnimationFrame(frameTime)) {
759 if (mAnimations.contains(anim) && anim.doAnimationFrame(frameTime)) {
781 void commitAnimationFrame(long frameTime) { argument
782 final long adjustment = frameTime - mLastFrameTime;
1394 * @param frameTime The frame time.
1397 final boolean doAnimationFrame(long frameTime) { argument
1401 mStartTime = frameTime;
1404 mStartTime = frameTime
[all...]
/frameworks/native/libs/input/
H A DInputTransport.cpp400 bool consumeBatches, nsecs_t frameTime, uint32_t* outSeq, InputEvent** outEvent) {
402 ALOGD("channel '%s' consumer ~ consume: consumeBatches=%s, frameTime=%lld",
403 mChannel->getName().string(), consumeBatches ? "true" : "false", frameTime);
422 result = consumeBatch(factory, frameTime, outSeq, outEvent);
517 nsecs_t frameTime, uint32_t* outSeq, InputEvent** outEvent) {
521 if (frameTime < 0) {
528 nsecs_t sampleTime = frameTime;
399 consume(InputEventFactoryInterface* factory, bool consumeBatches, nsecs_t frameTime, uint32_t* outSeq, InputEvent** outEvent) argument
516 consumeBatch(InputEventFactoryInterface* factory, nsecs_t frameTime, uint32_t* outSeq, InputEvent** outEvent) argument

Completed in 138 milliseconds