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

1234

/haiku/src/bin/network/ftpd/
H A Dpopen.c47 #include <sys/wait.h>
/haiku/src/apps/remotedesktop/
H A DRemoteDesktop.cpp21 #include <sys/wait.h>
/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...]
/haiku/src/system/libnetwork/netresolv/resolv/
H A Dres_send.c79 * Send query to name server and wait for reply.
834 * wait for the correct one.
974 wait:
1017 goto wait;
1024 goto wait;
1057 goto wait;
1070 goto wait;
1100 goto wait;
/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/apps/terminal/
H A DShell.cpp30 #include <sys/wait.h>
180 wait(&status);
/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/system/libroot/posix/glibc/libio/
H A Diopopen.c34 #include <sys/wait.h>
/haiku/src/tests/kits/app/broster/
H A DLaunchTesterHelper.h53 void TerminateApp(team_id team, bool wait = true);
/haiku/src/tests/system/libroot/posix/
H A Dxsi_msg_queue_test1.cpp17 #include <sys/wait.h>
H A Dxsi_sem_test1.cpp17 #include <sys/wait.h>
106 TEST("semop(IPC_NOWAIT) - wait for zero");
117 TEST("semop(IPC_NOWAIT) - wait to increase");
207 array[i].sem_op = 0; // wait for zero
209 array[i].sem_op = -8; // wait to increase
/haiku/src/add-ons/kernel/file_systems/nfs4/
H A DInode.h105 const struct flock* lock, bool wait);
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
/haiku/src/tests/kits/net/service/
H A DTestServer.cpp16 #include <sys/wait.h>
/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/headers/posix/
H A Dstdlib.h14 #include <sys/wait.h>
/haiku/src/tests/kits/net/netservices2/
H A DTestServer.cpp16 #include <sys/wait.h>
/haiku/src/system/libnetwork/netresolv/isc/
H A Deventlib_p.h175 struct { evWait *this; } wait; member in union:evEvent_p::__anon19
/haiku/src/system/kernel/debug/
H A Dsystem_profiler.cpp44 // minimum/maximum size of the table used for wait object caching
289 // compute the number wait objects we want to cache
317 // stop wait object listening
355 // delete wait object related allocations
394 // allocate the wait object buffer and init the hash table
507 // start scheduler and wait object listening
769 if (thread->wait.type != THREAD_BLOCK_TYPE_CONDITION_VARIABLE)
808 // If the old thread starts waiting, handle the wait object.
810 _WaitObjectUsed((addr_t)oldThread->wait.object, oldThread->wait
[all...]
/haiku/src/system/kernel/locks/
H A Duser_mutex.cpp29 * a "read" lock before initiating a wait, and an unblocker acquires a "write"
171 if (thread->wait.type != THREAD_BLOCK_TYPE_CONDITION_VARIABLE) {
176 ConditionVariable* variable = (ConditionVariable*)thread->wait.object;
622 // unset WAITING, because otherwise some other thread could initiate a wait.
/haiku/src/tests/kits/net/
H A DNetEndpointTest.cpp15 #include <sys/wait.h>
/haiku/src/libs/compat/freebsd_network/compat/sys/
H A Dmbuf.h295 struct mbuf * m_copym(struct mbuf *m, int off0, int len, int wait);
/haiku/src/bin/pcmcia-cs/
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/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/headers/os/drivers/pcmcia/
H A Dcistpl.h424 u_int wait, waitscale; member in struct:cistpl_timing_t

Completed in 253 milliseconds

1234