| /f-stack/app/nginx-1.16.1/src/http/ |
| H A D | ngx_http_config.h | 69 (cycle->conf_ctx[ngx_http_module.index] ? \ 70 ((ngx_http_conf_ctx_t *) cycle->conf_ctx[ngx_http_module.index]) \
|
| H A D | ngx_http_request.c | 304 hc->conf_ctx = hc->addr_conf->default_server->ctx; in ngx_http_init_connection() 337 sscf = ngx_http_get_module_srv_conf(hc->conf_ctx, ngx_http_ssl_module); in ngx_http_init_connection() 401 cscf = ngx_http_get_module_srv_conf(hc->conf_ctx, ngx_http_core_module); in ngx_http_wait_request_handler() 548 cscf = ngx_http_get_module_srv_conf(hc->conf_ctx, ngx_http_core_module); in ngx_http_alloc_request() 567 r->main_conf = hc->conf_ctx->main_conf; in ngx_http_alloc_request() 568 r->srv_conf = hc->conf_ctx->srv_conf; in ngx_http_alloc_request() 569 r->loc_conf = hc->conf_ctx->loc_conf; in ngx_http_alloc_request() 733 clcf = ngx_http_get_module_loc_conf(hc->conf_ctx, in ngx_http_ssl_handshake() 741 sscf = ngx_http_get_module_srv_conf(hc->conf_ctx, in ngx_http_ssl_handshake() 924 hc->conf_ctx = cscf->ctx; in ngx_http_ssl_servername() [all …]
|
| H A D | ngx_http_request.h | 311 ngx_http_conf_ctx_t *conf_ctx; member
|
| /f-stack/app/nginx-1.16.1/src/core/ |
| H A D | ngx_cycle.h | 40 void ****conf_ctx; member 128 #define ngx_is_init_cycle(cycle) (cycle->conf_ctx == NULL)
|
| H A D | ngx_cycle.c | 189 cycle->conf_ctx = ngx_pcalloc(pool, ngx_max_module * sizeof(void *)); in ngx_init_cycle() 190 if (cycle->conf_ctx == NULL) { in ngx_init_cycle() 235 cycle->conf_ctx[cycle->modules[i]->index] = rv; in ngx_init_cycle() 258 conf.ctx = cycle->conf_ctx; in ngx_init_cycle() 295 cycle->conf_ctx[cycle->modules[i]->index]) in ngx_init_cycle() 309 ccf = (ngx_core_conf_t *) ngx_get_conf(cycle->conf_ctx, ngx_core_module); in ngx_init_cycle() 324 old_ccf = (ngx_core_conf_t *) ngx_get_conf(old_cycle->conf_ctx, in ngx_init_cycle() 812 old_ccf = (ngx_core_conf_t *) ngx_get_conf(old_cycle->conf_ctx, in ngx_init_cycle() 1058 ccf = (ngx_core_conf_t *) ngx_get_conf(cycle->conf_ctx, ngx_core_module); in ngx_delete_pidfile() 1080 ccf = (ngx_core_conf_t *) ngx_get_conf(cycle->conf_ctx, ngx_core_module); in ngx_signal_process() [all …]
|
| H A D | ngx_thread_pool.c | 543 tcf = (ngx_thread_pool_conf_t *) ngx_get_conf(cf->cycle->conf_ctx, in ngx_thread_pool_add() 564 tcf = (ngx_thread_pool_conf_t *) ngx_get_conf(cycle->conf_ctx, in ngx_thread_pool_get() 595 tcf = (ngx_thread_pool_conf_t *) ngx_get_conf(cycle->conf_ctx, in ngx_thread_pool_init_worker() 629 tcf = (ngx_thread_pool_conf_t *) ngx_get_conf(cycle->conf_ctx, in ngx_thread_pool_exit_worker()
|
| H A D | ngx_conf_file.h | 176 #define ngx_get_conf(conf_ctx, module) conf_ctx[module.index] argument
|
| H A D | nginx.c | 355 ccf = (ngx_core_conf_t *) ngx_get_conf(cycle->conf_ctx, ngx_core_module); in main() 539 ccf = (ngx_core_conf_t *) ngx_get_conf(cycle->conf_ctx, ngx_core_module); in ngx_set_environment() 727 ccf = (ngx_core_conf_t *) ngx_get_conf(cycle->conf_ctx, ngx_core_module); in ngx_exec_new_binary() 1450 ccf = (ngx_core_conf_t *) ngx_get_conf(ngx_cycle->conf_ctx, in ngx_get_cpu_affinity()
|
| H A D | ngx_module.c | 271 cf->cycle->conf_ctx[module->index] = rv; in ngx_add_module()
|
| H A D | ngx_regex.c | 302 rcf = (ngx_regex_conf_t *) ngx_get_conf(cycle->conf_ctx, ngx_regex_module); in ngx_regex_module_init()
|
| /f-stack/app/nginx-1.16.1/src/event/ |
| H A D | ngx_event.c | 452 if (ngx_get_conf(cycle->conf_ctx, ngx_events_module) == NULL) { in ngx_event_init_conf() 508 cf = ngx_get_conf(cycle->conf_ctx, ngx_events_module); in ngx_event_module_init() 516 ccf = (ngx_core_conf_t *) ngx_get_conf(cycle->conf_ctx, ngx_core_module); in ngx_event_module_init() 661 ccf = (ngx_core_conf_t *) ngx_get_conf(cycle->conf_ctx, ngx_core_module); in ngx_event_process_init() 662 ecf = ngx_event_get_conf(cycle->conf_ctx, ngx_event_core_module); in ngx_event_process_init() 902 iocpcf = ngx_event_get_conf(cycle->conf_ctx, ngx_iocp_module); in ngx_event_process_init() 1125 if (cf->cycle->old_cycle->conf_ctx) { in ngx_event_use() 1126 old_ecf = ngx_event_get_conf(cf->cycle->old_cycle->conf_ctx, in ngx_event_use()
|
| H A D | ngx_event.h | 553 #define ngx_event_get_conf(conf_ctx, module) \ argument 554 (*(ngx_get_conf(conf_ctx, ngx_events_module))) [module.ctx_index]
|
| H A D | ngx_event_accept.c | 42 ecf = ngx_event_get_conf(ngx_cycle->conf_ctx, ngx_event_core_module);
|
| /f-stack/app/nginx-1.16.1/src/stream/ |
| H A D | ngx_stream.h | 276 (cycle->conf_ctx[ngx_stream_module.index] ? \ 277 ((ngx_stream_conf_ctx_t *) cycle->conf_ctx[ngx_stream_module.index]) \
|
| /f-stack/app/nginx-1.16.1/src/misc/ |
| H A D | ngx_google_perftools_module.c | 93 ngx_get_conf(cycle->conf_ctx, ngx_google_perftools_module); in ngx_google_perftools_worker()
|
| /f-stack/app/nginx-1.16.1/src/os/unix/ |
| H A D | ngx_process_cycle.c | 143 ccf = (ngx_core_conf_t *) ngx_get_conf(cycle->conf_ctx, ngx_core_module); in ngx_master_process_cycle() 271 ccf = (ngx_core_conf_t *) ngx_get_conf(cycle->conf_ctx, in ngx_master_process_cycle() 373 ccf = (ngx_core_conf_t *) ngx_get_conf(cycle->conf_ctx, ngx_core_module); in ngx_single_process_cycle() 819 ccf = (ngx_core_conf_t *) ngx_get_conf(cycle->conf_ctx, in ngx_reap_children() 1017 ccf = (ngx_core_conf_t *) ngx_get_conf(cycle->conf_ctx, ngx_core_module); in ngx_worker_process_init()
|
| H A D | ngx_process.c | 616 ccf = (ngx_core_conf_t *) ngx_get_conf(ngx_cycle->conf_ctx, in ngx_debug_point()
|
| /f-stack/app/nginx-1.16.1/src/http/v2/ |
| H A D | ngx_http_v2.c | 246 h2mcf = ngx_http_get_module_main_conf(hc->conf_ctx, ngx_http_v2_module); in ngx_http_v2_init() 273 h2scf = ngx_http_get_module_srv_conf(hc->conf_ctx, ngx_http_v2_module); in ngx_http_v2_init() 378 h2mcf = ngx_http_get_module_main_conf(h2c->http_connection->conf_ctx, in ngx_http_v2_read_handler() 542 clcf = ngx_http_get_module_loc_conf(h2c->http_connection->conf_ctx, in ngx_http_v2_send_output_queue() 655 h2scf = ngx_http_get_module_srv_conf(h2c->http_connection->conf_ctx, in ngx_http_v2_handle_connection() 1119 h2scf = ngx_http_get_module_srv_conf(h2c->http_connection->conf_ctx, in ngx_http_v2_state_headers() 1352 h2scf = ngx_http_get_module_srv_conf(h2c->http_connection->conf_ctx, in ngx_http_v2_state_field_len() 2772 h2scf = ngx_http_get_module_srv_conf(h2c->http_connection->conf_ctx, in ngx_http_v2_send_settings() 3145 h2scf = ngx_http_get_module_srv_conf(h2c->http_connection->conf_ctx, in ngx_http_v2_get_node_by_id() 3190 h2scf = ngx_http_get_module_srv_conf(h2c->http_connection->conf_ctx, in ngx_http_v2_get_closed_node() [all …]
|
| /f-stack/app/nginx-1.16.1/src/event/modules/ |
| H A D | ngx_poll_module.c | 408 ecf = ngx_event_get_conf(cycle->conf_ctx, ngx_event_core_module); in ngx_poll_init_conf()
|
| H A D | ngx_select_module.c | 415 ecf = ngx_event_get_conf(cycle->conf_ctx, ngx_event_core_module); in ngx_select_init_conf()
|
| H A D | ngx_win32_select_module.c | 400 ecf = ngx_event_get_conf(cycle->conf_ctx, ngx_event_core_module); in ngx_select_init_conf()
|
| H A D | ngx_win32_poll_module.c | 418 ecf = ngx_event_get_conf(cycle->conf_ctx, ngx_event_core_module); in ngx_poll_init_conf()
|
| H A D | ngx_devpoll_module.c | 123 dpcf = ngx_event_get_conf(cycle->conf_ctx, ngx_devpoll_module); in ngx_devpoll_init()
|
| H A D | ngx_eventport_module.c | 218 epcf = ngx_event_get_conf(cycle->conf_ctx, ngx_eventport_module); in ngx_eventport_init()
|
| H A D | ngx_kqueue_module.c | 136 kcf = ngx_event_get_conf(cycle->conf_ctx, ngx_kqueue_module); in ngx_kqueue_init()
|