Searched refs:timeout (Results 101 - 125 of 490) sorted by relevance

1234567891011>>

/haiku-fatelf/headers/os/app/
H A DMessenger.h35 status_t LockTargetWithTimeout(bigtime_t timeout) const;
41 bigtime_t timeout = B_INFINITE_TIMEOUT) const;
43 bigtime_t timeout = B_INFINITE_TIMEOUT) const;
/haiku-fatelf/headers/private/kernel/
H A Dcondition_variable.h31 status_t Wait(uint32 flags = 0, bigtime_t timeout = 0);
33 bigtime_t timeout = 0);
78 status_t Wait(uint32 flags = 0, bigtime_t timeout = 0);
H A Dwait_for_objects.h44 int numInfos, uint32 flags, bigtime_t timeout);
/haiku-fatelf/src/add-ons/kernel/bus_managers/ps2/
H A Dps2_dev.h44 int out_count, uint8 *in, int in_count, bigtime_t timeout);
77 int out_count, uint8 *in, int in_count, bigtime_t timeout);
82 int out_count, uint8 *in, int in_count, bigtime_t timeout);
/haiku-fatelf/src/add-ons/media/media-add-ons/dvb/
H A DPacketQueue.cpp105 PacketQueue::Flush(bigtime_t timeout) argument
111 timeout += system_time();
113 while (acquire_sem_etc(fSem, 1, B_ABSOLUTE_TIMEOUT, timeout) == B_OK) {
H A DPacketQueue.h44 void Flush(bigtime_t timeout);
/haiku-fatelf/src/add-ons/media/media-add-ons/mixer/
H A DMixerCore.h57 bool LockWithTimeout(bigtime_t timeout);
132 MixerCore::LockWithTimeout(bigtime_t timeout) argument
134 return fLocker->LockWithTimeout(timeout) == B_OK;
/haiku-fatelf/src/bin/gdb/gdb/
H A Dremote-utils.h35 unsigned int timeout; member in struct:_sr_settings
50 /* get and set timeout. */
51 #define sr_get_timeout() (sr_settings.timeout)
52 #define sr_set_timeout(newval) (sr_settings.timeout = (newval))
/haiku-fatelf/src/servers/registrar/
H A DMessageDeliverer.h72 bigtime_t timeout = B_INFINITE_TIMEOUT);
74 bigtime_t timeout = B_INFINITE_TIMEOUT);
76 MessagingTargetSet &targets, bigtime_t timeout = B_INFINITE_TIMEOUT);
/haiku-fatelf/src/system/kernel/arch/x86/
H A Darch_timer.cpp49 arch_timer_set_hardware_timer(bigtime_t timeout) argument
51 TRACE(("arch_timer_set_hardware_timer: timeout %lld\n", timeout));
52 sTimer->set_hardware_timer(timeout);
H A Darch_smp.cpp138 uint32 timeout; local
152 timeout = 100000000;
154 while ((apic_read(APIC_INTR_COMMAND_1) & APIC_DELIVERY_STATUS) != 0 && --timeout != 0)
157 if (timeout == 0)
158 panic("arch_smp_send_ici: timeout, target_cpu %" B_PRId32, target_cpu);
/haiku-fatelf/src/system/libroot/posix/pthread/
H A Dpthread_cond.cpp55 cond_wait(pthread_cond_t* cond, pthread_mutex_t* mutex, bigtime_t timeout) argument
79 timeout == B_INFINITE_TIMEOUT ? 0 : B_ABSOLUTE_REAL_TIME_TIMEOUT,
80 timeout);
/haiku-fatelf/headers/posix/
H A Dsemaphore.h32 int sem_timedwait(sem_t* semaphore, const struct timespec* timeout);
/haiku-fatelf/headers/private/mail/
H A DServerConnection.h32 status_t WaitForData(bigtime_t timeout);
/haiku-fatelf/src/add-ons/kernel/file_systems/netfs/headers/shared/
H A DConnection.h27 bigtime_t timeout = B_INFINITE_TIMEOUT) = 0;
/haiku-fatelf/src/add-ons/kernel/file_systems/netfs/shared/
H A DAbstractConnection.cpp123 AbstractConnection::GetUpStreamChannel(Channel** channel, bigtime_t timeout) argument
127 if (timeout < 0)
128 timeout = 0;
131 B_RELATIVE_TIMEOUT, timeout);
/haiku-fatelf/src/add-ons/kernel/generic/scsi_periph/
H A Dsync.cpp31 request->timeout = device->std_timeout;
/haiku-fatelf/src/add-ons/kernel/network/protocols/unix/
H A DUnixFifo.h117 ancillary_data_container** _ancillaryData, bigtime_t timeout);
119 ancillary_data_container* ancillaryData, bigtime_t timeout);
130 status_t _Read(UnixRequest& request, bigtime_t timeout);
131 status_t _Write(UnixRequest& request, bigtime_t timeout);
/haiku-fatelf/src/apps/bootmanager/
H A DDefaultPartitionPage.h37 void _GetTimeoutLabel(int32 timeout, BString& label);
/haiku-fatelf/src/build/libhaikucompat/
H A Dmisc.cpp48 size_t infoSize, uint32 flags, bigtime_t timeout)
47 _get_port_message_info_etc(port_id id, port_message_info *info, size_t infoSize, uint32 flags, bigtime_t timeout) argument
/haiku-fatelf/src/servers/app/drawing/
H A DUpdateQueue.cpp129 bigtime_t timeout = system_time() + fRefreshDuration * 2; local
130 // TRACE("acquire_sem_etc(%lld)\n", timeout);
133 B_ABSOLUTE_TIMEOUT | B_CAN_INTERRUPT, timeout);
136 bigtime_t timeout = system_time() + fRefreshDuration; local
137 // TRACE("snooze_until(%lld)\n", timeout);
139 err = snooze_until(timeout, B_SYSTEM_TIMEBASE);
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/userlandfs/r5/src/test/netfs/headers/shared/
H A DConnection.h27 bigtime_t timeout = B_INFINITE_TIMEOUT) = 0;
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/userlandfs/r5/src/test/netfs/shared/
H A DAbstractConnection.cpp121 AbstractConnection::GetUpStreamChannel(Channel** channel, bigtime_t timeout) argument
125 if (timeout < 0)
126 timeout = 0;
129 B_RELATIVE_TIMEOUT, timeout);
/haiku-fatelf/src/tests/kits/app/bmessenger/
H A DSMInvoker.cpp58 SMInvoker2::SMInvoker2(bool useMessage, bool useReplyTo, bigtime_t timeout) argument
62 fTimeout(timeout)
82 SMInvoker3::SMInvoker3(bool useMessage, bool useReplyTo, bigtime_t timeout) argument
86 fTimeout(timeout)
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/conformance/interfaces/pthread_cond_broadcast/
H A D2-2.c39 struct timespec timeout; local
54 timeout.tv_sec = curtime.tv_sec + TIMEOUT;
55 timeout.tv_nsec = curtime.tv_usec * 1000;
59 rc = pthread_cond_timedwait(&td.cond, &td.mutex, &timeout);

Completed in 306 milliseconds

1234567891011>>