Home
last modified time | relevance | path

Searched refs:TimerState (Results 1 – 25 of 98) sorted by relevance

1234

/dports/science/gromacs/gromacs-2021.4/src/gromacs/gpu_utils/
H A Dgpuregiontimer.h69 enum class TimerState enum
74 } debugState_ = TimerState::Idle;
96 GMX_ASSERT(debugState_ == TimerState::Idle, error.c_str()); in openTimingRegion()
97 debugState_ = TimerState::Recording; in openTimingRegion()
111 … + std::string((debugState_ == TimerState::Idle) ? "idle" : "stopped") in closeTimingRegion()
113 GMX_ASSERT(debugState_ == TimerState::Recording, error.c_str()); in closeTimingRegion()
114 debugState_ = TimerState::Stopped; in closeTimingRegion()
141 debugState_ = TimerState::Idle; in getLastRangeTime()
152 debugState_ = TimerState::Idle; in reset()
172 … + std::string((debugState_ == TimerState::Idle) ? "idle" : "stopped") in fetchNextEvent()
[all …]
/dports/x11/rsibreak/rsibreak-0.12.14/test/
H A Drsitimer_test.cpp56 QCOMPARE( timer.m_state, RSITimer::TimerState::Suggesting ); in triggerSimpleTinyBreak()
83 QCOMPARE( timer.m_state, RSITimer::TimerState::Monitoring ); in triggerSimpleTinyBreak()
135 QCOMPARE( timer.m_state, RSITimer::TimerState::Suggesting ); in triggerComplexTinyBreak()
146 QCOMPARE( timer.m_state, RSITimer::TimerState::Suspended ); in testSuspended()
161 QCOMPARE( timer.m_state, RSITimer::TimerState::Monitoring ); in testSuspended()
198 QCOMPARE( timer.m_state, RSITimer::TimerState::Monitoring ); in triggerSimpleBigBreak()
214 QCOMPARE( timer.m_state, RSITimer::TimerState::Suggesting ); in postponeBreak()
220 QCOMPARE( timer.m_state, RSITimer::TimerState::Monitoring ); in postponeBreak()
230 QCOMPARE( timer.m_state, RSITimer::TimerState::Suggesting ); in postponeBreak()
244 QCOMPARE( timer.m_state, RSITimer::TimerState::Suggesting ); in screenLock()
[all …]
/dports/deskutils/gnome-pomodoro/gnome-pomodoro-0.20.0/src/
H A Dtimer-state.vala41 public abstract class TimerState : GLib.Object
53 public abstract TimerState create_next_state (double score,
65 public static TimerState? lookup (string name)
67 TimerState state;
101 public class DisabledState : TimerState
113 public override TimerState create_next_state (double score,
128 public class PomodoroState : TimerState
144 public override TimerState create_next_state (double score,
175 public abstract class BreakState : TimerState
177 public override TimerState create_next_state (double score,
[all …]
H A Dtimer.vala38 public TimerState state {
113 private Pomodoro.TimerState _state;
207 private void set_state_full (Pomodoro.TimerState state,
294 var original_state = this._state as Pomodoro.TimerState;
334 public virtual signal void state_enter (TimerState state)
339 public virtual signal void state_leave (TimerState state)
346 public virtual signal void state_changed (TimerState state,
347 TimerState previous_state)
406 var state = Pomodoro.TimerState.lookup (settings.get_string ("timer-state"));
/dports/x11/rsibreak/rsibreak-0.12.14/src/
H A Drsitimer.cpp39 , m_state ( TimerState::Monitoring ) in RSITimer()
50 , m_state( TimerState::Monitoring ) in RSITimer()
107 m_state = TimerState::Resting; in doBreakNow()
122 m_state = TimerState::Monitoring; in resetAfterBreak()
141 m_state = TimerState::Monitoring; in slotStart()
146 m_state = TimerState::Suspended; in slotStop()
210 if ( m_state == TimerState::Suspended ) { in timeout()
225 case TimerState::Monitoring: { in timeout()
250 case TimerState::Suggesting: { in timeout()
273 case TimerState::Resting: { in timeout()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.Requests/src/System/Net/
H A DTimerThread.cs290 private TimerState _timerState;
300 private enum TimerState enum in System.Net.TimerThread.TimerNode
315 _timerState = TimerState.Ready; in TimerNode()
323 _timerState = TimerState.Sentinel; in TimerNode()
345 if (_timerState == TimerState.Ready) in Cancel()
349 if (_timerState == TimerState.Ready) in Cancel()
363 _timerState = TimerState.Cancelled; in Cancel()
381 if (_timerState == TimerState.Sentinel) in Fire()
386 if (_timerState != TimerState.Ready) in Fire()
403 if (_timerState == TimerState.Ready) in Fire()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/net/System/Net/
H A D_TimerThread.cs415 private TimerState m_TimerState;
425 private enum TimerState { enum in System.Net.TimerThread.TimerNode
439 m_TimerState = TimerState.Ready; in TimerNode()
447 m_TimerState = TimerState.Sentinel; in TimerNode()
463 return m_TimerState == TimerState.Fired;
497 if (m_TimerState == TimerState.Ready) in Cancel()
501 if (m_TimerState == TimerState.Ready) in Cancel()
515 m_TimerState = TimerState.Cancelled; in Cancel()
534 if (m_TimerState != TimerState.Ready) in Fire()
550 if (m_TimerState == TimerState.Ready) in Fire()
[all …]
/dports/games/0ad/0ad-0.0.23b-alpha/source/lib/sysdep/os/win/whrt/
H A Dwhrt.cpp165 struct TimerState struct
185 static __declspec(align(64)) TimerState timerStates[2];
187 static volatile TimerState* volatile ts = &timerStates[0];
188 static volatile TimerState* volatile ts2 = &timerStates[1];
205 ts = (volatile TimerState*)InterlockedExchangePointer((volatile PVOID*)&ts2, (PVOID)ts); in UpdateTimerState()
211 const volatile TimerState* state = ts; in whrt_Time()
/dports/devel/grpc134/grpc-1.34.1/src/core/ext/filters/deadline/
H A Ddeadline_filter.cc39 class TimerState { class
41 TimerState(grpc_call_element* elem, grpc_millis deadline) : elem_(elem) { in TimerState() function in grpc_core::TimerState
55 TimerState* self = static_cast<TimerState*>(arg); in YieldCallCombiner()
66 TimerState* self = static_cast<TimerState*>(arg); in SendCancelOpInCallCombiner()
76 TimerState* self = static_cast<TimerState*>(arg); in TimerCallback()
124 deadline_state->arena->New<grpc_core::TimerState>(elem, deadline); in start_timer_if_needed()
H A Ddeadline_filter.h26 class TimerState; variable
40 grpc_core::TimerState* timer_state = nullptr;
/dports/devel/grpc/grpc-1.42.0/src/core/ext/filters/deadline/
H A Ddeadline_filter.cc39 class TimerState { class
41 TimerState(grpc_call_element* elem, grpc_millis deadline) : elem_(elem) { in TimerState() function in grpc_core::TimerState
55 TimerState* self = static_cast<TimerState*>(arg); in YieldCallCombiner()
66 TimerState* self = static_cast<TimerState*>(arg); in SendCancelOpInCallCombiner()
76 TimerState* self = static_cast<TimerState*>(arg); in TimerCallback()
122 deadline_state->arena->New<grpc_core::TimerState>(elem, deadline); in start_timer_if_needed()
H A Ddeadline_filter.h26 class TimerState; variable
40 grpc_core::TimerState* timer_state = nullptr;
/dports/devel/pecl-grpc/grpc-1.42.0/src/core/ext/filters/deadline/
H A Ddeadline_filter.cc39 class TimerState { class
41 TimerState(grpc_call_element* elem, grpc_millis deadline) : elem_(elem) { in TimerState() function in grpc_core::TimerState
55 TimerState* self = static_cast<TimerState*>(arg); in YieldCallCombiner()
66 TimerState* self = static_cast<TimerState*>(arg); in SendCancelOpInCallCombiner()
76 TimerState* self = static_cast<TimerState*>(arg); in TimerCallback()
122 deadline_state->arena->New<grpc_core::TimerState>(elem, deadline); in start_timer_if_needed()
H A Ddeadline_filter.h26 class TimerState; variable
40 grpc_core::TimerState* timer_state = nullptr;
/dports/devel/py-grpcio/grpcio-1.43.0/src/core/ext/filters/deadline/
H A Ddeadline_filter.cc39 class TimerState { class
41 TimerState(grpc_call_element* elem, grpc_millis deadline) : elem_(elem) { in TimerState() function in grpc_core::TimerState
55 TimerState* self = static_cast<TimerState*>(arg); in YieldCallCombiner()
66 TimerState* self = static_cast<TimerState*>(arg); in SendCancelOpInCallCombiner()
76 TimerState* self = static_cast<TimerState*>(arg); in TimerCallback()
122 deadline_state->arena->New<grpc_core::TimerState>(elem, deadline); in start_timer_if_needed()
H A Ddeadline_filter.h26 class TimerState; variable
40 grpc_core::TimerState* timer_state = nullptr;
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/rxjs/src/internal/observable/
H A Dtimer.ts83 interface TimerState { interface
89 function dispatch(this: SchedulerAction<TimerState>, state: TimerState) {
/dports/misc/netron/node_modules/rxjs/src/internal/observable/
H A Dtimer.ts83 interface TimerState { interface
89 function dispatch(this: SchedulerAction<TimerState>, state: TimerState) {
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/devtools-frontend/src/node_modules/rxjs/src/internal/observable/
H A Dtimer.ts83 interface TimerState { interface
89 function dispatch(this: SchedulerAction<TimerState>, state: TimerState) {
/dports/textproc/write-good/write-good-1.0.8/node_modules/rxjs/src/internal/observable/
H A Dtimer.ts83 interface TimerState { interface
89 function dispatch(this: SchedulerAction<TimerState>, state: TimerState) {
/dports/graphics/GraphicsMagick/GraphicsMagick-1.3.36/magick/
H A Dtimer.h26 } TimerState; typedef
45 TimerState
/dports/graphics/ImageMagick7/ImageMagick-7.1.0-19/MagickCore/
H A Dtimer.h30 } TimerState; typedef
46 TimerState
/dports/graphics/ImageMagick7-nox11/ImageMagick-7.1.0-19/MagickCore/
H A Dtimer.h30 } TimerState; typedef
46 TimerState
/dports/graphics/ImageMagick6-nox11/ImageMagick-6.9.12-34/magick/
H A Dtimer.h30 } TimerState; typedef
46 TimerState
/dports/graphics/ImageMagick6/ImageMagick-6.9.12-34/magick/
H A Dtimer.h30 } TimerState; typedef
46 TimerState

1234