Home
last modified time | relevance | path

Searched refs:wait (Results 1 – 25 of 29) sorted by relevance

12

/components/libc/cplusplus/cpp11/gcc/
A Dcondition_variable44 void wait(unique_lock<mutex> &lock);
57 void wait(unique_lock<mutex> &lock, Predicate pred)
60 wait(lock);
164 void wait(Lock &lock)
171 _m_cond.wait(lk2);
175 void wait(Lock &lock, Predicate pred)
178 wait(lock);
A Dfuture42 void wait() {
44 c_.wait(lock, [this] { return has_value(); });
87 wait();
162 void wait() const { state_->wait(); }
217 void wait() const { state_->wait(); }
A Dcondition_variable.cpp15 void condition_variable::wait(unique_lock<mutex>& lock) in wait() function in std::condition_variable
A Dmutex452 // wait and try the other way
/components/drivers/include/ipc/
A Dwaitqueue.h22 typedef int (*rt_wqueue_func_t)(struct rt_wqueue_node *wait, void *key);
35 int __wqueue_default_wake(struct rt_wqueue_node *wait, void *key);
/components/libc/posix/io/poll/
A Dpoll.c61 static int __wqueue_pollwake(struct rt_wqueue_node *wait, void *key) in __wqueue_pollwake() argument
67 if (key && !((rt_ubase_t)key & wait->key)) in __wqueue_pollwake()
70 pn = rt_container_of(wait, struct rt_poll_node, wqn); in __wqueue_pollwake()
79 return __wqueue_default_wake(wait, key); in __wqueue_pollwake()
/components/dfs/dfs_v1/filesystems/nfs/rpc/
A Dclnt_udp.c118 struct timeval wait, in clntudp_bufcreate() argument
163 cu->cu_wait = wait; in clntudp_bufcreate()
208 struct timeval wait, in clntudp_create() argument
211 return (clntudp_bufcreate(raddr, program, version, wait, sockp, in clntudp_create()
/components/libc/cplusplus/os/
A Dcxx_semaphore.h32 bool wait(int32_t millisec = -1);
A Dcxx_Semaphore.cpp19 bool Semaphore::wait(int32_t millisec) in wait() function in Semaphore
A Dcxx_thread.h48 rt_err_t wait(int32_t millisec);
A Dcxx_Thread.cpp95 rt_err_t Thread::wait(int32_t millisec) in wait() function in Thread
/components/libc/cplusplus/cpp11/armclang/
A Dcondvar.cpp44 void arm_tpl_cv::wait(rt_mutex_t lock, bool recursive) in wait() function in arm_tpl_cv
132 ((arm_tpl_cv *) __vcv->data)->wait(tmutex->mutex, tmutex->type == RECURSIVE); in __ARM_TPL_condvar_wait()
A Dtpl.h46 void wait(rt_mutex_t lock, bool recursive);
/components/net/lwip/lwip-1.4.1/
A DREADME.md9 - sockets.c: custom 'select' function implementation in RT-Thread by the wait queue mode.
/components/drivers/usb/cherryusb/demo/adb/
A Dcherrysh_port.c82 wait: in wait_char()
95 goto wait; in wait_char()
/components/libc/posix/io/epoll/
A Depoll.c196 static int epoll_wqueue_callback(struct rt_wqueue_node *wait, void *key) in epoll_wqueue_callback() argument
203 if (key && !((rt_ubase_t)key & wait->key)) in epoll_wqueue_callback()
206 fdlist = rt_container_of(wait, struct rt_fd_list, wqn); in epoll_wqueue_callback()
227 return __wqueue_default_wake(wait, key); in epoll_wqueue_callback()
/components/legacy/usb/usbdevice/class/
A Dcdc_vcom.c83 struct rt_completion wait; member
312 rt_completion_done(&data->wait); in _ep_in_handler()
916 rt_completion_init(&data->wait); in vcom_tx_thread_entry()
924 if (rt_completion_wait(&data->wait, VCOM_TX_TIMEOUT) != RT_EOK) in vcom_tx_thread_entry()
/components/net/lwip/lwip-2.0.3/
A DREADME.md16 - sockets.c: custom 'select' function implementation in RT-Thread by the wait queue mode.
/components/drivers/ipc/
A Dwaitqueue.c65 int __wqueue_default_wake(struct rt_wqueue_node *wait, void *key) in __wqueue_default_wake() argument
/components/libc/posix/io/timerfd/
A Dtimerfd.c178 static int timerfd_wqueue_callback(struct rt_wqueue_node *wait, void *key) in timerfd_wqueue_callback() argument
/components/net/lwip/lwip-1.4.1/doc/
A Drawapi.txt168 The tcp_connect() function returns immediately; it does not wait for
211 the application should wait until some of the currently enqueued
277 should wait and try again either by using the acknowledgment
A Dsys_arch.txt77 SYS_ARCH_TIMEOUT. If the thread didn't have to wait for the semaphore
/components/net/lwip/lwip-2.0.3/doc/
A Dppp.txt342 * Initiate PPP listener (i.e. wait for an incoming connection), can only
361 * Then you must wait your status_cb() to be called, it may takes from a few
A Drawapi.txt189 The tcp_connect() function returns immediately; it does not wait for
232 the application should wait until some of the currently enqueued
298 should wait and try again either by using the acknowledgment
/components/net/lwip/lwip-2.1.2/doc/
A Dppp.txt342 * Initiate PPP listener (i.e. wait for an incoming connection), can only
361 * Then you must wait your status_cb() to be called, it may takes from a few

Completed in 28 milliseconds

12