Searched refs:timer (Results 1 - 25 of 150) sorted by relevance

123456

/vbox/src/VBox/Devices/PC/ipxe/src/net/
H A Dretry.c22 #include <ipxe/timer.h>
32 * A retry timer is a binary exponential backoff timer. It can be
35 * This implementation of the timer is designed to satisfy RFC 2988
36 * and therefore be usable as a TCP retransmission timer.
51 * Start timer
53 * @v timer Retry timer
55 * This starts the timer running with the current timeout value. If
56 * stop_timer() is not called before the timer expire
87 start_timer_fixed( struct retry_timer *timer, unsigned long timeout ) argument
184 struct retry_timer *timer; local
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/
H A Dretry.h20 /** A retry timer */
44 * @v timer Retry timer
47 * The timer will already be stopped when this method is
51 void ( * expired ) ( struct retry_timer *timer, int over );
61 * Initialise a timer
63 * @v timer Retry timer
68 timer_init ( struct retry_timer *timer, argument
69 void ( * expired ) ( struct retry_timer *timer, in
[all...]
H A Dtimer.h6 * iPXE timer API
8 * The timer API provides udelay() for fixed delays, and currticks()
15 #include <config/timer.h>
18 * Calculate static inline timer API function name
28 * Provide a timer API implementation
38 * Provide a static inline timer API implementation
51 #include <bits/timer.h>
/vbox/src/VBox/Devices/PC/ipxe/src/config/
H A Dtimer.h17 #include <config/local/timer.h>
/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/Library/BaseCryptLib/SysCall/
H A DTimerWrapper.c71 // INTN *timer
73 time_t time (time_t *timer) argument
87 for (Year = 1970, *timer = 0; Year != Time.Year; Year++) {
88 *timer = *timer + (time_t)(CumulativeDays[IsLeap(Year)][13] * SECSPERDAY);
94 *timer = *timer +
102 return *timer;
108 struct tm * gmtime (const time_t *timer) argument
118 if (timer
[all...]
H A DRealTimeClock.c140 // INTN *timer
142 time_t time (time_t *timer) argument
207 for (YearIndex = 1970, *timer = 0; YearIndex != Year; YearIndex++) {
208 *timer = *timer + (time_t)(CumulativeDays[IsLeap(YearIndex)][13] * SECSPERDAY);
215 *timer = *timer +
222 return *timer;
228 struct tm * gmtime (const time_t *timer) argument
238 if (timer
[all...]
/vbox/src/libs/xpcom18a4/xpcom/threads/
H A DTimerThread.cpp77 nsTimerImpl *timer = NS_STATIC_CAST(nsTimerImpl *, mTimers[n]); local
78 NS_RELEASE(timer);
173 nsTimerImpl *timer; local
175 timer = NS_STATIC_CAST(nsTimerImpl*, mTimers[i]);
176 RemoveTimerInternal(timer);
253 nsTimerImpl *timer = nsnull; local
256 timer = NS_STATIC_CAST(nsTimerImpl*, mTimers[0]);
258 if (!TIMER_LESS_THAN(now, timer->mTimeout + mTimeoutAdjustment)) {
266 NS_ADDREF(timer);
267 RemoveTimerInternal(timer);
394 nsTimerImpl *timer = NS_STATIC_CAST(nsTimerImpl *, mTimers[i]); local
438 nsTimerImpl *timer = NS_STATIC_CAST(nsTimerImpl*, mTimers[i]); local
[all...]
H A DnsTimerImpl.cpp103 // from the TimerThread::mTimers array, so we Cancel this timer to remove
104 // the mTimers element, and return 0 if Cancel in fact disarmed the timer.
108 // timer is not found in the mTimers array -- i.e., when the timer was not
110 // being true here. That can happen if the armed timer is being fired by
112 // the timer thread. If the RemoveTimer call below doesn't find this timer
113 // in the mTimers array, then the last ref to this timer is held manually
117 // The original version of this thread-based timer code kept weak refs from
118 // TimerThread::mTimers, removing this timer'
424 nsTimerImpl* timer = NS_STATIC_CAST(nsTimerImpl*, event->owner); local
455 nsTimerImpl *timer = NS_STATIC_CAST(nsTimerImpl*, event->owner); local
586 AddIdleTimer(nsITimer* timer) argument
628 nsTimerImpl* timer = new nsTimerImpl(); local
[all...]
/vbox/src/libs/xpcom18a4/xpcom/tests/StringFactoringTests/
H A Dprofile_main.cpp111 TestTimer timer; local
122 TestTimer timer; local
133 TestTimer timer; local
165 TestTimer timer; local
175 TestTimer timer; local
183 TestTimer timer; local
210 TestTimer timer; local
217 TestTimer timer; local
235 TestTimer timer; local
243 TestTimer timer; local
267 TestTimer timer; local
286 TestTimer timer; local
310 TestTimer timer; local
339 TestTimer timer; local
348 TestTimer timer; local
367 TestTimer timer; local
392 TestTimer timer; local
415 TestTimer timer; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/
H A Dtime.h56 time_t time (time_t *timer);
60 char * ctime (const time_t *timer);
61 struct tm * gmtime (const time_t *timer);
63 struct tm * localtime (const time_t *timer);
206 @param[out] timer An optional pointer to an object in which to
211 if the calendar time is not available. If timer is not a null
215 time_t time(time_t *timer);
231 /** The ctime function converts the calendar time pointed to by timer to a local
232 time in the form of a string. It is equivalent to asctime(localtime(timer))
234 @param[in] timer Pointe
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/core/
H A Drandom.c10 #include <ipxe/timer.h>
/vbox/src/VBox/Devices/PC/ipxe/src/hci/mucurses/
H A Dkb.c11 #define INPUT_DELAY 200 // half-blocking delay timer resolution (ms)
23 int timer, c; local
28 timer = INPUT_DELAY_TIMEOUT;
32 if ( timer > 0 ) { // time-limited blocking read
34 timer -= INPUT_DELAY;
/vbox/src/VBox/Devices/PC/ipxe/src/include/
H A Detherboot.h17 #include <ipxe/timer.h>
H A Dunistd.h27 #include <ipxe/timer.h>
/vbox/src/VBox/Devices/PC/BIOS/
H A Dserial.c48 uint16_t addr, timer, val16; local
73 timer = read_word(0x0040, 0x006C);
76 if (val16 != timer) {
77 timer = val16;
87 timer = read_word(0x0040, 0x006C);
90 if (val16 != timer) {
91 timer = val16;
/vbox/src/libs/xpcom18a4/xpcom/ds/
H A DnsITimelineService.idl67 * stopTimer() calls are needed to actually stop the timer. This
71 * the named timer.
112 // Mark a timer, plus an additional comment
164 nsFunctionTimer(const char *timer, PRBool mark = PR_TRUE, const char *markStr = nsnull)
165 : mTimer(timer), mMark(mark), mMarkStr(markStr)
220 #define NS_TIMELINE_MARK_FUNCTION(timer) nsFunctionTimer functionTimer(timer)
221 #define NS_TIMELINE_MARK_FUNCTION1(timer, str) nsFunctionTimer functionTimer(timer, PR_TRUE, str)
222 #define NS_TIMELINE_TIME_FUNCTION(timer) nsFunctionTime
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/usr/
H A Dprompt.c30 #include <ipxe/timer.h>
/vbox/src/VBox/Runtime/generic/
H A DRTTimerCreate-generic.cpp31 #include <iprt/timer.h>
/vbox/src/VBox/Runtime/r0drv/nt/
H A DRTTimerGetSystemGranularity-r0drv-nt.cpp32 #include <iprt/timer.h>
44 * Get the default/max timer increment value, return it if ExSetTimerResolution
/vbox/src/libs/xpcom18a4/xpcom/base/
H A DnsLeakDetector.cpp68 time_t timer; local
69 time(&timer);
70 tm* now = localtime(&timer);
83 time_t timer; local
84 time(&timer);
85 tm* now = localtime(&timer);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.16.0/
H A Dsecuritysrv.h70 OsTimerPtr timer; /* timer for this auth */ member in struct:__anon6850
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.17.1/
H A Dsecuritysrv.h70 OsTimerPtr timer; /* timer for this auth */ member in struct:__anon7169
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.3.0.0/
H A Dsecuritysrv.h71 OsTimerPtr timer; /* timer for this auth */ member in struct:__anon7476
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.4.2/
H A Dsecuritysrv.h71 OsTimerPtr timer; /* timer for this auth */ member in struct:__anon7849
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.5.3/
H A Dsecuritysrv.h71 OsTimerPtr timer; /* timer for this auth */ member in struct:__anon8203

Completed in 127 milliseconds

123456