ecf               423 event/modules/ngx_poll_module.c     ngx_event_conf_t  *ecf;
ecf               425 event/modules/ngx_poll_module.c     ecf = ngx_event_get_conf(cycle->conf_ctx, ngx_event_core_module);
ecf               427 event/modules/ngx_poll_module.c     if (ecf->use != ngx_poll_module.ctx_index) {
ecf               406 event/modules/ngx_select_module.c     ngx_event_conf_t  *ecf;
ecf               408 event/modules/ngx_select_module.c     ecf = ngx_event_get_conf(cycle->conf_ctx, ngx_event_core_module);
ecf               410 event/modules/ngx_select_module.c     if (ecf->use != ngx_select_module.ctx_index) {
ecf               390 event/modules/ngx_win32_select_module.c     ngx_event_conf_t  *ecf;
ecf               392 event/modules/ngx_win32_select_module.c     ecf = ngx_event_get_conf(cycle->conf_ctx, ngx_event_core_module);
ecf               394 event/modules/ngx_win32_select_module.c     if (ecf->use != ngx_select_module.ctx_index) {
ecf               434 event/ngx_event.c     ngx_event_conf_t    *ecf;
ecf               444 event/ngx_event.c     ecf = (*cf)[ngx_event_core_module.ctx_index];
ecf               448 event/ngx_event.c                       "using the \"%s\" event method", ecf->name);
ecf               465 event/ngx_event.c         if (ecf->connections > (ngx_uint_t) rlmt.rlim_cur
ecf               467 event/ngx_event.c                 || ecf->connections > (ngx_uint_t) ccf->rlimit_nofile))
ecf               475 event/ngx_event.c                           ecf->connections, limit);
ecf               581 event/ngx_event.c     ngx_event_conf_t    *ecf;
ecf               585 event/ngx_event.c     ecf = ngx_event_get_conf(cycle->conf_ctx, ngx_event_core_module);
ecf               587 event/ngx_event.c     if (ccf->master && ccf->worker_processes > 1 && ecf->accept_mutex) {
ecf               590 event/ngx_event.c         ngx_accept_mutex_delay = ecf->accept_mutex_delay;
ecf               612 event/ngx_event.c         if (ngx_modules[m]->ctx_index != ecf->use) {
ecf               957 event/ngx_event.c     ngx_event_conf_t  *ecf = conf;
ecf               961 event/ngx_event.c     if (ecf->connections != NGX_CONF_UNSET_UINT) {
ecf               972 event/ngx_event.c     ecf->connections = ngx_atoi(value[1].data, value[1].len);
ecf               973 event/ngx_event.c     if (ecf->connections == (ngx_uint_t) NGX_ERROR) {
ecf               980 event/ngx_event.c     cf->cycle->connection_n = ecf->connections;
ecf               989 event/ngx_event.c     ngx_event_conf_t  *ecf = conf;
ecf               996 event/ngx_event.c     if (ecf->use != NGX_CONF_UNSET_UINT) {
ecf              1018 event/ngx_event.c                 ecf->use = ngx_modules[m]->ctx_index;
ecf              1019 event/ngx_event.c                 ecf->name = module->name->data;
ecf              1023 event/ngx_event.c                     && old_ecf->use != ecf->use)
ecf              1053 event/ngx_event.c     ngx_event_conf_t  *ecf = conf;
ecf              1063 event/ngx_event.c     dc = ngx_array_push(&ecf->debug_connection);
ecf              1118 event/ngx_event.c     ngx_event_conf_t  *ecf;
ecf              1120 event/ngx_event.c     ecf = ngx_palloc(cycle->pool, sizeof(ngx_event_conf_t));
ecf              1121 event/ngx_event.c     if (ecf == NULL) {
ecf              1125 event/ngx_event.c     ecf->connections = NGX_CONF_UNSET_UINT;
ecf              1126 event/ngx_event.c     ecf->use = NGX_CONF_UNSET_UINT;
ecf              1127 event/ngx_event.c     ecf->multi_accept = NGX_CONF_UNSET;
ecf              1128 event/ngx_event.c     ecf->accept_mutex = NGX_CONF_UNSET;
ecf              1129 event/ngx_event.c     ecf->accept_mutex_delay = NGX_CONF_UNSET_MSEC;
ecf              1130 event/ngx_event.c     ecf->name = (void *) NGX_CONF_UNSET;
ecf              1134 event/ngx_event.c     if (ngx_array_init(&ecf->debug_connection, cycle->pool, 4,
ecf              1142 event/ngx_event.c     return ecf;
ecf              1149 event/ngx_event.c     ngx_event_conf_t  *ecf = conf;
ecf              1234 event/ngx_event.c     ngx_conf_init_uint_value(ecf->connections, DEFAULT_CONNECTIONS);
ecf              1235 event/ngx_event.c     cycle->connection_n = ecf->connections;
ecf              1237 event/ngx_event.c     ngx_conf_init_uint_value(ecf->use, module->ctx_index);
ecf              1240 event/ngx_event.c     ngx_conf_init_ptr_value(ecf->name, event_module->name->data);
ecf              1242 event/ngx_event.c     ngx_conf_init_value(ecf->multi_accept, 0);
ecf              1243 event/ngx_event.c     ngx_conf_init_value(ecf->accept_mutex, 1);
ecf              1244 event/ngx_event.c     ngx_conf_init_msec_value(ecf->accept_mutex_delay, 500);
ecf              1253 event/ngx_event.c     if (ecf->accept_mutex) {
ecf                27 event/ngx_event_accept.c     ngx_event_conf_t  *ecf;
ecf                33 event/ngx_event_accept.c     ecf = ngx_event_get_conf(ngx_cycle->conf_ctx, ngx_event_core_module);
ecf                39 event/ngx_event_accept.c         ev->available = ecf->multi_accept;
ecf               259 event/ngx_event_accept.c         dc = ecf->debug_connection.elts;
ecf               260 event/ngx_event_accept.c         for (i = 0; i < ecf->debug_connection.nelts; i++) {