Searched refs:wait (Results 51 - 75 of 95) sorted by path

1234

/haiku/src/tests/system/network/
H A Dtcp_server.c15 #include <sys/wait.h>
/haiku/src/tools/cppunit/cppunit/
H A DTestRunner.cpp74 wait( doWait );
96 TestRunner::wait( bool doWait ) function in class:CppUnit::TextUi::TestRunner
/haiku/headers/os/drivers/
H A Dfs_interface.h251 const struct flock* lock, bool wait);
/haiku/headers/os/net/
H A DNetworkDevice.h112 status_t Scan(bool wait = true,
/haiku/headers/posix/
H A Dstdlib.h14 #include <sys/wait.h>
/haiku/headers/private/kernel/arch/arm/
H A Darch_uart_pl011.h34 int GetChar(bool wait);
/haiku/headers/private/kernel/arch/arm64/
H A Darch_uart_linflex.h528 int GetChar(bool wait);
/haiku/headers/private/kernel/arch/generic/
H A Ddebug_uart.h33 virtual int GetChar(bool wait) = 0;
H A Ddebug_uart_8250.h33 int GetChar(bool wait);
/haiku/headers/private/kernel/arch/riscv64/
H A Darch_uart_sifive.h82 virtual int GetChar(bool wait);
/haiku/headers/private/kernel/
H A Dthread.h180 blocking it with the given wait/interrupt flags.
217 return atomic_get(&thread->wait.status) == 1;
224 (IOW, to let it wait for someone else to unblock it or optionally time out
267 - Check client condition and compare with block result. E.g. if the wait was
302 Care must be taken when the wait can be interrupted or can time out,
329 thread->wait.flags = flags;
330 thread->wait.type = type;
331 thread->wait.object = object;
332 atomic_set(&thread->wait.status, 1);
354 if (atomic_test_and_set(&thread->wait
[all...]
H A Dthread_types.h487 status_t status; // current wait status
492 } wait; member in struct:BKernel::Thread
/haiku/src/add-ons/accelerants/intel_extreme/
H A Dmode.cpp281 // anymore that's why we don't wait forever for it. At 50Hz, we're sure
282 // to get a vblank in at most 20ms, so there is no need to wait longer
401 // wait for warmup (Can be done anytime before enabling port)
407 // a. Enable PCH 120MHz clock source output to CPU, wait for DMI
410 // register, wait for warmup
416 // a. Enable PCH FDI Receiver PLL, wait for warmup plus DMI latency
418 // c. [DevSNB] Enable CPU FDI Transmitter PLL, wait for warmup
457 c. Configure and enable PCH DPLL, wait for PCH DPLL warmup (Can be done anytime before enabling
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar5212/
H A Dar5212_xmit.c325 /* NB: always enable DCU to wait for next fragment from QCU */
593 u_int wait; local
653 /* Give at least 1 millisec more to wait */
654 wait = 100;
658 if ((--wait) == 0) {
661 __func__, wait);
/haiku/src/add-ons/kernel/drivers/network/wlan/ralinkwifi/dev/ral/
H A Drt2860.c253 /* wait for NIC to initialize */
2173 rt2860_mcu_cmd(struct rt2860_softc *sc, uint8_t cmd, uint16_t arg, int wait) argument
2187 cid = wait ? cmd : RT2860_TOKEN_NO_INTR;
2192 if (!wait)
2194 /* wait for the command to complete */
3668 /* wait for BBP to wake up */
3907 /* wait while MAC is busy */
4150 /* wait until microcontroller is ready */
/haiku/src/add-ons/kernel/file_systems/nfs4/
H A Dkernel_interface.cpp1350 const struct flock* lock, bool wait)
1364 return inode->AcquireLock(cookie, lock, wait);
1349 nfs4_acquire_lock(fs_volume* volume, fs_vnode* vnode, void* _cookie, const struct flock* lock, bool wait) argument
/haiku/src/apps/remotedesktop/
H A DRemoteDesktop.cpp21 #include <sys/wait.h>
/haiku/src/apps/terminal/
H A DShell.cpp30 #include <sys/wait.h>
180 wait(&status);
/haiku/src/bin/debug/strace/
H A Dnetwork.cpp135 Syscall *wait = get_syscall("_kern_wait_for_child"); local
136 wait->ParameterAt(2)->SetOut(true);
137 wait->ParameterAt(3)->SetOut(true);
/haiku/src/bin/network/ftpd/
H A Dftpd.c60 #include <sys/wait.h>
213 #define SWAITMAX 90 /* wait at most 90 seconds */
576 * Disable Nagle on the control channel so that we don't have to wait
H A Dpopen.c47 #include <sys/wait.h>
/haiku/src/bin/network/traceroute/
H A Dtraceroute.c342 int waittime = 5; /* time to wait for response (in seconds) */
699 waittime = str2val(optarg, "wait time",
1250 struct timeval now, wait; local
1261 wait.tv_sec = tp->tv_sec + waittime;
1262 wait.tv_usec = tp->tv_usec;
1264 tvsub(&wait, &now);
1265 if (wait.tv_sec < 0) {
1266 wait.tv_sec = 0;
1267 wait.tv_usec = 1;
1270 error = select(sock + 1, fdsp, NULL, NULL, &wait);
[all...]
/haiku/src/kits/network/libnetapi/
H A DNetworkDevice.cpp740 BNetworkDevice::Scan(bool wait, bool forceRescan) argument
783 if (wait)
814 // one, which we of course don't want to wait for. So just return immediately
821 if (!wait || status != B_OK) {
/haiku/src/kits/package/
H A DFetchFileJob.cpp16 #include <sys/wait.h>
/haiku/src/libs/bsd/
H A Dwait.c12 #include <sys/wait.h>

Completed in 215 milliseconds

1234