Home
last modified time | relevance | path

Searched refs:timeline_ (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/foundation/multimedia/camera_framework/services/deferred_processing_service/src/base/timer/core/
H A Dtimer_core.cpp81 timeline_.push(timestampMs); in RegisterTimer()
82 if (timestampMs == timeline_.top()) { in RegisterTimer()
89 static_cast<int>(timestampMs), static_cast<int>(timeline_.top())); in RegisterTimer()
138 if (!timeline_.empty()) { in GetNextExpirationTimeUnlocked()
139 expirationTime = SteadyClock::GetRemainingTimeMs(timeline_.top()); in GetNextExpirationTimeUnlocked()
150 if (timeline_.empty()) { in DoTimeout()
154 auto timestamp = timeline_.top(); in DoTimeout()
155 timeline_.pop(); in DoTimeout()
/ohos5.0/foundation/multimedia/camera_framework/services/deferred_processing_service/src/base/timer/
H A Dtime_broker.cpp70 timeline_.push(timestamp); in RegisterCallback()
71 if (timestamp == timeline_.top()) { in RegisterCallback()
125 if (timeline_.empty()) { in TimerExpired()
129 auto timestamp = timeline_.top(); in TimerExpired()
130 timeline_.pop(); in TimerExpired()
151 if (timeline_.empty() || (timer_->IsActive() && force == false)) { in RestartTimer()
155 auto timestamp = timeline_.top(); in RestartTimer()
/ohos5.0/foundation/multimedia/camera_framework/services/deferred_processing_service/include/base/timer/core/
H A Dtimer_core.h54 std::priority_queue<uint64_t, std::vector<uint64_t>, std::greater<uint64_t>> timeline_; variable
/ohos5.0/foundation/multimedia/camera_framework/services/deferred_processing_service/include/base/timer/
H A Dtime_broker.h59 std::priority_queue<uint64_t, std::vector<uint64_t>, std::greater<uint64_t>> timeline_; variable