Searched refs:timeout (Results 201 - 225 of 412) sorted by relevance

1234567891011>>

/haiku/src/add-ons/kernel/drivers/input/i2c_elan/
H A DELANDevice.cpp192 if (user_memcpy(&read.timeout, &(((touchpad_read*)buffer)->timeout),
200 &read.u.touchpad, read.timeout,
230 ELANDevice::_WaitForReport(bigtime_t timeout) argument
248 result = conditionVariableEntry.Wait(B_RELATIVE_TIMEOUT, timeout);
261 ELANDevice::_ReadAndParseReport(touchpad_movement *info, bigtime_t timeout, int &zero_report_count) argument
264 status_t result = _WaitForReport(timeout);
/haiku/headers/os/kernel/
H A DOS.h30 B_TIMEOUT = 0x8, /* relative timeout */
31 B_RELATIVE_TIMEOUT = 0x8, /* fails after a relative timeout
33 B_ABSOLUTE_TIMEOUT = 0x10, /* fails after an absolute timeout
135 size_t bufferSize, uint32 flags, bigtime_t timeout);
139 size_t bufferSize, uint32 flags, bigtime_t timeout);
145 bigtime_t timeout);
174 bigtime_t timeout);
176 #define get_port_message_info_etc(port, info, flags, timeout) \
177 _get_port_message_info_etc((port), (info), sizeof(*(info)), flags, timeout)
213 bigtime_t timeout);
[all...]
/haiku/src/add-ons/kernel/drivers/dvb/cx23882/
H A Di2c_core.c47 bigtime_t timeout; member in struct:_i2c_bus
59 bigtime_t timeout,
79 bus->timeout = timeout;
129 bigtime_t end = system_time() + bus->timeout;
211 TRACE("i2c_writebyte timeout at bit %d\n", i);
224 TRACE("i2c_writebyte timeout at ack\n");
246 TRACE("i2c_readbyte timeout at bit %d\n", i);
274 if (i2c_readbyte(bus, bytes) != B_OK) { // timeout
275 TRACE("i2c_read: timeout erro
57 i2c_create_bus(void *cookie, int frequency, bigtime_t timeout, i2c_set_scl set_scl, i2c_set_sda set_sda, i2c_get_scl get_scl, i2c_get_sda get_sda) argument
[all...]
/haiku/src/add-ons/kernel/drivers/network/wlan/idualwifi7260/dev/pci/
H A Dif_iwmvar.h400 struct timeout reorder_timer;
430 * @timeout: the timeout set in the addba request
432 * @last_rx: last rx timestamp, updated only if timeout passed from last update
433 * @session_timer: timer to check if BA session expired, runs at 2 * timeout
442 uint16_t timeout; member in struct:iwm_rxba_data
445 struct timeout session_timer;
485 struct timeout sc_calib_to;
486 struct timeout sc_led_blink_to;
/haiku/src/add-ons/kernel/network/protocols/tcp/
H A DTCPEndpoint.cpp234 TimerSet(TCPEndpoint* endpoint, const char* which, bigtime_t timeout) argument
238 fTimeout(timeout),
332 absolute_timeout(bigtime_t timeout) argument
334 if (timeout == 0 || timeout == B_INFINITE_TIMEOUT)
335 return timeout;
337 return timeout + system_time();
548 // handle linger with zero timeout
616 bigtime_t timeout = gStackModule->restore_syscall_restart_timeout(); local
617 status_t status = _WaitForEstablished(locker, timeout);
666 bigtime_t timeout = min_c(socket->send.timeout, TCP_CONNECTION_TIMEOUT); local
692 bigtime_t timeout = absolute_timeout(socket->receive.timeout); local
829 bigtime_t timeout = 0; local
951 bigtime_t timeout = 0; local
1242 _WaitForEstablished(MutexLocker &locker, bigtime_t timeout) argument
[all...]
/haiku/src/libs/glut/
H A DglutEvent.cpp34 bigtime_t timeout; // time to be called member in struct:GLUTtimer
71 timer->timeout = system_time() + (interval*1000); // 1000 ticks in a millisecond
74 while (other && (other->timeout < timer->timeout)) {
96 while (__glutTimerList->timeout <= now) {
298 * DESCRIPTION: use gBlock to wait for a new event or timeout
303 bigtime_t timeout = __glutTimerList->timeout; local
309 if(timeout>now)
310 gBlock.WaitEvent(timeout
[all...]
/haiku/src/add-ons/kernel/drivers/network/ether/intel22x/dev/igc/
H A Digc_mac.c926 s32 timeout = hw->nvm.word_size + 1; local
932 while (i < timeout) {
941 if (i == timeout) {
947 for (i = 0; i < timeout; i++) {
958 if (i == timeout) {
1028 s32 timeout = MASTER_DISABLE_TIMEOUT; local
1036 while (timeout) {
1041 timeout--;
1044 if (!timeout) {
H A Digc_i225.c278 s32 i = 0, timeout = 200; /* FIXME: find real value to use here */ local
282 while (i < timeout) {
300 if (i == timeout) {
301 DEBUGOUT("Driver can't access resource, SW_FW_SYNC timeout.\n");
376 s32 timeout = hw->nvm.word_size + 1; local
382 while (i < timeout) {
391 if (i == timeout) {
398 for (i = 0; i < timeout; i++) {
408 if (i == timeout) {
416 for (i = 0; i < timeout;
725 s32 timeout = IGC_NVM_GRANT_ATTEMPTS; local
[all...]
/haiku/src/servers/net/
H A DDHCPClient.cpp160 timeout(time_t(AS_USECS(DEFAULT_TIMEOUT))),
166 bigtime_t timeout; // in micro secs member in struct:socket_timeout
442 value.tv_sec = timeout / 1000000;
443 value.tv_usec = timeout % 1000000;
461 timeout = std::max(remaining, bigtime_t(AS_USECS(60)));
463 timeout += timeout;
465 if (timeout > AS_USECS(MAX_TIMEOUT))
466 timeout = AS_USECS(MAX_TIMEOUT);
469 device, timeout / 100
953 _TimeoutShift(int socket, dhcp_state& state, socket_timeout& timeout) argument
[all...]
/haiku/src/libs/compat/openbsd_wlan/net80211/
H A Dieee80211_node.h205 struct timeout ba_to;
235 struct timeout ba_to;
243 struct timeout ba_gap_to;
274 u_int ni_scangen; /* gen# for timeout scan */
311 struct timeout ni_eapol_to;
340 struct timeout ni_sa_query_to;
374 struct timeout ni_addba_req_to[IEEE80211_NUM_TID];
/haiku/src/system/kernel/
H A Dthread.cpp1394 common_snooze_etc(bigtime_t timeout, clockid_t clockID, uint32 flags,
1399 panic("common_snooze_etc(): called with interrupts disabled, timeout "
1400 "%" B_PRIdBIGTIME, timeout);
1422 status_t status = thread_block_with_timeout(flags, timeout);
1431 startTime + timeout - system_time(), (bigtime_t)0);
1435 *_remainingTime = std::max(timeout - now, (bigtime_t)0);
2504 wait_for_thread_etc(thread_id id, uint32 flags, bigtime_t timeout,
2572 status_t status = acquire_sem_etc(exitSem, 1, flags, timeout);
2581 // We were probably interrupted or the timeout occurred; we need to
2925 /*! Blocks the current thread with a timeout
[all...]
/haiku/headers/private/kernel/boot/net/
H A DTCP.h72 status_t Read(void* buffer, size_t bufferSize, size_t* bytesRead, bigtime_t timeout = 0);
85 status_t _WaitForState(TCPSocketState state, bigtime_t timeout = 0);
/haiku/src/add-ons/kernel/bus_managers/ata/
H A DATARequest.cpp64 ATARequest::SetTimeout(bigtime_t timeout) argument
66 fTimeout = timeout;
/haiku/src/apps/cortex/support/
H A DMultiInvoker.cpp179 void MultiInvoker::SetTimeout(bigtime_t timeout) argument
181 m_timeout = timeout;
/haiku/src/kits/tracker/
H A DTaskLoop.h38 // Delayed Tasks, Periodic Delayed Tasks, Periodic Delayed Tasks with timeout,
99 bigtime_t initialDelay, bigtime_t period, bigtime_t timeout);
172 bigtime_t period, bigtime_t timeout);
174 // function object returns true or timeout is reached
/haiku/src/kits/support/
H A DJobQueue.cpp159 JobQueue::Pop(bigtime_t timeout, bool returnWhenEmpty, BJob** _job) argument
179 B_RELATIVE_TIMEOUT, timeout);
/haiku/src/servers/app/
H A DDelayedMessage.cpp744 bigtime_t timeout = B_INFINITE_TIMEOUT; local
747 timeout = atomic_get64(&fScheduledWakeup) - (system_time()
750 if (timeout > DM_MINIMUM_DELAY / 4) {
752 timeout);
846 bigtime_t timeout = message->ScheduledTime() - time; local
848 if (timeout < 0)
849 timeout = DM_MINIMUM_DELAY;
851 atomic_set64(&fScheduledWakeup, timeout);
/haiku/src/add-ons/kernel/busses/scsi/virtio/
H A DVirtioSCSIRequest.cpp55 VirtioSCSIRequest::SetTimeout(bigtime_t timeout) argument
57 fTimeout = timeout;
/haiku/src/system/kernel/arch/arm/
H A Dsoc_omap3.cpp166 OMAP3Timer::SetTimeout(bigtime_t timeout) argument
168 fRegBase[TMAR] = fRegBase[TCRR] + timeout / 1000ULL;
/haiku/headers/private/userlandfs/private/
H A DRequestAllocator.h33 status_t ReadRequest(bigtime_t timeout);
/haiku/src/add-ons/tracker/zipomatic/
H A DGenericThread.h21 status_t Pause(bool doBlock = TRUE, bigtime_t timeout = 0);
/haiku/src/system/runtime_loader/
H A Dutility.cpp99 snooze(bigtime_t timeout) argument
/haiku/src/apps/expander/
H A DGenericThread.h24 bigtime_t timeout = 0);
/haiku/headers/os/app/
H A DNotification.h74 status_t Send(bigtime_t timeout = -1);
/haiku/src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/
H A DProtocol.cpp282 Protocol::ProcessCommand(Command& command, bigtime_t timeout) argument
296 status = HandleResponse(&command, timeout);
310 Protocol::HandleResponse(Command* command, bigtime_t timeout, argument
324 status_t status = parser.NextResponse(response, timeout);

Completed in 228 milliseconds

1234567891011>>