Searched refs:timeout (Results 251 - 275 of 412) sorted by last modified time

<<11121314151617

/haiku/src/add-ons/accelerants/matrox/engine/
H A Dmga_crtc.c382 uint32 timeout = 0; local
384 while ((!(ACCR(STATUS) & 0x08)) && (timeout < (25000/4)))
387 timeout++;
/haiku/headers/os/media/
H A DBufferGroup.h34 bigtime_t timeout = B_INFINITE_TIMEOUT);
36 bigtime_t timeout = B_INFINITE_TIMEOUT);
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/contrib/ath_hal/ar9300/
H A Dar9300desc.h507 extern HAL_BOOL ar9300_stop_tx_dma(struct ath_hal *ah, u_int q, u_int timeout);
508 extern HAL_BOOL ar9300_stop_tx_dma_indv_que(struct ath_hal *ah, u_int q, u_int timeout);
566 extern HAL_BOOL ar9300_stop_dma_receive(struct ath_hal *ah, u_int timeout);
H A Dar9300_recv.c107 ar9300_stop_dma_receive(struct ath_hal *ah, u_int timeout) argument
118 if (timeout == 0) {
119 timeout = AH_RX_STOP_DMA_TIMEOUT;
141 for (wait = timeout / AH_TIME_QUANTUM; wait != 0; wait--) {
152 timeout / 1000,
/haiku/src/servers/net/
H A DDHCPClient.h60 socket_timeout& timeout);
/haiku/src/servers/mail/
H A DDefaultNotifier.h38 void _NotifyIfAllowed(int timeout = 0);
/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/system/libroot/os/
H A Dport.c41 uint32 flags, bigtime_t timeout)
43 return _kern_write_port_etc(port, code, buffer, bufferSize, flags, timeout);
49 uint32 flags, bigtime_t timeout)
51 return _kern_read_port_etc(port, code, buffer, bufferSize, flags, timeout);
63 port_buffer_size_etc(port_id port, uint32 flags, bigtime_t timeout) argument
65 return _kern_port_buffer_size_etc(port, flags, timeout);
116 size_t infoSize, uint32 flags, bigtime_t timeout)
119 timeout);
40 write_port_etc(port_id port, int32 code, const void *buffer, size_t bufferSize, uint32 flags, bigtime_t timeout) argument
48 read_port_etc(port_id port, int32 *code, void *buffer, size_t bufferSize, uint32 flags, bigtime_t timeout) argument
115 _get_port_message_info_etc(port_id port, port_message_info *info, size_t infoSize, uint32 flags, bigtime_t timeout) argument
/haiku/src/servers/notification/
H A DNotificationWindow.cpp175 bigtime_t timeout; local
176 if (message->FindInt64("timeout", &timeout) != B_OK)
177 timeout = fTimeout;
213 timeout, fIconSize);
H A DNotificationView.h29 bigtime_t timeout, float iconSize,
/haiku/src/libs/glut/
H A Dglutint.h541 struct timeval timeout; /* time to be called */ member in struct:_GLUTtimer
/haiku/src/system/boot/loader/net/
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);
H A DRemoteDisk.cpp282 bigtime_t timeout = system_time() + kRequestTimeout;
285 error = socket->Receive(&packet, timeout - system_time());
303 } while (timeout > system_time());
/haiku/src/kits/network/libnetapi/
H A DProxySecureSocket.cpp21 bigtime_t timeout)
26 Connect(peer, timeout);
44 BProxySecureSocket::Connect(const BNetworkAddress& peer, bigtime_t timeout) argument
50 status = BSocket::Connect(fProxyAddress, timeout);
20 BProxySecureSocket(const BNetworkAddress& proxy, const BNetworkAddress& peer, bigtime_t timeout) argument
/haiku/src/kits/interface/
H A DScreen.cpp100 BScreen::WaitForRetrace(bigtime_t timeout) argument
103 return fScreen->WaitForRetrace(timeout);
H A DPrivateScreen.cpp266 BPrivateScreen::WaitForRetrace(bigtime_t timeout) argument
280 status = acquire_sem_etc(fRetraceSem, 1, B_RELATIVE_TIMEOUT, timeout);
/haiku/headers/private/kernel/boot/net/
H A DUDP.h61 status_t Receive(UDPPacket **packet, bigtime_t timeout = 0);
/haiku/headers/private/interface/
H A DPrivateScreen.h47 status_t WaitForRetrace(bigtime_t timeout);
/haiku/headers/private/fs_shell/
H A Dfssh_os.h69 uint32_t flags, fssh_bigtime_t timeout);
93 FSSH_B_TIMEOUT = 8, /* relative timeout */
94 FSSH_B_RELATIVE_TIMEOUT = 8, /* fails after a relative timeout with B_WOULD_BLOCK */
95 FSSH_B_ABSOLUTE_TIMEOUT = 16 /* fails after an absolute timeout with B_WOULD BLOCK */
/haiku/headers/os/interface/
H A DScreen.h37 status_t WaitForRetrace(bigtime_t timeout);
/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);
/haiku/headers/private/kernel/
H A Dtimer.h33 status_t (*set_hardware_timer)(bigtime_t timeout);
/haiku/src/tests/add-ons/kernel/drivers/tty/
H A Dtty-test.cpp148 int Select(bigtime_t timeout = -1)
156 timeval tv = { timeout / 1000000, timeout % 1000000 };
159 (timeout >= 0 ? &tv : NULL));
/haiku/headers/private/kernel/arch/m68k/
H A Darch_platform.h56 virtual void SetHardwareTimer(bigtime_t timeout) = 0;

Completed in 288 milliseconds

<<11121314151617