Home
last modified time | relevance | path

Searched refs:frameTime (Results 1 – 8 of 8) sorted by relevance

/frameworks/av/media/libstagefright/
DCameraSourceTimeLapse.cpp182 int64_t frameTime, in createMediaBufferCopy() argument
192 (*newBuffer)->meta_data()->setInt64(kKeyTime, frameTime); in createMediaBufferCopy()
197 int64_t frameTime; in fillLastReadBufferCopy() local
198 CHECK(sourceBuffer.meta_data()->findInt64(kKeyTime, &frameTime)); in fillLastReadBufferCopy()
199 createMediaBufferCopy(sourceBuffer, frameTime, &mLastReadBufferCopy); in fillLastReadBufferCopy()
DCameraSource.cpp840 int64_t frameTime; in read() local
863 frameTime = *mFrameTimes.begin(); in read()
869 (*buffer)->meta_data()->setInt64(kKeyTime, frameTime); in read()
/frameworks/base/core/java/android/animation/
DValueAnimator.java707 void doAnimationFrame(long frameTime) { in doAnimationFrame() argument
708 mLastFrameTime = frameTime; in doAnimationFrame()
736 if (anim.delayedAnimationFrame(frameTime)) { in doAnimationFrame()
759 if (mAnimations.contains(anim) && anim.doAnimationFrame(frameTime)) { in doAnimationFrame()
781 void commitAnimationFrame(long frameTime) { in commitAnimationFrame() argument
782 final long adjustment = frameTime - mLastFrameTime; in commitAnimationFrame()
1397 final boolean doAnimationFrame(long frameTime) { in doAnimationFrame() argument
1401 mStartTime = frameTime; in doAnimationFrame()
1404 mStartTime = frameTime - seekTime; in doAnimationFrame()
1411 mPauseTime = frameTime; in doAnimationFrame()
[all …]
/frameworks/base/core/jni/
Dandroid_view_InputEventReceiver.cpp59 status_t consumeEvents(JNIEnv* env, bool consumeBatches, nsecs_t frameTime,
218 bool consumeBatches, nsecs_t frameTime, bool* outConsumedBatch) { in consumeEvents() argument
221 getInputChannelName(), consumeBatches ? "true" : "false", (long long)frameTime); in consumeEvents()
237 consumeBatches, frameTime, &seq, &inputEvent); in consumeEvents()
/frameworks/native/include/input/
DInputTransport.h306 nsecs_t frameTime, uint32_t* outSeq, InputEvent** outEvent);
427 nsecs_t frameTime, uint32_t* outSeq, InputEvent** outEvent);
433 void resampleTouchState(nsecs_t frameTime, MotionEvent* event,
/frameworks/base/libs/hwui/
DJankTracker.cpp80 static uint32_t frameCountIndexForFrameTime(nsecs_t frameTime, uint32_t max) { in frameCountIndexForFrameTime() argument
81 uint32_t index = static_cast<uint32_t>(ns2ms(frameTime)); in frameCountIndexForFrameTime()
/frameworks/native/libs/input/
DInputTransport.cpp396 bool consumeBatches, nsecs_t frameTime, uint32_t* outSeq, InputEvent** outEvent) { in consume() argument
399 mChannel->getName().string(), consumeBatches ? "true" : "false", frameTime); in consume()
418 result = consumeBatch(factory, frameTime, outSeq, outEvent); in consume()
513 nsecs_t frameTime, uint32_t* outSeq, InputEvent** outEvent) { in consumeBatch() argument
517 if (frameTime < 0) { in consumeBatch()
524 nsecs_t sampleTime = frameTime; in consumeBatch()
/frameworks/base/core/java/android/view/
DViewRootImpl.java2410 long frameTime = nowTime - mFpsPrevTime; in trackFPS() local
2412 Log.v(TAG, "0x" + thisHash + "\tFrame time:\t" + frameTime); in trackFPS()