Home
last modified time | relevance | path

Searched refs:lws_threadpool_task (Results 1 – 3 of 3) sorted by relevance

/third_party/libwebsockets/include/libwebsockets/
Dlws-threadpool.h39 struct lws_threadpool_task;
164 LWS_VISIBLE LWS_EXTERN struct lws_threadpool_task *
190 lws_threadpool_dequeue_task(struct lws_threadpool_task *task);
216 struct lws_threadpool_task **task, void **user)
220 lws_threadpool_task_status(struct lws_threadpool_task *task, void **user);
223 lws_threadpool_task_status_noreap(struct lws_threadpool_task *task);
238 lws_threadpool_task_sync(struct lws_threadpool_task *task, int stop);
259 LWS_VISIBLE LWS_EXTERN struct lws_threadpool_task *
263 LWS_VISIBLE LWS_EXTERN struct lws_threadpool_task *
270 int (*cb)(struct lws_threadpool_task *task,
[all …]
/third_party/libwebsockets/lib/misc/threadpool/
Dthreadpool.c44 struct lws_threadpool_task { struct
45 struct lws_threadpool_task *task_queue_next; argument
75 struct lws_threadpool_task *task; argument
88 struct lws_threadpool_task *task_queue_head;
89 struct lws_threadpool_task *task_done_head;
125 __lws_threadpool_task_dump(struct lws_threadpool_task *task, char *buf, int len) in __lws_threadpool_task_dump()
176 struct lws_threadpool_task **c; in lws_threadpool_dump()
189 struct lws_threadpool_task *task = *c; in lws_threadpool_dump()
204 struct lws_threadpool_task *task = pool->task; in lws_threadpool_dump()
220 struct lws_threadpool_task *task = *c; in lws_threadpool_dump()
[all …]
/third_party/libwebsockets/minimal-examples/ws-server/minimal-ws-server-threadpool/
Dprotocol_lws_minimal_threadpool.c165 struct lws_threadpool_task *task; in callback_minimal()