Searched refs:timeout (Results 276 - 300 of 412) sorted by last modified time

<<11121314151617

/haiku/headers/os/net/
H A DSecureSocket.h19 bigtime_t timeout = B_INFINITE_TIMEOUT);
33 bigtime_t timeout = B_INFINITE_TIMEOUT);
36 virtual status_t WaitForReadable(bigtime_t timeout
H A DAbstractSocket.h31 bigtime_t timeout = B_INFINITE_TIMEOUT) = 0;
35 virtual status_t SetTimeout(bigtime_t timeout);
43 virtual status_t WaitForReadable(bigtime_t timeout
45 virtual status_t WaitForWritable(bigtime_t timeout
54 bigtime_t timeout = B_INFINITE_TIMEOUT);
61 status_t _WaitFor(int flags, bigtime_t timeout) const;
H A DDatagramSocket.h16 bigtime_t timeout = -1);
23 bigtime_t timeout = B_INFINITE_TIMEOUT);
H A DSocket.h16 bigtime_t timeout = B_INFINITE_TIMEOUT);
26 bigtime_t timeout = B_INFINITE_TIMEOUT);
H A DProxySecureSocket.h17 bigtime_t timeout = B_INFINITE_TIMEOUT);
24 bigtime_t timeout = B_INFINITE_TIMEOUT);
/haiku/src/kits/network/libnetapi/
H A DSocketMessenger.cpp88 bigtime_t timeout)
95 SetTo(address, timeout);
153 BSocketMessenger::SetTo(const BNetworkAddress& address, bigtime_t timeout) argument
164 status_t error = fSocket.Connect(address, timeout);
175 BSocketMessenger::SetTo(const BSocketMessenger& target, bigtime_t timeout) argument
177 return SetTo(target.Address(), timeout);
190 bigtime_t timeout)
199 return _ReadReply(replyID, _reply, timeout);
205 BMessenger& replyTarget, bigtime_t timeout)
208 status_t error = SendMessage(message, reply, timeout);
87 BSocketMessenger(const BNetworkAddress& address, bigtime_t timeout) argument
189 SendMessage(const BMessage& message, BMessage& _reply, bigtime_t timeout) argument
204 SendMessage(const BMessage& message, BMessenger& replyTarget, bigtime_t timeout) argument
230 ReceiveMessage(BMessage& _message, bigtime_t timeout) argument
284 _WaitForMessage(bigtime_t timeout) argument
363 _ReadReply(const int64 replyID, BMessage& reply, bigtime_t timeout) argument
[all...]
/haiku/headers/private/net/
H A DSocketMessenger.h19 bigtime_t timeout = B_INFINITE_TIMEOUT);
26 bigtime_t timeout = B_INFINITE_TIMEOUT);
28 bigtime_t timeout = B_INFINITE_TIMEOUT);
37 bigtime_t timeout = B_INFINITE_TIMEOUT);
40 bigtime_t timeout = B_INFINITE_TIMEOUT);
46 bigtime_t timeout = B_INFINITE_TIMEOUT);
55 status_t _WaitForMessage(bigtime_t timeout);
59 BMessage& _reply, bigtime_t timeout);
/haiku/headers/os/support/
H A DLocker.h23 status_t LockWithTimeout(bigtime_t timeout);
39 bool AcquireLock(bigtime_t timeout, status_t* error);
/haiku/headers/private/kernel/
H A Dksignal.h237 bigtime_t timeout);
/haiku/src/add-ons/media/media-add-ons/mixer/
H A DMixerCore.h61 bool LockWithTimeout(bigtime_t timeout);
142 MixerCore::LockWithTimeout(bigtime_t timeout) argument
144 return fLocker->LockWithTimeout(timeout) == B_OK;
/haiku/src/add-ons/kernel/network/protocols/l2cap/
H A DL2capEndpoint.cpp21 absolute_timeout(bigtime_t timeout) argument
23 if (timeout == 0 || timeout == B_INFINITE_TIMEOUT)
24 return timeout;
27 return timeout + system_time();
111 bigtime_t timeout = absolute_timeout(300 * 1000 * 1000); local
119 B_ABSOLUTE_TIMEOUT | B_CAN_INTERRUPT, timeout);
263 bigtime_t timeout = absolute_timeout(300 * 1000 * 1000); local
266 B_ABSOLUTE_TIMEOUT | B_CAN_INTERRUPT, timeout);
285 bigtime_t timeout local
[all...]
/haiku/src/servers/app/drawing/
H A DOverlay.cpp31 SemaphoreLocker(sem_id semaphore, bigtime_t timeout = B_INFINITE_TIMEOUT)
37 timeout);
/haiku/src/kits/app/
H A DLinkReceiver.cpp76 LinkReceiver::GetNextMessage(int32 &code, bigtime_t timeout) argument
86 status_t err = ReadFromPort(timeout);
163 LinkReceiver::AdjustReplyBuffer(bigtime_t timeout) argument
183 timeout == B_INFINITE_TIMEOUT ? 0 : B_RELATIVE_TIMEOUT,
184 timeout);
218 LinkReceiver::ReadFromPort(bigtime_t timeout) argument
223 status_t err = AdjustReplyBuffer(timeout);
232 if (timeout != B_INFINITE_TIMEOUT) {
235 fRecvBufferSize, B_TIMEOUT, timeout);
/haiku/src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/
H A DProtocol.h83 bigtime_t timeout = kIMAP4ClientTimeout);
92 bigtime_t timeout = kIMAP4ClientTimeout,
/haiku/headers/private/shared/
H A DRWLocker.h35 // locker has been deleted, or, if a timeout occured. Therefore
89 status_t ReadLockWithTimeout(bigtime_t timeout);
94 status_t WriteLockWithTimeout(bigtime_t timeout);
107 status_t _ReadLock(bigtime_t timeout);
108 status_t _WriteLock(bigtime_t timeout);
118 bigtime_t timeout);
/haiku/src/kits/shared/
H A DRWLocker.cpp70 RWLocker::ReadLockWithTimeout(bigtime_t timeout) argument
72 bigtime_t absoluteTimeout = system_time() + timeout;
74 if (timeout > 0 && absoluteTimeout < 0)
135 RWLocker::WriteLockWithTimeout(bigtime_t timeout) argument
137 bigtime_t absoluteTimeout = system_time() + timeout;
139 if (timeout > 0 && absoluteTimeout < 0)
203 // /timeout/ -- absolute timeout
205 RWLocker::_ReadLock(bigtime_t timeout) argument
228 error = _AcquireBenaphore(fQueue, timeout);
276 _WriteLock(bigtime_t timeout) argument
454 _AcquireBenaphore(Benaphore& benaphore, bigtime_t timeout) argument
[all...]
/haiku/src/kits/support/
H A DLocker.cpp104 BLocker::LockWithTimeout(bigtime_t timeout) argument
108 AcquireLock(timeout, &result);
222 BLocker::AcquireLock(bigtime_t timeout, status_t *error) argument
237 timeout);
H A DJobQueue.cpp159 JobQueue::Pop(bigtime_t timeout, bool returnWhenEmpty, BJob** _job) argument
179 B_RELATIVE_TIMEOUT, timeout);
/haiku/3rdparty/mmu_man/scripts/
H A DHardwareChecker.sh362 do_notify 1.0 "Done!" --timeout 3
/haiku/src/kits/media/legacy/
H A DOldBufferStream.h186 bigtime_t timeout);
/haiku/src/tests/add-ons/kernel/kernelland_emu/
H A Dlock.cpp373 bigtime_t timeout)
418 while ((error = _kern_block_thread(timeoutFlags, timeout))
372 _rw_lock_read_lock_with_timeout(rw_lock* lock, uint32 timeoutFlags, bigtime_t timeout) argument
/haiku/src/apps/mediaplayer/supplier/
H A DMediaTrackAudioSupplier.cpp563 // TODO: Calculate timeout, 0.25 times duration of "frames" seems good.
564 bigtime_t timeout = 10000; local
581 if (system_time() - time > timeout) {
/haiku/headers/private/support/
H A DJobQueue.h33 status_t Pop(bigtime_t timeout, bool returnWhenEmpty,
/haiku/headers/private/app/
H A DMessagePrivate.h181 bigtime_t timeout, bool replyRequired, BMessenger &replyTo) const
184 timeout, replyRequired, replyTo);
212 int32 token, bigtime_t timeout)
215 port, token, timeout);
180 SendMessage(port_id port, team_id portOwner, int32 token, bigtime_t timeout, bool replyRequired, BMessenger &replyTo) const argument
211 SendFlattenedMessage(void *data, int32 size, port_id port, int32 token, bigtime_t timeout) argument
/haiku/headers/os/app/
H A DMessenger.h38 bigtime_t timeout) const;
46 bigtime_t timeout
50 bigtime_t timeout

Completed in 240 milliseconds

<<11121314151617