Searched refs:timeout (Results 226 - 250 of 412) sorted by relevance

1234567891011>>

/haiku/src/tests/system/network/multicast/
H A Dmulticat.c72 { "timeout", required_argument, NULL, 't' },
82 int timeout = 0; local
99 timeout = atoi(optarg);
119 if (timeout) {
121 alarm(timeout);
349 " -t, --timeout=NUM the program will exit after NUM seconds\n"
/haiku/src/servers/app/drawing/interface/virtual/
H A DViewHWInterface.h49 bigtime_t timeout = B_INFINITE_TIMEOUT);
/haiku/src/add-ons/kernel/busses/scsi/ahci/
H A Dahci_port.h62 status_t WaitForTransfer(int *tfd, bigtime_t timeout);
/haiku/src/kits/media/experimental/
H A DAdapterIO.cpp22 bigtime_t timeout)
29 fTimeout(timeout)
236 BAdapterIO::BAdapterIO(int32 flags, bigtime_t timeout) argument
247 fBuffer = new RelativePositionIO(this, new BMallocIO(), timeout);
21 RelativePositionIO(BAdapterIO* owner, BPositionIO* buffer, bigtime_t timeout) argument
/haiku/headers/private/media/experimental/
H A DAdapterIO.h42 bigtime_t timeout);
/haiku/src/add-ons/kernel/file_systems/netfs/netfs_server_prefs/
H A DNetFSServerRoster.cpp43 NetFSServerRoster::TerminateServer(bool force, bigtime_t timeout) argument
60 error = acquire_sem_etc(deathSem, 1, B_RELATIVE_TIMEOUT, timeout);
69 error = acquire_sem_etc(deathSem, 1, B_RELATIVE_TIMEOUT, timeout);
/haiku/src/apps/cortex/NodeManager/
H A DNodeManager.h354 bigtime_t timeout=B_INFINITE_TIMEOUT,
367 bigtime_t timeout=B_INFINITE_TIMEOUT,
450 bigtime_t timeout=B_INFINITE_TIMEOUT);
/haiku/src/kits/app/
H A DLinkSender.cpp296 LinkSender::Flush(bigtime_t timeout, bool needsReply) argument
309 if (timeout != B_INFINITE_TIMEOUT) {
312 fCurrentEnd, B_RELATIVE_TIMEOUT, timeout);
H A DLooper.cpp645 BLooper::LockWithTimeout(bigtime_t timeout) argument
647 return _Lock(this, -1, timeout);
870 BLooper::MessageFromPort(bigtime_t timeout) argument
872 return ReadMessageFromPort(timeout);
923 \param timeout timeout for acquiring the lock
926 BLooper::_Lock(BLooper* looper, port_id port, bigtime_t timeout) argument
977 return _LockComplete(looper, oldCount, currentThread, sem, timeout);
983 sem_id sem, bigtime_t timeout)
991 err = acquire_sem_etc(sem, 1, B_RELATIVE_TIMEOUT, timeout);
982 _LockComplete(BLooper* looper, int32 oldCount, thread_id thread, sem_id sem, bigtime_t timeout) argument
1097 ReadRawFromPort(int32* msgCode, bigtime_t timeout) argument
1135 ReadMessageFromPort(bigtime_t timeout) argument
[all...]
H A DNotification.cpp448 BNotification::Send(bigtime_t timeout) argument
456 if (ret == B_OK && timeout > 0)
457 ret = msg.AddInt64("timeout", timeout);
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/contrib/ath_hal/ar9300/
H A Dar9300_xmit.c609 ar9300_stop_tx_dma(struct ath_hal *ah, u_int q, u_int timeout) argument
634 if (timeout == 0) {
635 timeout = AH_TX_STOP_DMA_TIMEOUT;
640 for (wait = timeout / AH_TIME_QUANTUM; wait != 0; wait--) {
702 wait = timeout / AH_TIME_QUANTUM;
708 __func__, timeout / 1000);
729 ar9300_stop_tx_dma_indv_que(struct ath_hal *ah, u_int q, u_int timeout) argument
739 if (timeout == 0) {
740 timeout = AH_TX_STOP_DMA_TIMEOUT;
745 for (wait = timeout / AH_TIME_QUANTU
[all...]
/haiku/src/system/boot/loader/net/
H A DRemoteDisk.cpp282 bigtime_t timeout = system_time() + kRequestTimeout;
285 error = socket->Receive(&packet, timeout - system_time());
303 } while (timeout > system_time());
H A DUDP.cpp212 UDPSocket::Receive(UDPPacket **_packet, bigtime_t timeout) argument
227 if (system_time() - startTime > timeout)
228 return (timeout == 0 ? B_WOULD_BLOCK : B_TIMED_OUT);
/haiku/src/libs/bsd/
H A Dkqueue.cpp184 bigtime_t timeout = 0; local
187 timeout = (tspec->tv_sec * 1000000LL) + (tspec->tv_nsec / 1000LL);
192 max_c(1, nevents / 2), waitFlags, timeout);
/haiku/src/system/libnetwork/netresolv/resolv/
H A Dres_send.c864 struct timespec now, timeout, finish; local
971 timeout = evConsTime((time_t)seconds, 0L);
972 finish = evAddTime(now, timeout);
979 timeout = evSubTime(finish, now);
981 timeout = evConsTime(0L, 0L);
984 n = kevent(kq, &kv, 1, &kv, 1, &timeout);
988 n = pselect(s + 1, &dsmask, NULL, NULL, &timeout, NULL);
991 timeout = evSubTime(finish, now);
992 if (timeout.tv_sec < 0)
993 timeout
[all...]
/haiku/src/kits/network/libnetservices2/
H A DHttpRequest.cpp171 bigtime_t timeout = B_INFINITE_TIMEOUT; member in struct:BHttpRequest::Data
285 return fData->timeout;
386 BHttpRequest::SetTimeout(bigtime_t timeout) argument
390 fData->timeout = timeout;
/haiku/src/system/kernel/platform/atari_m68k/
H A Dplatform.cpp161 virtual void SetHardwareTimer(bigtime_t timeout);
635 M68KAtari::SetHardwareTimer(bigtime_t timeout) argument
638 if (timeout <= 0)
640 else if (timeout < MFP_MAX_TIMER_INTERVAL)
641 nextEventClocks = timeout * MFP_TIMER_RATE / 1000000;
/haiku/src/add-ons/kernel/drivers/network/ether/ipro1000/dev/e1000/
H A De1000_mbx.c189 int countdown = mbx->timeout;
205 mbx->timeout = 0;
220 int countdown = mbx->timeout;
236 mbx->timeout = 0;
278 * received an ack to that message within delay * timeout period
287 /* exit if either we can't write or there isn't a defined timeout */
288 if (!mbx->ops.write || !mbx->timeout)
540 /* start mailbox as timed out and let the reset_hw call set the timeout
542 mbx->timeout = 0;
768 mbx->timeout
[all...]
/haiku/src/add-ons/kernel/busses/scsi/buslogic/
H A Dbuslogic.c159 int timeout; local
174 timeout = 100;
185 timeout--;
186 if(!timeout) {
200 timeout = 100;
215 timeout--;
216 if(!timeout) {
226 timeout = 100;
230 timeout--;
231 if(!timeout) {
[all...]
/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/src/kits/device/
H A DSerialPort.cpp185 /*! \brief Set the timeout for the port.
186 \param microSeconds The timeout for the port.
466 value of SetBlocking(); however, it respects the timeout
604 //Set the timeout
611 int timeout = fTimeout / 100000; local
612 options.c_cc[VTIME] = (timeout == 0) ? 1 : timeout;
/haiku/src/system/kernel/util/
H A Dring_buffer.cpp353 uint32 flags, bigtime_t timeout)
364 flags, timeout);
376 status = writev_port_etc(port, code, vecs, 2, length, flags, timeout);
/haiku/headers/os/device/
H A Dscsi.h162 bigtime_t timeout; member in struct:__anon202
/haiku/src/add-ons/media/media-add-ons/usb_webcam/
H A DCamDeframer.h48 virtual status_t WaitFrame(bigtime_t timeout);
/haiku/src/preferences/mail/
H A DDNSQuery.h104 bigtime_t timeout = 500000);

Completed in 278 milliseconds

1234567891011>>