Home
last modified time | relevance | path

Searched refs:conf_ctx (Results 1 – 25 of 31) sorted by relevance

12

/f-stack/app/nginx-1.16.1/src/http/
H A Dngx_http_config.h69 (cycle->conf_ctx[ngx_http_module.index] ? \
70 ((ngx_http_conf_ctx_t *) cycle->conf_ctx[ngx_http_module.index]) \
H A Dngx_http_request.c304 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 Dngx_http_request.h311 ngx_http_conf_ctx_t *conf_ctx; member
/f-stack/app/nginx-1.16.1/src/core/
H A Dngx_cycle.h40 void ****conf_ctx; member
128 #define ngx_is_init_cycle(cycle) (cycle->conf_ctx == NULL)
H A Dngx_cycle.c189 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 Dngx_thread_pool.c543 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 Dngx_conf_file.h176 #define ngx_get_conf(conf_ctx, module) conf_ctx[module.index] argument
H A Dnginx.c355 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 Dngx_module.c271 cf->cycle->conf_ctx[module->index] = rv; in ngx_add_module()
H A Dngx_regex.c302 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 Dngx_event.c452 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 Dngx_event.h553 #define ngx_event_get_conf(conf_ctx, module) \ argument
554 (*(ngx_get_conf(conf_ctx, ngx_events_module))) [module.ctx_index]
H A Dngx_event_accept.c42 ecf = ngx_event_get_conf(ngx_cycle->conf_ctx, ngx_event_core_module);
/f-stack/app/nginx-1.16.1/src/stream/
H A Dngx_stream.h276 (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 Dngx_google_perftools_module.c93 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 Dngx_process_cycle.c143 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 Dngx_process.c616 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 Dngx_http_v2.c246 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 Dngx_poll_module.c408 ecf = ngx_event_get_conf(cycle->conf_ctx, ngx_event_core_module); in ngx_poll_init_conf()
H A Dngx_select_module.c415 ecf = ngx_event_get_conf(cycle->conf_ctx, ngx_event_core_module); in ngx_select_init_conf()
H A Dngx_win32_select_module.c400 ecf = ngx_event_get_conf(cycle->conf_ctx, ngx_event_core_module); in ngx_select_init_conf()
H A Dngx_win32_poll_module.c418 ecf = ngx_event_get_conf(cycle->conf_ctx, ngx_event_core_module); in ngx_poll_init_conf()
H A Dngx_devpoll_module.c123 dpcf = ngx_event_get_conf(cycle->conf_ctx, ngx_devpoll_module); in ngx_devpoll_init()
H A Dngx_eventport_module.c218 epcf = ngx_event_get_conf(cycle->conf_ctx, ngx_eventport_module); in ngx_eventport_init()
H A Dngx_kqueue_module.c136 kcf = ngx_event_get_conf(cycle->conf_ctx, ngx_kqueue_module); in ngx_kqueue_init()

12