Home
last modified time | relevance | path

Searched refs:remove_port (Results 1 – 6 of 6) sorted by path

/unit/go/
H A Dnxt_cgo_lib.c29 init.callbacks.remove_port = nxt_go_remove_port; in nxt_cgo_run()
/unit/src/nodejs/unit-http/
H A Dunit.cpp274 unit_init.callbacks.remove_port = remove_port; in create_server()
522 Unit::remove_port(nxt_unit_t *unit, nxt_unit_ctx_t *ctx, nxt_unit_port_t *port) in remove_port() function in Unit
H A Dunit.h44 static void remove_port(nxt_unit_t *unit, nxt_unit_ctx_t *ctx,
/unit/src/
H A Dnxt_unit.c5665 if (lib->callbacks.remove_port != NULL && port != NULL) { in nxt_unit_remove_port()
5666 lib->callbacks.remove_port(&lib->unit, ctx, port); in nxt_unit_remove_port()
5742 if (lib->callbacks.remove_port != NULL) { in nxt_unit_remove_process()
5743 lib->callbacks.remove_port(&lib->unit, NULL, &port->port); in nxt_unit_remove_process()
5787 if (cb->remove_port != NULL) { in nxt_unit_quit()
5788 cb->remove_port(&lib->unit, ctx, lib->shared_port); in nxt_unit_quit()
H A Dnxt_unit.h139 void (*remove_port)(nxt_unit_t *, nxt_unit_ctx_t *, member
/unit/src/python/
H A Dnxt_python_asgi.c198 init->callbacks.remove_port = nxt_py_asgi_remove_port; in nxt_python_asgi_init()