Home
last modified time | relevance | path

Searched refs:frameTime (Results 1 – 7 of 7) 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.cpp819 int64_t frameTime; in read() local
842 frameTime = *mFrameTimes.begin(); in read()
848 (*buffer)->meta_data()->setInt64(kKeyTime, frameTime); in read()
/frameworks/base/core/java/android/animation/
DValueAnimator.java666 private void doAnimationFrame(long frameTime) { in doAnimationFrame() argument
692 if (anim.delayedAnimationFrame(frameTime)) { in doAnimationFrame()
715 if (mAnimations.contains(anim) && anim.doAnimationFrame(frameTime)) { in doAnimationFrame()
1311 final boolean doAnimationFrame(long frameTime) { in doAnimationFrame() argument
1315 mStartTime = frameTime; in doAnimationFrame()
1318 mStartTime = frameTime - seekTime; in doAnimationFrame()
1324 mPauseTime = frameTime; in doAnimationFrame()
1331 mStartTime += (frameTime - mPauseTime); in doAnimationFrame()
1338 final long currentTime = Math.max(frameTime, mStartTime); in doAnimationFrame()
/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", frameTime); in consumeEvents()
237 consumeBatches, frameTime, &seq, &inputEvent); in consumeEvents()
/frameworks/native/include/input/
DInputTransport.h304 nsecs_t frameTime, uint32_t* outSeq, InputEvent** outEvent);
425 nsecs_t frameTime, uint32_t* outSeq, InputEvent** outEvent);
431 void resampleTouchState(nsecs_t frameTime, MotionEvent* event,
/frameworks/native/libs/input/
DInputTransport.cpp394 bool consumeBatches, nsecs_t frameTime, uint32_t* outSeq, InputEvent** outEvent) { in consume() argument
397 mChannel->getName().string(), consumeBatches ? "true" : "false", frameTime); in consume()
416 result = consumeBatch(factory, frameTime, outSeq, outEvent); in consume()
511 nsecs_t frameTime, uint32_t* outSeq, InputEvent** outEvent) { in consumeBatch() argument
515 if (frameTime < 0) { in consumeBatch()
522 nsecs_t sampleTime = frameTime; in consumeBatch()
/frameworks/base/core/java/android/view/
DViewRootImpl.java2328 long frameTime = nowTime - mFpsPrevTime; in trackFPS() local
2330 Log.v(TAG, "0x" + thisHash + "\tFrame time:\t" + frameTime); in trackFPS()