| /components/libc/cplusplus/cpp11/gcc/ |
| A D | condition_variable | 44 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 D | future | 42 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 D | condition_variable.cpp | 15 void condition_variable::wait(unique_lock<mutex>& lock) in wait() function in std::condition_variable
|
| A D | mutex | 452 // wait and try the other way
|
| /components/drivers/include/ipc/ |
| A D | waitqueue.h | 22 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 D | poll.c | 61 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 D | clnt_udp.c | 118 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 D | cxx_semaphore.h | 32 bool wait(int32_t millisec = -1);
|
| A D | cxx_Semaphore.cpp | 19 bool Semaphore::wait(int32_t millisec) in wait() function in Semaphore
|
| A D | cxx_thread.h | 48 rt_err_t wait(int32_t millisec);
|
| A D | cxx_Thread.cpp | 95 rt_err_t Thread::wait(int32_t millisec) in wait() function in Thread
|
| /components/libc/cplusplus/cpp11/armclang/ |
| A D | condvar.cpp | 44 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 D | tpl.h | 46 void wait(rt_mutex_t lock, bool recursive);
|
| /components/net/lwip/lwip-1.4.1/ |
| A D | README.md | 9 - sockets.c: custom 'select' function implementation in RT-Thread by the wait queue mode.
|
| /components/drivers/usb/cherryusb/demo/adb/ |
| A D | cherrysh_port.c | 82 wait: in wait_char() 95 goto wait; in wait_char()
|
| /components/libc/posix/io/epoll/ |
| A D | epoll.c | 196 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 D | cdc_vcom.c | 83 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 D | README.md | 16 - sockets.c: custom 'select' function implementation in RT-Thread by the wait queue mode.
|
| /components/drivers/ipc/ |
| A D | waitqueue.c | 65 int __wqueue_default_wake(struct rt_wqueue_node *wait, void *key) in __wqueue_default_wake() argument
|
| /components/libc/posix/io/timerfd/ |
| A D | timerfd.c | 178 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 D | rawapi.txt | 168 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 D | sys_arch.txt | 77 SYS_ARCH_TIMEOUT. If the thread didn't have to wait for the semaphore
|
| /components/net/lwip/lwip-2.0.3/doc/ |
| A D | ppp.txt | 342 * 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 D | rawapi.txt | 189 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 D | ppp.txt | 342 * 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
|