Searched refs:frameTime (Results 1 - 9 of 9) sorted by relevance

/frameworks/base/core/java/android/animation/
H A DAnimationHandler.java137 private void doAnimationFrame(long frameTime) { argument
146 callback.doAnimationFrame(frameTime);
160 private void commitAnimationFrame(AnimationFrameCallback callback, long frameTime) { argument
163 callback.commitAnimationFrame(frameTime);
278 * @param frameTime The frame start time, in the {@link SystemClock#uptimeMillis()} time
281 void doAnimationFrame(long frameTime); argument
291 * to respect the new frameTime. By having the commit time, we can adjust the start time to
295 * @param frameTime The frame time after traversals happen, if any, in the
298 void commitAnimationFrame(long frameTime); argument
H A DValueAnimator.java1207 public void commitAnimationFrame(long frameTime) { argument
1210 long adjustment = frameTime - mLastFrameTime;
1266 * @param frameTime The frame time.
1270 public final void doAnimationFrame(long frameTime) { argument
1279 mStartTime = frameTime;
1282 mStartTime = frameTime - seekTime;
1287 mLastFrameTime = frameTime;
1289 mPauseTime = frameTime;
1296 mStartTime += (frameTime - mPauseTime);
1305 final long currentTime = Math.max(frameTime, mStartTim
[all...]
/frameworks/av/media/libstagefright/
H A DCameraSourceTimeLapse.cpp184 int64_t frameTime,
194 (*newBuffer)->meta_data()->setInt64(kKeyTime, frameTime);
199 int64_t frameTime; local
200 CHECK(sourceBuffer.meta_data()->findInt64(kKeyTime, &frameTime));
201 createMediaBufferCopy(sourceBuffer, frameTime, &mLastReadBufferCopy);
182 createMediaBufferCopy( const MediaBuffer& sourceBuffer, int64_t frameTime, MediaBuffer **newBuffer) argument
H A DCameraSource.cpp1018 int64_t frameTime; local
1041 frameTime = *mFrameTimes.begin();
1047 (*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/native/include/input/
H A DInputTransport.h294 * The frameTime parameter specifies the time when the current display frame started
306 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/
H A DJankTracker.cpp87 static uint32_t frameCountIndexForFrameTime(nsecs_t frameTime) { argument
88 uint32_t index = static_cast<uint32_t>(ns2ms(frameTime));
/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) {
522 if (frameTime < 0) {
529 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
/frameworks/base/core/java/android/view/
H A DViewRootImpl.java2580 long frameTime = nowTime - mFpsPrevTime;
2582 Log.v(mTag, "0x" + thisHash + "\tFrame time:\t" + frameTime);

Completed in 2407 milliseconds