Home
last modified time | relevance | path

Searched refs:TimedEvent (Results 1 – 6 of 6) sorted by relevance

/hardware/google/graphics/common/libhwc2.1/libvrr/interface/
DEvent.h57 struct TimedEvent { struct
58 explicit TimedEvent(const std::string& name) : mEventName(std::move(name)) {} in TimedEvent() function
60 TimedEvent(const std::string& name, int64_t whenNs) : mEventName(name), mWhenNs(whenNs) {} in TimedEvent() argument
62 TimedEvent(std::string& name, int64_t whenNs) : mEventName(name), mWhenNs(whenNs) {} in TimedEvent() argument
64 bool operator<(const TimedEvent& b) const { return mWhenNs > b.mWhenNs; }
123 virtual std::vector<TimedEvent> getHandleEvents() = 0;
/hardware/google/graphics/common/libhwc2.1/libvrr/
DUtils.h38 struct TimedEvent;
107 void setTimedEventWithAbsoluteTime(TimedEvent& event);
DUtils.cpp63 void setTimedEventWithAbsoluteTime(TimedEvent& event) { in setTimedEventWithAbsoluteTime()
DEventQueue.h29 void postEvent(VrrControllerEventType type, TimedEvent& timedEvent) { in postEvent()
DVariableRefreshRateController.h295 void postEvent(VrrControllerEventType type, TimedEvent& timedEvent);
359 std::optional<TimedEvent> mMinimumRefreshRateTimeoutEvent;
DVariableRefreshRateController.cpp542 std::make_optional<TimedEvent>("MinimumRefreshRateTimeout"); in setFixedRefreshRateRange()
1060 TimedEvent timedEvent("VendorPresentTimeoutOverride"); in threadBody()
1140 void VariableRefreshRateController::postEvent(VrrControllerEventType type, TimedEvent& timedEvent) { in postEvent()