Searched refs:period (Results 1 - 25 of 43) sorted by relevance

12

/haiku/headers/os/kernel/
H A Dscheduler.h16 \a period is how many times a second your thread needs to run
18 \a jitter is an estimate (in us) of how much that period can vary,
61 int32 period = 0, bigtime_t jitter = 0, bigtime_t length = 0);
72 int32 suggest_thread_priority(uint32 what, int32 period, bigtime_t jitter,
/haiku/src/system/kernel/
H A Dtimer.cpp177 kprintf("periodic %9lld, ", (long long)event->period);
287 event->schedule_time += event->period;
292 if (now >= event->schedule_time + event->period) {
295 - (now - event->schedule_time) % event->period;
320 add_timer(timer* event, timer_hook hook, bigtime_t period, int32 flags) argument
325 if (event == NULL || hook == NULL || period < 0)
334 period = event->period;
336 scheduleTime = period;
340 event->period
[all...]
H A DUserTimer.cpp386 fTimer.period = 0;
725 fTimer.period = 0;
731 // We use B_TIMER_USE_TIMER_STRUCT_TIMES, so period remains 0, which
1040 fTimer.period = 0;
/haiku/src/kits/tracker/
H A DTaskLoop.h84 bigtime_t initialDelay, bigtime_t period);
99 bigtime_t initialDelay, bigtime_t period, bigtime_t timeout);
167 bigtime_t period);
172 bigtime_t period, bigtime_t timeout);
H A DTaskLoop.cpp164 bigtime_t period)
167 fPeriod(period),
193 bigtime_t period, bigtime_t timeout)
195 PeriodicDelayedTask(functor, initialDelay, period),
245 // PRINT(("runWhenIdle: runAfter %lld, current time %lld, period %lld\n",
355 bigtime_t delay, bigtime_t period)
357 RunLater(new PeriodicDelayedTask(functor, delay, period));
363 bigtime_t period, bigtime_t timeout)
365 RunLater(new PeriodicDelayedTaskWithTimeout(functor, delay, period,
162 PeriodicDelayedTask( FunctionObjectWithResult<bool>* functor, bigtime_t initialDelay, bigtime_t period) argument
191 PeriodicDelayedTaskWithTimeout( FunctionObjectWithResult<bool>* functor, bigtime_t initialDelay, bigtime_t period, bigtime_t timeout) argument
354 RunLater(FunctionObjectWithResult<bool>* functor, bigtime_t delay, bigtime_t period) argument
362 RunLater(FunctionObjectWithResult<bool>* functor, bigtime_t delay, bigtime_t period, bigtime_t timeout) argument
H A DWidgetAttributeText.cpp105 char* period = 0; local
108 period = tmp;
110 if (period && period[1] && period[2] == '0') {
112 for (char* tmp = &period[2]; *tmp; tmp++)
/haiku/src/apps/soundrecorder/
H A DTransportButton.cpp70 const BMessage *message, bigtime_t period);
75 bigtime_t period);
85 bigtime_t period; member in class:PeriodicMessageSender
92 const BMessage *message, bigtime_t period)
95 period(period),
103 bigtime_t period)
106 message, period);
139 snooze(period);
213 BMessage *pressingMessage, BMessage *donePressingMessage, bigtime_t period,
91 PeriodicMessageSender(BMessenger target, const BMessage *message, bigtime_t period) argument
102 Launch(BMessenger target, const BMessage *message, bigtime_t period) argument
208 TransportButton(BRect frame, const char *name, const unsigned char *normalBits, const unsigned char *pressedBits, const unsigned char *disabledBits, BMessage *invokeMessage, BMessage *startPressingMessage, BMessage *pressingMessage, BMessage *donePressingMessage, bigtime_t period, uint32 key, uint32 modifiers, uint32 resizeFlags) argument
[all...]
H A DTransportButton.h34 bigtime_t period = 0, // pressing message period
/haiku/src/add-ons/kernel/busses/scsi/53c8xx/
H A Dsymbios.h109 uint32 period; /* sync period */ member in struct:_SymTarg
153 uint period; /* negotiated period */ member in struct:_Symbios::__anon1393
154 uint period_ns; /* configured period in ns */
H A D53c8xx.c89 st->period,
154 #define symf_short 0x0010 /* short max period (8) */
181 setparams(SymTarg *t, uint period, uint offset, uint wide) argument
192 if(period){
195 if(period <= s->syncinfo[i].period){
196 t->period = s->syncinfo[i].period;
204 kprintf("symbios%ld: target %ld sync period=%ld, offset=%d\n",
205 s->num, t->id, t->period, offse
[all...]
/haiku/src/add-ons/accelerants/intel_extreme/
H A Dmode.cpp584 intel_get_backlight_register(bool period) argument
587 if (period)
598 // a single register with both period and duty in it, or two separate registers.
599 if (period)
614 // The "duty cycle" is a proportion of the period (0 = backlight off,
615 // period = maximum brightness).
622 uint32_t period = read32(intel_get_backlight_register(true)); local
624 uint32_t duty = (uint32_t)(period * brightness);
629 uint32_t period = read32(intel_get_backlight_register(true)) >> 16; local
631 uint32_t duty = (uint32_t)(period * brightnes
645 uint32_t period = tmp >> 16; local
691 uint32_t period; local
[all...]
/haiku/src/system/libroot/os/
H A Dscheduler.c40 suggest_thread_priority(uint32 what, int32 period, bigtime_t jitter, argument
/haiku/headers/os/drivers/
H A DKernelExport.h96 bigtime_t period; member in struct:timer
176 extern status_t add_timer(timer *t, timer_hook hook, bigtime_t period,
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar5312/
H A Dar5312_attach.c56 .period = 100,
/haiku/src/tests/system/kernel/scheduler/
H A Dmain.cpp297 add_timer(timer *event, timer_hook hook, bigtime_t period, int32 flags) argument
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar5416/
H A Dar5416_misc.c423 ar5416SetQuiet(struct ath_hal *ah, uint32_t period, uint32_t duration, argument
426 uint32_t period_us = TU_TO_USEC(period); /* convert to us unit */
/haiku/src/apps/cortex/NodeManager/
H A DNodeRef.h299 // Realistically, period should be > 10000 or so.
302 bigtime_t period);
H A DNodeGroup.cpp1300 bigtime_t period = m_endPosition - m_startPosition;
1301 if(period <= 0LL)
1307 bigtime_t tpStop = period;
H A DNodeRef.cpp577 // Realistically, period should be > 10000 or so.
580 bigtime_t period) {
583 if(period < 1000LL)
585 m_positionUpdatePeriod = period;
579 setPositionUpdatePeriod( bigtime_t period) argument
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar9001/
H A Dar9160_attach.c83 .period = 100,
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/contrib/ath_hal/ar9300/
H A Dar9300_power.c234 u_int32_t period,
258 OS_REG_WRITE(ah, ka_period[id], period);
264 HALDEBUG(ah, HAL_DEBUG_UNMASKABLE, "%s: id=%d, period=%d ms, size=%d bytes\n",
265 __func__, id, period, size);
231 ar9300_wowoffload_download_acer_swka( struct ath_hal *ah, u_int32_t id, HAL_BOOL valid, u_int32_t period, u_int32_t size, u_int32_t* datap) argument
H A Dar9300_stub_funcs.h100 extern HAL_STATUS ar9300_Stub_SetQuiet(struct ath_hal *ah, uint32_t period,
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar9002/
H A Dar9287_attach.c101 .period = 100,
H A Dar9285_attach.c102 .period = 100,
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar5212/
H A Dar5212.h173 int period; /* update listen period */ member in struct:ar5212AniParams
527 extern HAL_STATUS ar5212SetQuiet(struct ath_hal *ah, uint32_t period,

Completed in 379 milliseconds

12