Lines Matching refs:function

77 .. c:function:: int uv_thread_create(uv_thread_t* tid, uv_thread_cb entry, void* arg)
81 .. c:function:: int uv_thread_create_ex(uv_thread_t* tid, const uv_thread_options_t* params, uv_thr…
91 .. c:function:: int uv_thread_setaffinity(uv_thread_t* tid, char* cpumask, char* oldmask, size_t ma…
109 .. c:function:: int uv_thread_getaffinity(uv_thread_t* tid, char* cpumask, size_t mask_size)
122 .. c:function:: int uv_thread_getcpu(void)
131 .. c:function:: uv_thread_t uv_thread_self(void)
132 .. c:function:: int uv_thread_join(uv_thread_t *tid)
133 .. c:function:: int uv_thread_equal(const uv_thread_t* t1, const uv_thread_t* t2)
135 .. c:function:: int uv_thread_setpriority(uv_thread_t tid, int priority)
136 If the function succeeds, the return value is 0.
137 If the function fails, the return value is less than zero.
143 .. c:function:: int uv_thread_getpriority(uv_thread_t tid, int* priority)
144 If the function succeeds, the return value is 0.
145 If the function fails, the return value is less than zero.
157 .. c:function:: int uv_key_create(uv_key_t* key)
158 .. c:function:: void uv_key_delete(uv_key_t* key)
159 .. c:function:: void* uv_key_get(uv_key_t* key)
160 .. c:function:: void uv_key_set(uv_key_t* key, void* value)
165 Runs a function once and only once. Concurrent calls to :c:func:`uv_once` with the
169 .. c:function:: void uv_once(uv_once_t* guard, void (*callback)(void))
177 .. c:function:: int uv_mutex_init(uv_mutex_t* handle)
178 .. c:function:: int uv_mutex_init_recursive(uv_mutex_t* handle)
179 .. c:function:: void uv_mutex_destroy(uv_mutex_t* handle)
180 .. c:function:: void uv_mutex_lock(uv_mutex_t* handle)
181 .. c:function:: int uv_mutex_trylock(uv_mutex_t* handle)
182 .. c:function:: void uv_mutex_unlock(uv_mutex_t* handle)
190 .. c:function:: int uv_rwlock_init(uv_rwlock_t* rwlock)
191 .. c:function:: void uv_rwlock_destroy(uv_rwlock_t* rwlock)
192 .. c:function:: void uv_rwlock_rdlock(uv_rwlock_t* rwlock)
193 .. c:function:: int uv_rwlock_tryrdlock(uv_rwlock_t* rwlock)
194 .. c:function:: void uv_rwlock_rdunlock(uv_rwlock_t* rwlock)
195 .. c:function:: void uv_rwlock_wrlock(uv_rwlock_t* rwlock)
196 .. c:function:: int uv_rwlock_trywrlock(uv_rwlock_t* rwlock)
197 .. c:function:: void uv_rwlock_wrunlock(uv_rwlock_t* rwlock)
205 .. c:function:: int uv_sem_init(uv_sem_t* sem, unsigned int value)
206 .. c:function:: void uv_sem_destroy(uv_sem_t* sem)
207 .. c:function:: void uv_sem_post(uv_sem_t* sem)
208 .. c:function:: void uv_sem_wait(uv_sem_t* sem)
209 .. c:function:: int uv_sem_trywait(uv_sem_t* sem)
221 at which function is called.
228 .. c:function:: int uv_cond_init(uv_cond_t* cond)
229 .. c:function:: void uv_cond_destroy(uv_cond_t* cond)
230 .. c:function:: void uv_cond_signal(uv_cond_t* cond)
231 .. c:function:: void uv_cond_broadcast(uv_cond_t* cond)
232 .. c:function:: void uv_cond_wait(uv_cond_t* cond, uv_mutex_t* mutex)
233 .. c:function:: int uv_cond_timedwait(uv_cond_t* cond, uv_mutex_t* mutex, uint64_t timeout)
250 .. c:function:: int uv_barrier_init(uv_barrier_t* barrier, unsigned int count)
251 .. c:function:: void uv_barrier_destroy(uv_barrier_t* barrier)
252 .. c:function:: int uv_barrier_wait(uv_barrier_t* barrier)