/frameworks/native/services/surfaceflinger/TimeStats/ |
D | TimeStats.cpp | 355 timeRecord->frameTime.frameNumber); in recordReadyLocked() 364 timeRecord->frameTime.acquireTime = timeRecord->acquireFence->getSignalTime(); in recordReadyLocked() 368 timeRecord->frameTime.frameNumber); in recordReadyLocked() 377 timeRecord->frameTime.presentTime = timeRecord->presentFence->getSignalTime(); in recordReadyLocked() 381 timeRecord->frameTime.frameNumber); in recordReadyLocked() 397 timeRecords[0].frameTime.frameNumber, timeRecords[0].frameTime.presentTime); in flushAvailableRecordsToStatsLocked() 414 const int32_t postToAcquireMs = msBetween(timeRecords[0].frameTime.postTime, in flushAvailableRecordsToStatsLocked() 415 timeRecords[0].frameTime.acquireTime); in flushAvailableRecordsToStatsLocked() 417 timeRecords[0].frameTime.frameNumber, postToAcquireMs); in flushAvailableRecordsToStatsLocked() 420 const int32_t postToPresentMs = msBetween(timeRecords[0].frameTime.postTime, in flushAvailableRecordsToStatsLocked() [all …]
|
D | TimeStats.h | 139 FrameTime frameTime; member
|
/frameworks/base/core/java/android/animation/ |
D | AnimationHandler.java | 137 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
|
D | ValueAnimator.java | 1305 public void commitAnimationFrame(long frameTime) { in commitAnimationFrame() argument 1308 long adjustment = frameTime - mLastFrameTime; in commitAnimationFrame() 1437 public final boolean doAnimationFrame(long frameTime) { in doAnimationFrame() argument 1442 ? frameTime in doAnimationFrame() 1443 : frameTime + (long) (mStartDelay * resolveDurationScale()); in doAnimationFrame() 1448 mPauseTime = frameTime; in doAnimationFrame() 1455 mStartTime += (frameTime - mPauseTime); in doAnimationFrame() 1462 if (mStartTime > frameTime && mSeekFraction == -1) { in doAnimationFrame() 1478 mStartTime = frameTime - seekTime; in doAnimationFrame() 1483 mLastFrameTime = frameTime; in doAnimationFrame() [all …]
|
D | AnimatorSet.java | 998 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 …]
|
D | Animator.java | 470 boolean pulseAnimationFrame(long frameTime) { in pulseAnimationFrame() argument
|
/frameworks/av/media/libaaudio/examples/input_monitor/src/ |
D | input_monitor.cpp | 168 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/ |
D | CameraSourceTimeLapse.cpp | 193 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()
|
D | CameraSource.cpp | 1080 int64_t frameTime; in read() local 1106 frameTime = *mFrameTimes.begin(); in read() 1116 (*buffer)->meta_data().setInt64(kKeyTime, frameTime); in read()
|
/frameworks/native/services/surfaceflinger/Scheduler/ |
D | LayerInfoV2.cpp | 55 FrameTimeData frameTime = {.presetTime = lastPresentTime, in setLastPresentTime() local 58 mFrameTimes.push_back(frameTime); in setLastPresentTime() 66 bool LayerInfoV2::isFrameTimeValid(const FrameTimeData& frameTime) const { in isFrameTimeValid() 67 return frameTime.queueTime >= std::chrono::duration_cast<std::chrono::nanoseconds>( in isFrameTimeValid()
|
/frameworks/base/core/jni/ |
D | android_view_InputEventReceiver.cpp | 65 status_t consumeEvents(JNIEnv* env, bool consumeBatches, nsecs_t frameTime, 224 bool consumeBatches, nsecs_t frameTime, bool* outConsumedBatch) { in consumeEvents() argument 227 getInputChannelName().c_str(), toString(consumeBatches), frameTime); in consumeEvents() 244 consumeBatches, frameTime, &seq, &inputEvent); in consumeEvents()
|
/frameworks/base/libs/hwui/ |
D | ProfileData.cpp | 44 static uint32_t frameCountIndexForFrameTime(nsecs_t frameTime) { in frameCountIndexForFrameTime() argument 45 uint32_t index = static_cast<uint32_t>(ns2ms(frameTime)); in frameCountIndexForFrameTime()
|
/frameworks/native/include/input/ |
D | InputTransport.h | 369 status_t consume(InputEventFactoryInterface* factory, bool consumeBatches, nsecs_t frameTime, 532 nsecs_t frameTime, uint32_t* outSeq, InputEvent** outEvent); 537 void resampleTouchState(nsecs_t frameTime, MotionEvent* event,
|
/frameworks/native/libs/input/ |
D | InputTransport.cpp | 612 nsecs_t frameTime, uint32_t* outSeq, InputEvent** outEvent) { in consume() argument 615 mChannel->getName().c_str(), toString(consumeBatches), frameTime); in consume() 634 result = consumeBatch(factory, frameTime, outSeq, outEvent); in consume() 751 nsecs_t frameTime, uint32_t* outSeq, InputEvent** outEvent) { in consumeBatch() argument 756 if (frameTime < 0) { in consumeBatch() 762 nsecs_t sampleTime = frameTime; in consumeBatch()
|
/frameworks/base/core/java/android/view/ |
D | ViewRootImpl.java | 3721 long frameTime = nowTime - mFpsPrevTime; in trackFPS() local 3723 Log.v(mTag, "0x" + thisHash + "\tFrame time:\t" + frameTime); in trackFPS()
|