/unit/src/ |
H A D | nxt_timer.h | 34 nxt_msec_t time; 57 nxt_msec_t time; 66 nxt_msec_t now; 67 nxt_msec_t minimum; 96 nxt_msec_t nxt_timer_find(nxt_event_engine_t *engine); 97 void nxt_timer_expire(nxt_event_engine_t *engine, nxt_msec_t now); 100 nxt_msec_t timeout);
|
H A D | nxt_router.h | 133 nxt_msec_t timeout; 134 nxt_msec_t idle_timeout; 158 nxt_msec_t read_timeout; 159 nxt_msec_t keepalive_interval; 188 nxt_msec_t idle_timeout; 189 nxt_msec_t header_read_timeout; 190 nxt_msec_t body_read_timeout; 191 nxt_msec_t send_timeout; 192 nxt_msec_t proxy_timeout; 193 nxt_msec_t proxy_send_timeout; [all …]
|
H A D | nxt_conn.h | 12 typedef nxt_msec_t (*nxt_conn_timer_value_t)(nxt_conn_t *c, uintptr_t data); 35 nxt_msec_t last; 313 nxt_msec_t client_wait_timeout; 314 nxt_msec_t connect_timeout; 315 nxt_msec_t reconnect_timeout; 316 nxt_msec_t peer_wait_timeout; 317 nxt_msec_t client_write_timeout; 318 nxt_msec_t peer_write_timeout;
|
H A D | nxt_timer.c | 25 nxt_timer_operation_t change, nxt_msec_t time); 71 nxt_msec_t timeout) in nxt_timer_add() 127 nxt_timer_operation_t change, nxt_msec_t time) in nxt_timer_change() 228 nxt_msec_t 232 nxt_msec_t time; in nxt_timer_find() 269 return (nxt_msec_t) nxt_max(delta, 0); in nxt_timer_find() 281 nxt_timer_expire(nxt_event_engine_t *engine, nxt_msec_t now) in nxt_timer_expire()
|
H A D | nxt_time.h | 93 typedef uint32_t nxt_msec_t; typedef 95 #define NXT_INFINITE_MSEC ((nxt_msec_t) -1)
|
H A D | nxt_thread_time.h | 34 nxt_msec_t last_msec; 70 void nxt_time_thread_start(nxt_msec_t interval);
|
H A D | nxt_fiber.h | 51 void nxt_fiber_sleep(nxt_task_t *task, nxt_msec_t timeout);
|
H A D | nxt_cache.h | 111 nxt_msec_t timeout;
|
H A D | nxt_sprintf.c | 108 nxt_msec_t ms; in nxt_vsprintf() 280 ms = (nxt_msec_t) va_arg(args, nxt_msec_t); in nxt_vsprintf()
|
H A D | nxt_thread_time.c | 83 nxt_time_thread_start(nxt_msec_t interval) in nxt_time_thread_start() 263 nxt_msec_t ms; in nxt_thread_time_string()
|
H A D | nxt_select_engine.c | 34 static void nxt_select_poll(nxt_event_engine_t *engine, nxt_msec_t timeout); 280 nxt_select_poll(nxt_event_engine_t *engine, nxt_msec_t timeout) in nxt_select_poll()
|
H A D | nxt_conn.c | 108 nxt_msec_t value; in nxt_conn_timer()
|
H A D | nxt_h1proto.c | 70 static nxt_msec_t nxt_h1p_conn_timer_value(nxt_conn_t *c, uintptr_t data); 81 static nxt_msec_t nxt_h1p_idle_response_timer_value(nxt_conn_t *c, 107 static nxt_msec_t nxt_h1p_peer_timer_value(nxt_conn_t *c, uintptr_t data); 1662 nxt_msec_t 1669 return nxt_value_at(nxt_msec_t, h1p->request->conf->socket_conf, data); in nxt_h1p_conn_request_timer_value() 1763 static nxt_msec_t 1771 return nxt_value_at(nxt_msec_t, joint->socket_conf, data); in nxt_h1p_conn_timer_value() 1992 static nxt_msec_t 2803 static nxt_msec_t 2810 return nxt_value_at(nxt_msec_t, peer->request->conf->socket_conf, data); in nxt_h1p_peer_timer_value()
|
H A D | nxt_http.h | 81 nxt_msec_t keepalive_interval; 418 nxt_msec_t nxt_h1p_conn_request_timer_value(nxt_conn_t *c, uintptr_t data);
|
H A D | nxt_eventport_engine.c | 55 nxt_msec_t timeout); 451 nxt_eventport_poll(nxt_event_engine_t *engine, nxt_msec_t timeout) in nxt_eventport_poll()
|
H A D | nxt_conn_proxy.c | 37 static nxt_msec_t nxt_conn_proxy_timeout_value(nxt_conn_t *c, uintptr_t data); 782 static nxt_msec_t 785 return nxt_value_at(nxt_msec_t, c->socket.data, data); in nxt_conn_proxy_timeout_value()
|
H A D | nxt_poll_engine.c | 60 static void nxt_poll(nxt_event_engine_t *engine, nxt_msec_t timeout); 500 nxt_poll(nxt_event_engine_t *engine, nxt_msec_t timeout) in nxt_poll()
|
H A D | nxt_pollset_engine.c | 56 static void nxt_pollset_poll(nxt_event_engine_t *engine, nxt_msec_t timeout); 545 nxt_pollset_poll(nxt_event_engine_t *engine, nxt_msec_t timeout) in nxt_pollset_poll()
|
H A D | nxt_devpoll_engine.c | 62 nxt_msec_t timeout); 556 nxt_devpoll_poll(nxt_event_engine_t *engine, nxt_msec_t timeout) in nxt_devpoll_poll()
|
H A D | nxt_event_engine.h | 157 nxt_msec_t timeout);
|
H A D | nxt_port.h | 233 nxt_msec_t idle_start;
|
H A D | nxt_fiber.c | 385 nxt_fiber_sleep(nxt_task_t *task, nxt_msec_t timeout) in nxt_fiber_sleep()
|
/unit/src/test/ |
H A D | nxt_tests.h | 11 typedef nxt_bool_t (*nxt_msec_less_t)(nxt_msec_t first, nxt_msec_t second);
|
H A D | nxt_tests.c | 19 nxt_msec_less(nxt_msec_t first, nxt_msec_t second) in nxt_msec_less()
|
H A D | nxt_msec_diff_test.c | 11 static const nxt_msec_t pairs[] = {
|