Searched refs:wait (Results 1 - 25 of 95) sorted by path

1234

/haiku/headers/compatibility/bsd/sys/
H A Dwait.h9 #include_next <sys/wait.h>
/haiku/headers/os/drivers/pcmcia/
H A Dcistpl.h424 u_int wait, waitscale; member in struct:cistpl_timing_t
/haiku/headers/posix/sys/
H A Dwait.h21 /* macros to interprete wait()/waitpid() status */
33 P_ALL, /* wait for any children, ignore ID */
34 P_PID, /* wait for the child whose process ID matches */
35 P_PGID /* wait for any child whose process group ID matches */
43 extern pid_t wait(int *_status);
/haiku/headers/tools/cppunit/cppunit/ui/text/
H A DTestRunner.h37 * runner.run( "", true ); // Run all tests and wait
57 * runner.run( "", true ); // Run all tests and wait
87 virtual void wait( bool doWait );
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/contrib/ath_hal/ar9300/
H A Dar9300_recv.c76 * so skipping the wait for BB panic reset */
109 int wait; local
130 /* wait for Rx DMA state machine to become idle */
141 for (wait = timeout / AH_TIME_QUANTUM; wait != 0; wait--) {
148 if (wait == 0) {
H A Dar9300_xmit.c341 /* enable DCU to wait for next fragment from QCU */
628 u_int wait;
640 for (wait = timeout / AH_TIME_QUANTUM; wait != 0; wait--) {
648 if (wait == 0) {
702 wait = timeout / AH_TIME_QUANTUM;
704 if ((--wait) == 0) {
718 return (wait != 0);
733 u_int wait; local
[all...]
/haiku/src/add-ons/kernel/file_systems/nfs4/
H A DInode.cpp732 bool wait)
761 linfo->fType = sGetLockType(lock->l_type, wait);
763 result = NFS4Inode::AcquireLock(cookie, linfo, wait);
731 AcquireLock(OpenFileCookie* cookie, const struct flock* lock, bool wait) argument
H A DInode.h105 const struct flock* lock, bool wait);
H A DNFS4Defs.h268 sGetLockType(short type, bool wait) { argument
270 case F_RDLCK: return wait ? READW_LT : READ_LT;
271 case F_WRLCK: return wait ? WRITEW_LT : WRITE_LT;
H A DNFS4Inode.cpp400 // If we have to wait, migrate to another server, etc then the first
1110 NFS4Inode::AcquireLock(OpenFileCookie* cookie, LockInfo* lockInfo, bool wait) argument
1143 if (reply.NFS4Error() != NFS4ERR_DENIED || wait) {
H A DNFS4Inode.h83 bool wait);
/haiku/src/add-ons/media/media-add-ons/radeon/
H A DI2CPort.cpp177 for (int wait = 0; wait < 100; wait++) {
216 for (int wait = 0; wait < 100; wait++) {
236 for (int wait = 0; wait < 100; wait++) {
260 // wait G
[all...]
/haiku/src/apps/cortex/support/
H A DBasicThread.h103 status_t stop(bool wait=true) { argument
115 if(wait) {
/haiku/src/apps/debuganalyzer/model_loader/
H A DAbstractModelLoader.cpp65 AbstractModelLoader::Abort(bool wait) argument
79 if (wait)
H A DAbstractModelLoader.h22 virtual void Abort(bool wait);
/haiku/src/bin/debug/time_stats/
H A Dtiming_analysis.cpp10 #include <sys/wait.h>
73 // wait for child
75 while (wait(&childStatus) < 0);
/haiku/src/bin/network/telnet/
H A Dcommands.c48 #include <sys/wait.h>
133 #include <sys/wait.h>
153 (void) wait(&status);
1390 (void)wait((int *)0); /* Wait for the shell to complete */
/haiku/src/bin/network/telnetd/
H A Ddefs.h58 #include <sys/wait.h>
/haiku/src/bin/pcmcia-cs/
H A Dcardctl.c49 #include <sys/wait.h>
287 printf(" [wait]");
H A Ddump_cis.c312 if ((entry->timing.wait != 0) || (entry->timing.ready != 0) ||
315 if (entry->timing.wait != 0) {
316 printf(" wait ");
317 print_time(entry->timing.wait, entry->timing.waitscale);
394 printf(" [wait]");
/haiku/src/kits/debugger/debug_info/loading_state_handlers/
H A DDwarfLoadingStateHandler.cpp9 #include <sys/wait.h>
/haiku/src/libs/compat/freebsd_network/compat/net/
H A Dvnet.h94 #define VNET_PCPUSTAT_ALLOC(name, wait) \
96 sizeof(VNET(name)) / sizeof(counter_u64_t), (wait))
/haiku/src/libs/compat/freebsd_network/compat/sys/
H A Dcounter.h29 counter_u64_alloc(int wait) argument
31 return (counter_u64_t)_kernel_malloc(sizeof(uint64_t), wait | M_ZERO);
/haiku/src/libs/compat/freebsd_network/
H A Dfbsd_uipc_mbuf.c435 * The wait parameter is a choice of M_WAITOK/M_NOWAIT from caller.
440 m_copym(struct mbuf *m, int off0, int len, int wait) argument
449 MBUF_CHECKSLEEP(wait);
468 n = m_gethdr(wait, m->m_type);
470 n = m_get(wait, m->m_type);
475 if (!m_dup_pkthdr(n, m, wait))
893 m_split(struct mbuf *m0, int len0, int wait) argument
898 MBUF_CHECKSLEEP(wait);
905 n = m_gethdr(wait, m0->m_type);
915 n = m_gethdr(wait, m
[all...]
H A Dfbsd_uipc_mbuf2.c272 m_dup1(struct mbuf *m, int off, int len, int wait) argument
285 n = m_getcl(wait, m->m_type, M_PKTHDR);
287 n = m_getcl(wait, m->m_type, 0);
290 n = m_gethdr(wait, m->m_type);
292 n = m_get(wait, m->m_type);
297 if (copyhdr && !m_dup_pkthdr(n, m, wait)) {
319 m_tag_alloc(uint32_t cookie, int type, int len, int wait) argument
323 MBUF_CHECKSLEEP(wait);
326 t = malloc(len + sizeof(struct m_tag), M_PACKET_TAGS, wait);

Completed in 126 milliseconds

1234