HomeSort by: relevance | last modified time | path
    Searched refs:after_work_cb (Results 1 - 13 of 13) sorted by relevancy

  /src/external/mpl/bind/dist/lib/isc/
work.c 49 work->after_work_cb(work->cbarg);
58 isc_after_work_cb after_work_cb, void *cbarg) {
64 REQUIRE(after_work_cb != NULL);
69 .after_work_cb = after_work_cb,
loop_p.h 146 isc_after_work_cb after_work_cb; member in struct:isc_work
  /src/external/mit/libuv/dist/test/
benchmark-queue-work.c 40 static void after_work_cb(uv_work_t* req, int status) { function
43 ASSERT_EQ(0, uv_queue_work(req->loop, req, work_cb, after_work_cb));
60 ASSERT_EQ(0, uv_queue_work(loop, &work, work_cb, after_work_cb));
test-threadpool.c 38 static void after_work_cb(uv_work_t* req, int status) { function
50 r = uv_queue_work(uv_default_loop(), &work_req, work_cb, after_work_cb);
66 r = uv_queue_work(uv_default_loop(), &work_req, NULL, after_work_cb);
test-loop-alive.c 38 static void after_work_cb(uv_work_t* req, int status) { function
58 r = uv_queue_work(uv_default_loop(), &work_req, work_cb, after_work_cb);
test-thread-name.c 167 static void after_work_cb(uv_work_t* req, int status) { function
177 uv_queue_work(loop, req, work_cb, after_work_cb);
189 ASSERT_OK(uv_queue_work(loop, &req, work_cb, after_work_cb));
test-fork.c 693 static void after_work_cb(uv_work_t* req, int status) { function
706 r = uv_queue_work(loop, &work_req, work_cb, after_work_cb);
  /src/external/mpl/bind/dist/lib/isc/include/isc/
work.h 31 isc_after_work_cb after_work_cb, void *cbarg);
35 * thread pool; when complete, the `after_work_cb` function will run
40 * \li 'work_cb' and 'after_work_cb' are not NULL.
  /src/external/mpl/bind/dist/tests/isc/
work_test.c 53 after_work_cb(void *arg) { function
67 isc_work_enqueue(loop, work_cb, after_work_cb, loopmgr);
  /src/external/mit/libuv/dist/src/
threadpool.c 362 if (req->after_work_cb == NULL)
365 req->after_work_cb(req, err);
372 uv_after_work_cb after_work_cb) {
379 req->after_work_cb = after_work_cb;
  /src/external/mpl/dhcp/bind/dist/lib/isc/include/isc/
netmgr.h 505 isc_nm_after_workcb_t after_work_cb, void *data);
509 * thread pool; when complete, the `after_work_cb` function will run.
  /src/external/mit/libuv/dist/include/
uv.h 1185 uv_after_work_cb after_work_cb; member in struct:uv_work_s
1192 uv_after_work_cb after_work_cb);
  /src/external/mpl/dhcp/bind/dist/lib/isc/netmgr/
netmgr.c 3202 isc_nm_after_workcb_t after_work_cb, void *data) {
3215 .after_cb = after_work_cb,

Completed in 37 milliseconds