Home
last modified time | relevance | path

Searched refs:TimePoint (Results 1 – 11 of 11) sorted by relevance

/frameworks/native/services/surfaceflinger/Scheduler/
DVsyncModulator.h88 using TimePoint = Clock::time_point; variable
89 using Now = TimePoint (*)();
139 std::atomic<TimePoint> mEarlyTransactionStartTime = TimePoint();
140 std::atomic<TimePoint> mLastTransactionCommitTime = TimePoint();
/frameworks/av/media/codec2/sfplugin/include/media/stagefright/
DCCodec.h102 typedef std::chrono::steady_clock::time_point TimePoint; typedef
131 const TimePoint &now,
180 NamedTimePoint() : mTimePoint(TimePoint::max()), mName("") {} in NamedTimePoint()
183 const TimePoint &timePoint, in set()
189 inline TimePoint get() const { return mTimePoint; } in get()
192 TimePoint mTimePoint;
/frameworks/base/services/incremental/
DIncrementalService.h284 Milliseconds elapsedMsSinceKernelTs(TimePoint now, BootClockTsUs kernelTsUs);
307 TimePoint mCurrentStatusTs = {};
309 TimePoint mTargetStatusTs = {};
311 TimePoint mPreviousBindTs = {};
317 TimePoint userTs;
319 } mHealthBase = {TimePoint::max(), kMaxBootClockTsUs};
351 TimePoint startLoadingTs = {};
DServiceWrappers.cpp314 static constexpr TimePoint kInfinityTs{Clock::duration::max()}; in runTimers()
317 const TimePoint nextJobTs = mJobs.empty() ? kInfinityTs : mJobs.begin()->when; in runTimers()
342 TimePoint when;
377 TimePoint now() const final { return Clock::now(); } in now()
DServiceWrappers.h41 using TimePoint = std::chrono::time_point<Clock>; variable
179 virtual TimePoint now() const = 0;
DIncrementalService.cpp825 ifs->startLoadingTs = TimePoint::max(); in startLoading()
3003 Milliseconds IncrementalService::DataLoaderStub::elapsedMsSinceKernelTs(TimePoint now, in elapsedMsSinceKernelTs()
/frameworks/native/services/surfaceflinger/fuzzer/
Dsurfaceflinger_scheduler_fuzzer.h195 static VsyncModulator::TimePoint Now() { in Now()
196 static VsyncModulator::TimePoint now; in Now()
/frameworks/native/services/surfaceflinger/tests/unittests/
DVsyncModulatorTest.cpp49 static VsyncModulator::TimePoint Now() { in Now()
50 static VsyncModulator::TimePoint now; in Now()
/frameworks/native/services/surfaceflinger/tests/fakehwc/
DFakeComposerClient.cpp50 using TimePoint = std::chrono::time_point<Clock>; typedef
124 TimePoint target = *(mWakeups.begin()); in loop()
146 std::set<TimePoint> mWakeups;
/frameworks/av/media/codec2/sfplugin/
DCCodec.cpp2310 TimePoint now = std::chrono::steady_clock::now(); in onMessageReceived()
2492 setDeadline(TimePoint::max(), 0ms, "none"); in onMessageReceived()
2496 const TimePoint &now, in setDeadline()
2561 if (deadline->get() != TimePoint::max()) { in initiateReleaseIfStuck()
/frameworks/base/services/incremental/test/
DIncrementalServiceTest.cpp626 MOCK_CONST_METHOD0(now, TimePoint());
637 TimePoint getClock() const { return mClock; } in getClock()
647 TimePoint mClock = Clock::now();