Home
last modified time | relevance | path

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

/frameworks/native/services/surfaceflinger/TimeStats/
DTimeStats.cpp110 timeRecord->frameTime.frameNumber); in recordReadyLocked()
119 timeRecord->frameTime.acquireTime = timeRecord->acquireFence->getSignalTime(); in recordReadyLocked()
123 timeRecord->frameTime.frameNumber); in recordReadyLocked()
132 timeRecord->frameTime.presentTime = timeRecord->presentFence->getSignalTime(); in recordReadyLocked()
136 timeRecord->frameTime.frameNumber); in recordReadyLocked()
174 timeRecords[0].frameTime.frameNumber, timeRecords[0].frameTime.presentTime); in flushAvailableRecordsToStatsLocked()
187 const int32_t postToAcquireMs = msBetween(timeRecords[0].frameTime.postTime, in flushAvailableRecordsToStatsLocked()
188 timeRecords[0].frameTime.acquireTime); in flushAvailableRecordsToStatsLocked()
190 timeRecords[0].frameTime.frameNumber, postToAcquireMs); in flushAvailableRecordsToStatsLocked()
193 const int32_t postToPresentMs = msBetween(timeRecords[0].frameTime.postTime, in flushAvailableRecordsToStatsLocked()
[all …]
DTimeStats.h85 FrameTime frameTime; member
/frameworks/base/core/java/android/animation/
DAnimationHandler.java137 private void doAnimationFrame(long frameTime) { in doAnimationFrame() argument
146 callback.doAnimationFrame(frameTime); in doAnimationFrame()
160 private void commitAnimationFrame(AnimationFrameCallback callback, long frameTime) { in commitAnimationFrame() argument
163 callback.commitAnimationFrame(frameTime); in commitAnimationFrame()
282 boolean doAnimationFrame(long frameTime); in doAnimationFrame() argument
299 void commitAnimationFrame(long frameTime); in commitAnimationFrame() argument
DValueAnimator.java1299 public void commitAnimationFrame(long frameTime) { in commitAnimationFrame() argument
1302 long adjustment = frameTime - mLastFrameTime; in commitAnimationFrame()
1431 public final boolean doAnimationFrame(long frameTime) { in doAnimationFrame() argument
1436 ? frameTime in doAnimationFrame()
1437 : frameTime + (long) (mStartDelay * resolveDurationScale()); in doAnimationFrame()
1442 mPauseTime = frameTime; in doAnimationFrame()
1449 mStartTime += (frameTime - mPauseTime); in doAnimationFrame()
1456 if (mStartTime > frameTime && mSeekFraction == -1) { in doAnimationFrame()
1472 mStartTime = frameTime - seekTime; in doAnimationFrame()
1477 mLastFrameTime = frameTime; in doAnimationFrame()
[all …]
DAnimatorSet.java998 public boolean doAnimationFrame(long frameTime) {
1009 mFirstFrame = frameTime;
1017 mPauseTime = frameTime;
1022 mFirstFrame += (frameTime - mPauseTime);
1030 mFirstFrame = (long) (frameTime - mSeekState.getPlayTime() * durationScale);
1032 mFirstFrame = (long) (frameTime - (mSeekState.getPlayTime() + mStartDelay)
1038 if (!mReversing && frameTime < mFirstFrame + mStartDelay * durationScale) {
1045 long unscaledPlayTime = (long) ((frameTime - mFirstFrame) / durationScale);
1046 mLastFrameTime = frameTime;
1096 public void commitAnimationFrame(long frameTime) {
[all …]
DAnimator.java470 boolean pulseAnimationFrame(long frameTime) { in pulseAnimationFrame() argument
/frameworks/av/media/libaaudio/examples/input_monitor/src/
Dinput_monitor.cpp168 int64_t frameTime = 0; in main() local
171 &framePosition, &frameTime); in main()
178 framePosition, frameTime, in main()
185 (long long) frameTime, in main()
/frameworks/av/media/libstagefright/
DCameraSourceTimeLapse.cpp193 int64_t frameTime, in createMediaBufferCopy() argument
204 (*newBuffer)->meta_data().setInt64(kKeyTime, frameTime); in createMediaBufferCopy()
215 int64_t frameTime; in fillLastReadBufferCopy() local
216 CHECK(sourceBuffer.meta_data().findInt64(kKeyTime, &frameTime)); in fillLastReadBufferCopy()
217 createMediaBufferCopy(sourceBuffer, frameTime, &mLastReadBufferCopy, in fillLastReadBufferCopy()
DCameraSource.cpp1076 int64_t frameTime; in read() local
1102 frameTime = *mFrameTimes.begin(); in read()
1108 (*buffer)->meta_data().setInt64(kKeyTime, frameTime); in read()
/frameworks/base/core/jni/
Dandroid_view_InputEventReceiver.cpp60 status_t consumeEvents(JNIEnv* env, bool consumeBatches, nsecs_t frameTime,
219 bool consumeBatches, nsecs_t frameTime, bool* outConsumedBatch) { in consumeEvents() argument
223 consumeBatches ? "true" : "false", frameTime); in consumeEvents()
239 consumeBatches, frameTime, &seq, &inputEvent); in consumeEvents()
/frameworks/base/libs/hwui/
DProfileData.cpp43 static uint32_t frameCountIndexForFrameTime(nsecs_t frameTime) { in frameCountIndexForFrameTime() argument
44 uint32_t index = static_cast<uint32_t>(ns2ms(frameTime)); in frameCountIndexForFrameTime()
/frameworks/native/include/input/
DInputTransport.h341 nsecs_t frameTime, uint32_t* outSeq, InputEvent** outEvent);
496 nsecs_t frameTime, uint32_t* outSeq, InputEvent** outEvent);
501 void resampleTouchState(nsecs_t frameTime, MotionEvent* event,
/frameworks/native/libs/input/
DInputTransport.cpp583 bool consumeBatches, nsecs_t frameTime, uint32_t* outSeq, InputEvent** outEvent) { in consume() argument
586 mChannel->getName().c_str(), consumeBatches ? "true" : "false", frameTime); in consume()
605 result = consumeBatch(factory, frameTime, outSeq, outEvent); in consume()
711 nsecs_t frameTime, uint32_t* outSeq, InputEvent** outEvent) { in consumeBatch() argument
716 if (frameTime < 0) { in consumeBatch()
722 nsecs_t sampleTime = frameTime; in consumeBatch()
/frameworks/base/core/java/android/view/
DViewRootImpl.java3403 long frameTime = nowTime - mFpsPrevTime; in trackFPS() local
3405 Log.v(mTag, "0x" + thisHash + "\tFrame time:\t" + frameTime); in trackFPS()