Searched refs:timeout (Results 176 - 200 of 412) sorted by last modified time

1234567891011>>

/haiku/src/add-ons/kernel/bus_managers/firewire/
H A Dfirewire.cpp268 /* Protect from interrupt/timeout */
316 "split transaction timeout: "
326 fc->timeout(fc);
343 * We encounter a timeout easily. To avoid this,
/haiku/src/add-ons/media/media-add-ons/usb_webcam/
H A DCamDevice.cpp296 CamDevice::WaitFrame(bigtime_t timeout) argument
299 return WaitFrame(timeout);
/haiku/src/add-ons/kernel/bus_managers/usb/
H A DHub.cpp481 uint32 timeout = 0; local
483 while (timeout < USB_DEBOUNCE_TIMEOUT) {
485 timeout += USB_DEBOUNCE_CHECK_INTERVAL;
/haiku/src/kits/media/
H A DMediaDefs.cpp1322 shutdown_media_server(bigtime_t timeout, argument
1434 launch_media_server(bigtime_t timeout, argument
/haiku/headers/os/media/
H A DMediaDefs.h799 status_t launch_media_server(bigtime_t timeout = B_INFINITE_TIMEOUT,
803 status_t shutdown_media_server(bigtime_t timeout = B_INFINITE_TIMEOUT,
/haiku/src/add-ons/kernel/drivers/input/hid_shared/
H A DKeyboardProtocolHandler.h42 status_t _ReadReport(bigtime_t timeout, uint32 *cookie);
/haiku/src/add-ons/kernel/bus_managers/ata/
H A DATAPrivate.h92 uint32 flags, bigtime_t timeout);
98 status_t WaitForInterrupt(bigtime_t timeout);
278 void SetTimeout(bigtime_t timeout);
/haiku/headers/private/kernel/
H A Dsyscall_restart.h14 /*! Helper function for syscalls with relative timeout.
15 Converts the given relative timeout to an absolute timeout or retrieves
17 restarted. A negative value means infinite timeout.
20 syscall_restart_handle_timeout_pre(bigtime_t& timeout) argument
22 // If restarted, get the timeout from the restart parameters. Otherwise
23 // convert relative timeout to an absolute one.
26 timeout = *(bigtime_t*)thread->syscall_restart.parameters;
27 else if (timeout >= 0) {
28 timeout
42 syscall_restart_handle_timeout_pre(uint32& flags, bigtime_t& timeout) argument
67 syscall_restart_handle_timeout_post(status_t error, bigtime_t timeout) argument
[all...]
H A Dvfs.h213 fd_set *errorSet, bigtime_t timeout, const sigset_t *sigMask);
214 ssize_t _user_poll(struct pollfd *fds, int numfds, bigtime_t timeout,
/haiku/src/add-ons/kernel/drivers/network/wlan/iprowifi4965/dev/iwn/
H A Dif_iwnreg.h822 uint16_t timeout; member in struct:iwn_cmd_data
1258 uint16_t timeout; member in struct:iwn_spectrum_cmd
H A Dif_iwn.c454 /* Clear device-specific "PCI retry timeout" register (41h). */
1481 /* Clear device-specific "PCI retry timeout" register (41h). */
1612 DPRINTF(sc, IWN_DEBUG_TRACE, "->%s end timeout\n", __func__);
1704 "timeout reading ROM at 0x%x\n", addr);
3481 sc->calib_cnt = 0; /* Reset TX power calibration timeout. */
3672 * XXX f/w may hang (device timeout) when desc->idx - ring->read == 64
3713 * 802.11 layer will fall back to using a timeout to wait for
4735 tx->timeout = htole16(3);
4737 tx->timeout = htole16(2);
4739 tx->timeout
[all...]
/haiku/src/bin/network/ftpd/
H A Dftpd.c131 int timeout = 900; /* timeout after 15 minutes of inactivity */ variable
385 timeout = atoi(optarg);
386 if (maxtimeout < timeout)
387 maxtimeout = timeout;
392 if (timeout > maxtimeout)
393 timeout = maxtimeout;
1936 struct timeval timeout; local
1942 timeout.tv_usec = 0;
1943 timeout
[all...]
H A Dftpcmd.y90 extern int timeout;
775 timeout, maxtimeout);
785 timeout = $6.i;
786 (void) alarm(timeout);
789 timeout);
1297 "Timeout (%d seconds): closing control connection.", timeout);
1300 (pw ? pw -> pw_name : "unknown"), timeout);
1318 (void) alarm(timeout);
/haiku/src/add-ons/kernel/generic/scsi_periph/
H A Dio.cpp69 ccb->timeout = device->std_timeout;
178 request->timeout = cmd->timeout;
279 request->timeout = device->std_timeout;
/haiku/headers/posix/
H A Dpoll.h40 extern int poll(struct pollfd *fds, nfds_t numfds, int timeout);
42 const struct timespec *timeout, const sigset_t *sigMask);
/haiku/src/servers/registrar/
H A DShutdownProcess.h53 void _ScheduleTimeoutEvent(bigtime_t timeout,
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar5212/
H A Dar5212_misc.c505 HALDEBUG(ah, HAL_DEBUG_ANY, "%s: bad ack timeout %u\n",
552 HALDEBUG(ah, HAL_DEBUG_ANY, "%s: bad cts timeout %u\n",
591 uint32_t slot, timeout, eifs; local
625 timeout = ACK_CTS_TIMEOUT_11A + (coverageclass * 3 * clkRate);
633 SM(timeout, AR_TIME_OUT_CTS)
634 | SM(timeout, AR_TIME_OUT_ACK));
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/
H A Dah_internal.h620 uint32_t mask, uint32_t val, uint32_t timeout);
H A Dah.c313 ath_hal_waitfor(struct ath_hal *ah, u_int reg, uint32_t mask, uint32_t val, uint32_t timeout) argument
317 for (i = 0; i < timeout; i++) {
323 "%s: timeout on reg 0x%x: 0x%08x & 0x%08x != 0x%08x\n",
/haiku/headers/private/kernel/platform/efi/
H A Dboot-services.h161 efi_status (*SetWatchdogTimer) (size_t timeout, uint64_t watchdog_code,
/haiku/src/add-ons/media/plugins/http_streamer/
H A DHTTPMediaIO.cpp16 // 10 seconds timeout
79 status_t LockOnInit(bigtime_t timeout) argument
81 return acquire_sem_etc(fInitSem, 1, B_RELATIVE_TIMEOUT, timeout);
/haiku/src/servers/app/drawing/interface/remote/
H A DRemoteHWInterface.cpp508 RemoteHWInterface::WaitForRetrace(bigtime_t timeout) argument
/haiku/src/servers/app/
H A DEventStream.cpp42 EventStream::GetNextCursorPosition(BPoint& where, bigtime_t timeout) argument
164 InputServerStream::GetNextCursorPosition(BPoint &where, bigtime_t timeout) argument
170 timeout);
227 InputServerStream::_MessageFromPort(BMessage** _message, bigtime_t timeout) argument
235 bufferSize = port_buffer_size_etc(fPort, B_RELATIVE_TIMEOUT, timeout);
H A DEventDispatcher.cpp1000 const bigtime_t timeout = mouseIdleSent ? local
1002 status = fStream->GetNextCursorPosition(where, timeout);
/haiku/src/preferences/time/
H A Dntp.cpp170 struct timeval timeout; local
171 timeout.tv_sec = 3;
172 timeout.tv_usec = 0;
178 &timeout);

Completed in 212 milliseconds

1234567891011>>