ngx_pcalloc       920 src/core/nginx.c     ccf = ngx_pcalloc(cycle->pool, sizeof(ngx_core_conf_t));
ngx_pcalloc       154 src/core/ngx_buf.h #define ngx_calloc_buf(pool) ngx_pcalloc(pool, sizeof(ngx_buf_t))
ngx_pcalloc        72 src/core/ngx_cycle.c     cycle = ngx_pcalloc(pool, sizeof(ngx_cycle_t));
ngx_pcalloc       115 src/core/ngx_cycle.c     cycle->paths.elts = ngx_pcalloc(pool, n * sizeof(ngx_path_t *));
ngx_pcalloc       165 src/core/ngx_cycle.c     cycle->listening.elts = ngx_pcalloc(pool, n * sizeof(ngx_listening_t));
ngx_pcalloc       180 src/core/ngx_cycle.c     cycle->conf_ctx = ngx_pcalloc(pool, ngx_max_module * sizeof(void *));
ngx_pcalloc       762 src/core/ngx_cycle.c         ngx_old_cycles.elts = ngx_pcalloc(ngx_temp_pool,
ngx_pcalloc       345 src/core/ngx_file.c     path = ngx_pcalloc(cf->pool, sizeof(ngx_path_t));
ngx_pcalloc       402 src/core/ngx_file.c     *path = ngx_pcalloc(cf->pool, sizeof(ngx_path_t));
ngx_pcalloc       352 src/core/ngx_hash.c         hinit->hash = ngx_pcalloc(hinit->pool, sizeof(ngx_hash_wildcard_t)
ngx_pcalloc       363 src/core/ngx_hash.c         buckets = ngx_pcalloc(hinit->pool, size * sizeof(ngx_hash_elt_t *));
ngx_pcalloc       684 src/core/ngx_hash.c     ha->keys_hash = ngx_pcalloc(ha->temp_pool, sizeof(ngx_array_t) * ha->hsize);
ngx_pcalloc       689 src/core/ngx_hash.c     ha->dns_wc_head_hash = ngx_pcalloc(ha->temp_pool,
ngx_pcalloc       695 src/core/ngx_hash.c     ha->dns_wc_tail_hash = ngx_pcalloc(ha->temp_pool,
ngx_pcalloc       501 src/core/ngx_inet.c     addr->sockaddr = ngx_pcalloc(pool, len);
ngx_pcalloc       592 src/core/ngx_inet.c     u->addrs = ngx_pcalloc(pool, sizeof(ngx_addr_t));
ngx_pcalloc       597 src/core/ngx_inet.c     saun = ngx_pcalloc(pool, sizeof(struct sockaddr_un));
ngx_pcalloc       754 src/core/ngx_inet.c         u->addrs = ngx_pcalloc(pool, sizeof(ngx_addr_t));
ngx_pcalloc       759 src/core/ngx_inet.c         sin = ngx_pcalloc(pool, sizeof(struct sockaddr_in));
ngx_pcalloc       909 src/core/ngx_inet.c     u->addrs = ngx_pcalloc(pool, sizeof(ngx_addr_t));
ngx_pcalloc       914 src/core/ngx_inet.c     sin6 = ngx_pcalloc(pool, sizeof(struct sockaddr_in6));
ngx_pcalloc      1004 src/core/ngx_inet.c     u->addrs = ngx_pcalloc(pool, i * sizeof(ngx_addr_t));
ngx_pcalloc      1021 src/core/ngx_inet.c         sin = ngx_pcalloc(pool, rp->ai_addrlen);
ngx_pcalloc      1054 src/core/ngx_inet.c         sin6 = ngx_pcalloc(pool, rp->ai_addrlen);
ngx_pcalloc      1131 src/core/ngx_inet.c         u->addrs = ngx_pcalloc(pool, i * sizeof(ngx_addr_t));
ngx_pcalloc      1140 src/core/ngx_inet.c             sin = ngx_pcalloc(pool, sizeof(struct sockaddr_in));
ngx_pcalloc      1170 src/core/ngx_inet.c         u->addrs = ngx_pcalloc(pool, sizeof(ngx_addr_t));
ngx_pcalloc      1175 src/core/ngx_inet.c         sin = ngx_pcalloc(pool, sizeof(struct sockaddr_in));
ngx_pcalloc       416 src/core/ngx_log.c         log = ngx_pcalloc(cycle->pool, sizeof(ngx_log_t));
ngx_pcalloc       567 src/core/ngx_log.c         new_log = ngx_pcalloc(cf->pool, sizeof(ngx_log_t));
ngx_pcalloc       612 src/core/ngx_log.c         buf = ngx_pcalloc(cf->pool, sizeof(ngx_log_memory_buf_t));
ngx_pcalloc       648 src/core/ngx_log.c         peer = ngx_pcalloc(cf->pool, sizeof(ngx_syslog_peer_t));
ngx_pcalloc        84 src/core/ngx_palloc.h void *ngx_pcalloc(ngx_pool_t *pool, size_t size);
ngx_pcalloc       128 src/core/ngx_regex.c     rc->regex = ngx_pcalloc(rc->pool, sizeof(ngx_regex_t));
ngx_pcalloc       379 src/core/ngx_regex.c     rcf = ngx_pcalloc(cycle->pool, sizeof(ngx_regex_conf_t));
ngx_pcalloc       212 src/core/ngx_thread_pool.c     task = ngx_pcalloc(pool, sizeof(ngx_thread_task_t) + size);
ngx_pcalloc       391 src/core/ngx_thread_pool.c     tcf = ngx_pcalloc(cycle->pool, sizeof(ngx_thread_pool_conf_t));
ngx_pcalloc       523 src/core/ngx_thread_pool.c     tp = ngx_pcalloc(cf->pool, sizeof(ngx_thread_pool_t));
ngx_pcalloc       894 src/event/ngx_event.c     ctx = ngx_pcalloc(cf->pool, sizeof(void *));
ngx_pcalloc       899 src/event/ngx_event.c     *ctx = ngx_pcalloc(cf->pool, ngx_event_max_module * sizeof(void *));
ngx_pcalloc      1033 src/event/ngx_event_openssl.c     sc = ngx_pcalloc(c->pool, sizeof(ngx_ssl_connection_t));
ngx_pcalloc      3465 src/event/ngx_event_openssl.c     oscf = ngx_pcalloc(cycle->pool, sizeof(ngx_openssl_conf_t));
ngx_pcalloc       125 src/event/ngx_event_openssl_stapling.c     staple = ngx_pcalloc(cf->pool, sizeof(ngx_ssl_stapling_t));
ngx_pcalloc       713 src/event/ngx_event_openssl_stapling.c     ctx = ngx_pcalloc(pool, sizeof(ngx_ssl_ocsp_ctx_t));
ngx_pcalloc       857 src/event/ngx_event_openssl_stapling.c     ctx->addrs = ngx_pcalloc(ctx->pool, ctx->naddrs * sizeof(ngx_addr_t));
ngx_pcalloc       417 src/http/modules/ngx_http_access_module.c     conf = ngx_pcalloc(cf->pool, sizeof(ngx_http_access_loc_conf_t));
ngx_pcalloc       115 src/http/modules/ngx_http_addition_filter_module.c     ctx = ngx_pcalloc(r->pool, sizeof(ngx_http_addition_ctx_t));
ngx_pcalloc       215 src/http/modules/ngx_http_addition_filter_module.c     conf = ngx_pcalloc(cf->pool, sizeof(ngx_http_addition_conf_t));
ngx_pcalloc       394 src/http/modules/ngx_http_auth_basic_module.c     conf = ngx_pcalloc(cf->pool, sizeof(ngx_http_auth_basic_loc_conf_t));
ngx_pcalloc       176 src/http/modules/ngx_http_auth_request_module.c     ctx = ngx_pcalloc(r->pool, sizeof(ngx_http_auth_request_ctx_t));
ngx_pcalloc       201 src/http/modules/ngx_http_auth_request_module.c     sr->request_body = ngx_pcalloc(r->pool, sizeof(ngx_http_request_body_t));
ngx_pcalloc       307 src/http/modules/ngx_http_auth_request_module.c     conf = ngx_pcalloc(cf->pool, sizeof(ngx_http_auth_request_conf_t));
ngx_pcalloc       425 src/http/modules/ngx_http_browser_module.c     conf = ngx_pcalloc(cf->pool, sizeof(ngx_http_browser_conf_t));
ngx_pcalloc       404 src/http/modules/ngx_http_charset_filter_module.c     ctx = ngx_pcalloc(r->pool, sizeof(ngx_http_charset_ctx_t));
ngx_pcalloc       519 src/http/modules/ngx_http_charset_filter_module.c     ctx = ngx_pcalloc(r->pool, sizeof(ngx_http_charset_ctx_t));
ngx_pcalloc      1225 src/http/modules/ngx_http_charset_filter_module.c         table->src2dst = ngx_pcalloc(cf->pool, 256 * NGX_UTF_LEN);
ngx_pcalloc      1230 src/http/modules/ngx_http_charset_filter_module.c         table->dst2src = ngx_pcalloc(cf->pool, 256 * sizeof(void *));
ngx_pcalloc      1235 src/http/modules/ngx_http_charset_filter_module.c         dst2src = ngx_pcalloc(cf->pool, 256);
ngx_pcalloc      1370 src/http/modules/ngx_http_charset_filter_module.c             dst2src = ngx_pcalloc(cf->pool, 256);
ngx_pcalloc      1494 src/http/modules/ngx_http_charset_filter_module.c     mcf = ngx_pcalloc(cf->pool, sizeof(ngx_http_charset_main_conf_t));
ngx_pcalloc      1528 src/http/modules/ngx_http_charset_filter_module.c     lcf = ngx_pcalloc(cf->pool, sizeof(ngx_http_charset_loc_conf_t));
ngx_pcalloc      1655 src/http/modules/ngx_http_charset_filter_module.c             src = ngx_pcalloc(cf->pool, sizeof(u_char *) * mcf->charsets.nelts);
ngx_pcalloc      1666 src/http/modules/ngx_http_charset_filter_module.c             dst = ngx_pcalloc(cf->pool, sizeof(u_char *) * mcf->charsets.nelts);
ngx_pcalloc        82 src/http/modules/ngx_http_chunked_filter_module.c                 ctx = ngx_pcalloc(r->pool,
ngx_pcalloc      1100 src/http/modules/ngx_http_dav_module.c     conf = ngx_pcalloc(cf->pool, sizeof(ngx_http_dav_loc_conf_t));
ngx_pcalloc       159 src/http/modules/ngx_http_degradation_module.c     dmcf = ngx_pcalloc(cf->pool, sizeof(ngx_http_degradation_main_conf_t));
ngx_pcalloc       669 src/http/modules/ngx_http_fastcgi_module.c     f = ngx_pcalloc(r->pool, sizeof(ngx_http_fastcgi_ctx_t));
ngx_pcalloc       707 src/http/modules/ngx_http_fastcgi_module.c     u->pipe = ngx_pcalloc(r->pool, sizeof(ngx_event_pipe_t));
ngx_pcalloc       763 src/http/modules/ngx_http_fastcgi_module.c     u->resolved = ngx_pcalloc(r->pool, sizeof(ngx_http_upstream_resolved_t));
ngx_pcalloc      2677 src/http/modules/ngx_http_fastcgi_module.c     conf = ngx_pcalloc(cf->pool, sizeof(ngx_http_fastcgi_main_conf_t));
ngx_pcalloc      2700 src/http/modules/ngx_http_fastcgi_module.c     conf = ngx_pcalloc(cf->pool, sizeof(ngx_http_fastcgi_loc_conf_t));
ngx_pcalloc      3409 src/http/modules/ngx_http_fastcgi_module.c         f = ngx_pcalloc(r->pool, sizeof(ngx_http_fastcgi_ctx_t));
ngx_pcalloc      3453 src/http/modules/ngx_http_fastcgi_module.c         f = ngx_pcalloc(r->pool, sizeof(ngx_http_fastcgi_ctx_t));
ngx_pcalloc       206 src/http/modules/ngx_http_flv_module.c         b = ngx_pcalloc(r->pool, sizeof(ngx_buf_t));
ngx_pcalloc       220 src/http/modules/ngx_http_flv_module.c     b = ngx_pcalloc(r->pool, sizeof(ngx_buf_t));
ngx_pcalloc       225 src/http/modules/ngx_http_flv_module.c     b->file = ngx_pcalloc(r->pool, sizeof(ngx_file_t));
ngx_pcalloc       678 src/http/modules/ngx_http_geo_module.c         ctx->high.low = ngx_pcalloc(ctx->pool,
ngx_pcalloc       646 src/http/modules/ngx_http_geoip_module.c     conf = ngx_pcalloc(cf->pool, sizeof(ngx_http_geoip_conf_t));
ngx_pcalloc       152 src/http/modules/ngx_http_gunzip_filter_module.c     ctx = ngx_pcalloc(r->pool, sizeof(ngx_http_gunzip_ctx_t));
ngx_pcalloc       645 src/http/modules/ngx_http_gunzip_filter_module.c     conf = ngx_pcalloc(cf->pool, sizeof(ngx_http_gunzip_conf_t));
ngx_pcalloc       283 src/http/modules/ngx_http_gzip_filter_module.c     ctx = ngx_pcalloc(r->pool, sizeof(ngx_http_gzip_ctx_t));
ngx_pcalloc       647 src/http/modules/ngx_http_gzip_filter_module.c     b = ngx_pcalloc(r->pool, sizeof(ngx_buf_t));
ngx_pcalloc      1119 src/http/modules/ngx_http_gzip_filter_module.c     conf = ngx_pcalloc(cf->pool, sizeof(ngx_http_gzip_conf_t));
ngx_pcalloc       251 src/http/modules/ngx_http_gzip_static_module.c     b = ngx_pcalloc(r->pool, sizeof(ngx_buf_t));
ngx_pcalloc       256 src/http/modules/ngx_http_gzip_static_module.c     b->file = ngx_pcalloc(r->pool, sizeof(ngx_file_t));
ngx_pcalloc       549 src/http/modules/ngx_http_headers_filter_module.c     conf = ngx_pcalloc(cf->pool, sizeof(ngx_http_headers_conf_t));
ngx_pcalloc       244 src/http/modules/ngx_http_image_filter_module.c     ctx = ngx_pcalloc(r->pool, sizeof(ngx_http_image_filter_ctx_t));
ngx_pcalloc       564 src/http/modules/ngx_http_image_filter_module.c     b = ngx_pcalloc(r->pool, sizeof(ngx_buf_t));
ngx_pcalloc       616 src/http/modules/ngx_http_image_filter_module.c     b = ngx_pcalloc(r->pool, sizeof(ngx_buf_t));
ngx_pcalloc      1000 src/http/modules/ngx_http_image_filter_module.c     b = ngx_pcalloc(r->pool, sizeof(ngx_buf_t));
ngx_pcalloc      1184 src/http/modules/ngx_http_image_filter_module.c     conf = ngx_pcalloc(cf->pool, sizeof(ngx_http_image_filter_conf_t));
ngx_pcalloc       456 src/http/modules/ngx_http_limit_conn_module.c     conf = ngx_pcalloc(cf->pool, sizeof(ngx_http_limit_conn_conf_t));
ngx_pcalloc       505 src/http/modules/ngx_http_limit_conn_module.c     ctx = ngx_pcalloc(cf->pool, sizeof(ngx_http_limit_conn_ctx_t));
ngx_pcalloc       688 src/http/modules/ngx_http_limit_req_module.c     conf = ngx_pcalloc(cf->pool, sizeof(ngx_http_limit_req_conf_t));
ngx_pcalloc       744 src/http/modules/ngx_http_limit_req_module.c     ctx = ngx_pcalloc(cf->pool, sizeof(ngx_http_limit_req_ctx_t));
ngx_pcalloc      1038 src/http/modules/ngx_http_log_module.c     conf = ngx_pcalloc(cf->pool, sizeof(ngx_http_log_main_conf_t));
ngx_pcalloc      1072 src/http/modules/ngx_http_log_module.c     conf = ngx_pcalloc(cf->pool, sizeof(ngx_http_log_loc_conf_t));
ngx_pcalloc      1193 src/http/modules/ngx_http_log_module.c         peer = ngx_pcalloc(cf->pool, sizeof(ngx_syslog_peer_t));
ngx_pcalloc      1220 src/http/modules/ngx_http_log_module.c         log->script = ngx_pcalloc(cf->pool, sizeof(ngx_http_log_script_t));
ngx_pcalloc      1405 src/http/modules/ngx_http_log_module.c         buffer = ngx_pcalloc(cf->pool, sizeof(ngx_http_log_buf_t));
ngx_pcalloc      1419 src/http/modules/ngx_http_log_module.c             buffer->event = ngx_pcalloc(cf->pool, sizeof(ngx_event_t));
ngx_pcalloc       194 src/http/modules/ngx_http_map_module.c     map = ngx_pcalloc(cf->pool, sizeof(ngx_http_map_ctx_t));
ngx_pcalloc       243 src/http/modules/ngx_http_map_module.c     ctx.values_hash = ngx_pcalloc(pool, sizeof(ngx_array_t) * ctx.keys.hsize);
ngx_pcalloc       584 src/http/modules/ngx_http_memcached_module.c     conf = ngx_pcalloc(cf->pool, sizeof(ngx_http_memcached_loc_conf_t));
ngx_pcalloc       576 src/http/modules/ngx_http_mp4_module.c         mp4 = ngx_pcalloc(r->pool, sizeof(ngx_http_mp4_file_t));
ngx_pcalloc       649 src/http/modules/ngx_http_mp4_module.c         b = ngx_pcalloc(r->pool, sizeof(ngx_buf_t));
ngx_pcalloc       654 src/http/modules/ngx_http_mp4_module.c         b->file = ngx_pcalloc(r->pool, sizeof(ngx_file_t));
ngx_pcalloc       832 src/http/modules/ngx_http_proxy_module.c     ctx = ngx_pcalloc(r->pool, sizeof(ngx_http_proxy_ctx_t));
ngx_pcalloc       884 src/http/modules/ngx_http_proxy_module.c     u->pipe = ngx_pcalloc(r->pool, sizeof(ngx_event_pipe_t));
ngx_pcalloc       998 src/http/modules/ngx_http_proxy_module.c     u->resolved = ngx_pcalloc(r->pool, sizeof(ngx_http_upstream_resolved_t));
ngx_pcalloc      2746 src/http/modules/ngx_http_proxy_module.c     conf = ngx_pcalloc(cf->pool, sizeof(ngx_http_proxy_main_conf_t));
ngx_pcalloc      2769 src/http/modules/ngx_http_proxy_module.c     conf = ngx_pcalloc(cf->pool, sizeof(ngx_http_proxy_loc_conf_t));
ngx_pcalloc      4282 src/http/modules/ngx_http_proxy_module.c     plcf->upstream.ssl = ngx_pcalloc(cf->pool, sizeof(ngx_ssl_t));
ngx_pcalloc       220 src/http/modules/ngx_http_range_filter_module.c     ctx = ngx_pcalloc(r->pool, sizeof(ngx_http_range_filter_ctx_t));
ngx_pcalloc       377 src/http/modules/ngx_http_realip_module.c     conf = ngx_pcalloc(cf->pool, sizeof(ngx_http_realip_loc_conf_t));
ngx_pcalloc       271 src/http/modules/ngx_http_referer_module.c     conf = ngx_pcalloc(cf->pool, sizeof(ngx_http_referer_conf_t));
ngx_pcalloc       470 src/http/modules/ngx_http_referer_module.c         rlcf->keys = ngx_pcalloc(cf->temp_pool, sizeof(ngx_hash_keys_arrays_t));
ngx_pcalloc       161 src/http/modules/ngx_http_rewrite_module.c     e = ngx_pcalloc(r->pool, sizeof(ngx_http_script_engine_t));
ngx_pcalloc       166 src/http/modules/ngx_http_rewrite_module.c     e->sp = ngx_pcalloc(r->pool,
ngx_pcalloc       234 src/http/modules/ngx_http_rewrite_module.c     conf = ngx_pcalloc(cf->pool, sizeof(ngx_http_rewrite_loc_conf_t));
ngx_pcalloc       549 src/http/modules/ngx_http_rewrite_module.c     ctx = ngx_pcalloc(cf->pool, sizeof(ngx_http_conf_ctx_t));
ngx_pcalloc       558 src/http/modules/ngx_http_rewrite_module.c     ctx->loc_conf = ngx_pcalloc(cf->pool, sizeof(void *) * ngx_http_max_module);
ngx_pcalloc       468 src/http/modules/ngx_http_scgi_module.c     status = ngx_pcalloc(r->pool, sizeof(ngx_http_status_t));
ngx_pcalloc       506 src/http/modules/ngx_http_scgi_module.c     u->pipe = ngx_pcalloc(r->pool, sizeof(ngx_event_pipe_t));
ngx_pcalloc       559 src/http/modules/ngx_http_scgi_module.c     u->resolved = ngx_pcalloc(r->pool, sizeof(ngx_http_upstream_resolved_t));
ngx_pcalloc      1150 src/http/modules/ngx_http_scgi_module.c     conf = ngx_pcalloc(cf->pool, sizeof(ngx_http_scgi_main_conf_t));
ngx_pcalloc      1173 src/http/modules/ngx_http_scgi_module.c     conf = ngx_pcalloc(cf->pool, sizeof(ngx_http_scgi_loc_conf_t));
ngx_pcalloc       142 src/http/modules/ngx_http_secure_link_module.c         ctx = ngx_pcalloc(r->pool, sizeof(ngx_http_secure_link_ctx_t));
ngx_pcalloc       298 src/http/modules/ngx_http_secure_link_module.c     conf = ngx_pcalloc(cf->pool, sizeof(ngx_http_secure_link_conf_t));
ngx_pcalloc       123 src/http/modules/ngx_http_split_clients_module.c     ctx = ngx_pcalloc(cf->pool, sizeof(ngx_http_split_clients_ctx_t));
ngx_pcalloc       344 src/http/modules/ngx_http_ssi_filter_module.c     ctx = ngx_pcalloc(r->pool, sizeof(ngx_http_ssi_ctx_t));
ngx_pcalloc      2822 src/http/modules/ngx_http_ssi_filter_module.c     smcf = ngx_pcalloc(cf->pool, sizeof(ngx_http_ssi_main_conf_t));
ngx_pcalloc      2869 src/http/modules/ngx_http_ssi_filter_module.c     slcf = ngx_pcalloc(cf->pool, sizeof(ngx_http_ssi_loc_conf_t));
ngx_pcalloc       499 src/http/modules/ngx_http_ssl_module.c     sscf = ngx_pcalloc(cf->pool, sizeof(ngx_http_ssl_srv_conf_t));
ngx_pcalloc       239 src/http/modules/ngx_http_static_module.c     b = ngx_pcalloc(r->pool, sizeof(ngx_buf_t));
ngx_pcalloc       244 src/http/modules/ngx_http_static_module.c     b->file = ngx_pcalloc(r->pool, sizeof(ngx_file_t));
ngx_pcalloc       154 src/http/modules/ngx_http_sub_filter_module.c     ctx = ngx_pcalloc(r->pool, sizeof(ngx_http_sub_ctx_t));
ngx_pcalloc       708 src/http/modules/ngx_http_sub_filter_module.c     slcf = ngx_pcalloc(cf->pool, sizeof(ngx_http_sub_loc_conf_t));
ngx_pcalloc       147 src/http/modules/ngx_http_upstream_keepalive_module.c     cached = ngx_pcalloc(cf->pool,
ngx_pcalloc       462 src/http/modules/ngx_http_upstream_keepalive_module.c     conf = ngx_pcalloc(cf->pool,
ngx_pcalloc       304 src/http/modules/ngx_http_userid_filter_module.c         ctx = ngx_pcalloc(r->pool, sizeof(ngx_http_userid_ctx_t));
ngx_pcalloc       642 src/http/modules/ngx_http_userid_filter_module.c     conf = ngx_pcalloc(cf->pool, sizeof(ngx_http_userid_conf_t));
ngx_pcalloc       622 src/http/modules/ngx_http_uwsgi_module.c     status = ngx_pcalloc(r->pool, sizeof(ngx_http_status_t));
ngx_pcalloc       674 src/http/modules/ngx_http_uwsgi_module.c     u->pipe = ngx_pcalloc(r->pool, sizeof(ngx_event_pipe_t));
ngx_pcalloc       761 src/http/modules/ngx_http_uwsgi_module.c     u->resolved = ngx_pcalloc(r->pool, sizeof(ngx_http_upstream_resolved_t));
ngx_pcalloc      1353 src/http/modules/ngx_http_uwsgi_module.c     conf = ngx_pcalloc(cf->pool, sizeof(ngx_http_uwsgi_main_conf_t));
ngx_pcalloc      1376 src/http/modules/ngx_http_uwsgi_module.c     conf = ngx_pcalloc(cf->pool, sizeof(ngx_http_uwsgi_loc_conf_t));
ngx_pcalloc      2288 src/http/modules/ngx_http_uwsgi_module.c     uwcf->upstream.ssl = ngx_pcalloc(cf->pool, sizeof(ngx_ssl_t));
ngx_pcalloc       228 src/http/modules/ngx_http_xslt_filter_module.c     ctx = ngx_pcalloc(r->pool, sizeof(ngx_http_xslt_filter_ctx_t));
ngx_pcalloc       587 src/http/modules/ngx_http_xslt_filter_module.c     b = ngx_pcalloc(r->pool, sizeof(ngx_buf_t));
ngx_pcalloc      1063 src/http/modules/ngx_http_xslt_filter_module.c     conf = ngx_pcalloc(cf->pool, sizeof(ngx_http_xslt_filter_loc_conf_t));
ngx_pcalloc       195 src/http/modules/perl/ngx_http_perl_module.c         ctx = ngx_pcalloc(r->pool, sizeof(ngx_http_perl_ctx_t));
ngx_pcalloc       309 src/http/modules/perl/ngx_http_perl_module.c         ctx = ngx_pcalloc(r->pool, sizeof(ngx_http_perl_ctx_t));
ngx_pcalloc       371 src/http/modules/perl/ngx_http_perl_module.c         ctx = ngx_pcalloc(r->pool, sizeof(ngx_http_perl_ctx_t));
ngx_pcalloc       417 src/http/modules/perl/ngx_http_perl_module.c         asv = ngx_pcalloc(r->pool, (i + 1) * sizeof(SV *));
ngx_pcalloc       796 src/http/modules/perl/ngx_http_perl_module.c     pmcf = ngx_pcalloc(cf->pool, sizeof(ngx_http_perl_main_conf_t));
ngx_pcalloc       878 src/http/modules/perl/ngx_http_perl_module.c     plcf = ngx_pcalloc(cf->pool, sizeof(ngx_http_perl_loc_conf_t));
ngx_pcalloc       133 src/http/ngx_http.c     ctx = ngx_pcalloc(cf->pool, sizeof(ngx_http_conf_ctx_t));
ngx_pcalloc       155 src/http/ngx_http.c     ctx->main_conf = ngx_pcalloc(cf->pool,
ngx_pcalloc       167 src/http/ngx_http.c     ctx->srv_conf = ngx_pcalloc(cf->pool, sizeof(void *) * ngx_http_max_module);
ngx_pcalloc       178 src/http/ngx_http.c     ctx->loc_conf = ngx_pcalloc(cf->pool, sizeof(void *) * ngx_http_max_module);
ngx_pcalloc       469 src/http/ngx_http.c     ph = ngx_pcalloc(cf->pool,
ngx_pcalloc      1715 src/http/ngx_http.c         hport = ngx_pcalloc(cf->pool, sizeof(ngx_http_port_t));
ngx_pcalloc      1839 src/http/ngx_http.c     hport->addrs = ngx_pcalloc(cf->pool,
ngx_pcalloc      1904 src/http/ngx_http.c     hport->addrs = ngx_pcalloc(cf->pool,
ngx_pcalloc       103 src/http/ngx_http_copy_filter_module.c         ctx = ngx_pcalloc(r->pool, sizeof(ngx_output_chain_ctx_t));
ngx_pcalloc      1901 src/http/ngx_http_core_module.c     b = ngx_pcalloc(r->pool, sizeof(ngx_buf_t));
ngx_pcalloc      2435 src/http/ngx_http_core_module.c     sr = ngx_pcalloc(r->pool, sizeof(ngx_http_request_t));
ngx_pcalloc      2445 src/http/ngx_http_core_module.c     sr->ctx = ngx_pcalloc(r->pool, sizeof(void *) * ngx_http_max_module);
ngx_pcalloc      2944 src/http/ngx_http_core_module.c     ctx = ngx_pcalloc(cf->pool, sizeof(ngx_http_conf_ctx_t));
ngx_pcalloc      2954 src/http/ngx_http_core_module.c     ctx->srv_conf = ngx_pcalloc(cf->pool, sizeof(void *) * ngx_http_max_module);
ngx_pcalloc      2961 src/http/ngx_http_core_module.c     ctx->loc_conf = ngx_pcalloc(cf->pool, sizeof(void *) * ngx_http_max_module);
ngx_pcalloc      3070 src/http/ngx_http_core_module.c     ctx = ngx_pcalloc(cf->pool, sizeof(ngx_http_conf_ctx_t));
ngx_pcalloc      3079 src/http/ngx_http_core_module.c     ctx->loc_conf = ngx_pcalloc(cf->pool, sizeof(void *) * ngx_http_max_module);
ngx_pcalloc      3405 src/http/ngx_http_core_module.c     cmcf = ngx_pcalloc(cf->pool, sizeof(ngx_http_core_main_conf_t));
ngx_pcalloc      3459 src/http/ngx_http_core_module.c     cscf = ngx_pcalloc(cf->pool, sizeof(ngx_http_core_srv_conf_t));
ngx_pcalloc      3567 src/http/ngx_http_core_module.c     clcf = ngx_pcalloc(cf->pool, sizeof(ngx_http_core_loc_conf_t));
ngx_pcalloc      4581 src/http/ngx_http_core_module.c     ctx = ngx_pcalloc(cf->pool, sizeof(ngx_http_conf_ctx_t));
ngx_pcalloc      4590 src/http/ngx_http_core_module.c     ctx->loc_conf = ngx_pcalloc(cf->pool, sizeof(void *) * ngx_http_max_module);
ngx_pcalloc      4914 src/http/ngx_http_core_module.c     tf = ngx_pcalloc(cf->pool, cf->args->nelts * sizeof(ngx_http_try_file_t));
ngx_pcalloc       176 src/http/ngx_http_file_cache.c     c = ngx_pcalloc(r->pool, sizeof(ngx_http_cache_t));
ngx_pcalloc      1546 src/http/ngx_http_file_cache.c     b = ngx_pcalloc(r->pool, sizeof(ngx_buf_t));
ngx_pcalloc      1551 src/http/ngx_http_file_cache.c     b->file = ngx_pcalloc(r->pool, sizeof(ngx_file_t));
ngx_pcalloc      2168 src/http/ngx_http_file_cache.c     cache = ngx_pcalloc(cf->pool, sizeof(ngx_http_file_cache_t));
ngx_pcalloc      2173 src/http/ngx_http_file_cache.c     cache->path = ngx_pcalloc(cf->pool, sizeof(ngx_path_t));
ngx_pcalloc      2382 src/http/ngx_http_file_cache.c         cache->temp_path = ngx_pcalloc(cf->pool, sizeof(ngx_path_t));
ngx_pcalloc       209 src/http/ngx_http_request.c     hc = ngx_pcalloc(c->pool, sizeof(ngx_http_connection_t));
ngx_pcalloc       526 src/http/ngx_http_request.c     r = ngx_pcalloc(pool, sizeof(ngx_http_request_t));
ngx_pcalloc       558 src/http/ngx_http_request.c     r->ctx = ngx_pcalloc(r->pool, sizeof(void *) * ngx_http_max_module);
ngx_pcalloc       566 src/http/ngx_http_request.c     r->variables = ngx_pcalloc(r->pool, cmcf->variables.nelts
ngx_pcalloc        66 src/http/ngx_http_request_body.c     rb = ngx_pcalloc(r->pool, sizeof(ngx_http_request_body_t));
ngx_pcalloc       499 src/http/ngx_http_request_body.c         tf = ngx_pcalloc(r->pool, sizeof(ngx_temp_file_t));
ngx_pcalloc       780 src/http/ngx_http_request_body.c             rb = ngx_pcalloc(r->pool, sizeof(ngx_http_request_body_t));
ngx_pcalloc       785 src/http/ngx_http_request_body.c             rb->chunked = ngx_pcalloc(r->pool, sizeof(ngx_http_chunked_t));
ngx_pcalloc       997 src/http/ngx_http_request_body.c         rb->chunked = ngx_pcalloc(r->pool, sizeof(ngx_http_chunked_t));
ngx_pcalloc       412 src/http/ngx_http_spdy.c     sc = ngx_pcalloc(c->pool, sizeof(ngx_http_spdy_connection_t));
ngx_pcalloc       481 src/http/ngx_http_spdy.c     sc->streams_index = ngx_pcalloc(sc->pool,
ngx_pcalloc      2451 src/http/ngx_http_spdy.c     stream = ngx_pcalloc(r->pool, sizeof(ngx_http_spdy_stream_t));
ngx_pcalloc      3191 src/http/ngx_http_spdy.c     rb = ngx_pcalloc(r->pool, sizeof(ngx_http_request_body_t));
ngx_pcalloc      3210 src/http/ngx_http_spdy.c         tf = ngx_pcalloc(r->pool, sizeof(ngx_temp_file_t));
ngx_pcalloc      3533 src/http/ngx_http_spdy.c     sc->streams_index = ngx_pcalloc(sc->pool,
ngx_pcalloc       238 src/http/ngx_http_spdy_module.c     smcf = ngx_pcalloc(cf->pool, sizeof(ngx_http_spdy_main_conf_t));
ngx_pcalloc       265 src/http/ngx_http_spdy_module.c     sscf = ngx_pcalloc(cf->pool, sizeof(ngx_http_spdy_srv_conf_t));
ngx_pcalloc       314 src/http/ngx_http_spdy_module.c     slcf = ngx_pcalloc(cf->pool, sizeof(ngx_http_spdy_loc_conf_t));
ngx_pcalloc       447 src/http/ngx_http_upstream.c     u = ngx_pcalloc(r->pool, sizeof(ngx_http_upstream_t));
ngx_pcalloc      2860 src/http/ngx_http_upstream.c     p->temp_file = ngx_pcalloc(r->pool, sizeof(ngx_temp_file_t));
ngx_pcalloc      3704 src/http/ngx_http_upstream.c         tf = ngx_pcalloc(r->pool, sizeof(ngx_temp_file_t));
ngx_pcalloc      5285 src/http/ngx_http_upstream.c     ctx = ngx_pcalloc(cf->pool, sizeof(ngx_http_conf_ctx_t));
ngx_pcalloc      5295 src/http/ngx_http_upstream.c     ctx->srv_conf = ngx_pcalloc(cf->pool, sizeof(void *) * ngx_http_max_module);
ngx_pcalloc      5307 src/http/ngx_http_upstream.c     ctx->loc_conf = ngx_pcalloc(cf->pool, sizeof(void *) * ngx_http_max_module);
ngx_pcalloc      5584 src/http/ngx_http_upstream.c     uscf = ngx_pcalloc(cf->pool, sizeof(ngx_http_upstream_srv_conf_t));
ngx_pcalloc      5661 src/http/ngx_http_upstream.c     local = ngx_pcalloc(cf->pool, sizeof(ngx_http_upstream_local_t));
ngx_pcalloc      5910 src/http/ngx_http_upstream.c     umcf = ngx_pcalloc(cf->pool, sizeof(ngx_http_upstream_main_conf_t));
ngx_pcalloc        64 src/http/ngx_http_upstream_round_robin.c         peers = ngx_pcalloc(cf->pool, sizeof(ngx_http_upstream_rr_peers_t));
ngx_pcalloc        69 src/http/ngx_http_upstream_round_robin.c         peer = ngx_pcalloc(cf->pool, sizeof(ngx_http_upstream_rr_peer_t) * n);
ngx_pcalloc       126 src/http/ngx_http_upstream_round_robin.c         backup = ngx_pcalloc(cf->pool, sizeof(ngx_http_upstream_rr_peers_t));
ngx_pcalloc       131 src/http/ngx_http_upstream_round_robin.c         peer = ngx_pcalloc(cf->pool, sizeof(ngx_http_upstream_rr_peer_t) * n);
ngx_pcalloc       201 src/http/ngx_http_upstream_round_robin.c     peers = ngx_pcalloc(cf->pool, sizeof(ngx_http_upstream_rr_peers_t));
ngx_pcalloc       206 src/http/ngx_http_upstream_round_robin.c     peer = ngx_pcalloc(cf->pool, sizeof(ngx_http_upstream_rr_peer_t) * n);
ngx_pcalloc       274 src/http/ngx_http_upstream_round_robin.c         rrp->tried = ngx_pcalloc(r->pool, n * sizeof(uintptr_t));
ngx_pcalloc       318 src/http/ngx_http_upstream_round_robin.c     peers = ngx_pcalloc(r->pool, sizeof(ngx_http_upstream_rr_peers_t));
ngx_pcalloc       323 src/http/ngx_http_upstream_round_robin.c     peer = ngx_pcalloc(r->pool, sizeof(ngx_http_upstream_rr_peer_t)
ngx_pcalloc       400 src/http/ngx_http_upstream_round_robin.c         rrp->tried = ngx_pcalloc(r->pool, n * sizeof(uintptr_t));
ngx_pcalloc      2320 src/http/ngx_http_variables.c     re = ngx_pcalloc(cf->pool, sizeof(ngx_http_regex_t));
ngx_pcalloc      2454 src/http/ngx_http_variables.c     cmcf->variables_keys = ngx_pcalloc(cf->temp_pool,
ngx_pcalloc        81 src/mail/ngx_mail.c     ctx = ngx_pcalloc(cf->pool, sizeof(ngx_mail_conf_ctx_t));
ngx_pcalloc       102 src/mail/ngx_mail.c     ctx->main_conf = ngx_pcalloc(cf->pool,
ngx_pcalloc       114 src/mail/ngx_mail.c     ctx->srv_conf = ngx_pcalloc(cf->pool, sizeof(void *) * ngx_mail_max_module);
ngx_pcalloc       432 src/mail/ngx_mail.c     mport->addrs = ngx_pcalloc(cf->pool,
ngx_pcalloc       481 src/mail/ngx_mail.c     mport->addrs = ngx_pcalloc(cf->pool,
ngx_pcalloc       176 src/mail/ngx_mail_auth_http_module.c     ctx = ngx_pcalloc(pool, sizeof(ngx_mail_auth_http_ctx_t));
ngx_pcalloc       778 src/mail/ngx_mail_auth_http_module.c             peer = ngx_pcalloc(s->connection->pool, sizeof(ngx_addr_t));
ngx_pcalloc      1439 src/mail/ngx_mail_auth_http_module.c     ahcf = ngx_pcalloc(cf->pool, sizeof(ngx_mail_auth_http_conf_t));
ngx_pcalloc       124 src/mail/ngx_mail_core_module.c     cmcf = ngx_pcalloc(cf->pool, sizeof(ngx_mail_core_main_conf_t));
ngx_pcalloc       151 src/mail/ngx_mail_core_module.c     cscf = ngx_pcalloc(cf->pool, sizeof(ngx_mail_core_srv_conf_t));
ngx_pcalloc       225 src/mail/ngx_mail_core_module.c     ctx = ngx_pcalloc(cf->pool, sizeof(ngx_mail_conf_ctx_t));
ngx_pcalloc       235 src/mail/ngx_mail_core_module.c     ctx->srv_conf = ngx_pcalloc(cf->pool, sizeof(void *) * ngx_mail_max_module);
ngx_pcalloc       121 src/mail/ngx_mail_handler.c     s = ngx_pcalloc(c->pool, sizeof(ngx_mail_session_t));
ngx_pcalloc       361 src/mail/ngx_mail_handler.c     s->ctx = ngx_pcalloc(c->pool, sizeof(void *) * ngx_mail_max_module);
ngx_pcalloc       120 src/mail/ngx_mail_imap_module.c     iscf = ngx_pcalloc(cf->pool, sizeof(ngx_mail_imap_srv_conf_t));
ngx_pcalloc       119 src/mail/ngx_mail_pop3_module.c     pscf = ngx_pcalloc(cf->pool, sizeof(ngx_mail_pop3_srv_conf_t));
ngx_pcalloc       123 src/mail/ngx_mail_proxy_module.c     p = ngx_pcalloc(s->connection->pool, sizeof(ngx_mail_proxy_ctx_t));
ngx_pcalloc      1094 src/mail/ngx_mail_proxy_module.c     pcf = ngx_pcalloc(cf->pool, sizeof(ngx_mail_proxy_conf_t));
ngx_pcalloc       120 src/mail/ngx_mail_smtp_module.c     sscf = ngx_pcalloc(cf->pool, sizeof(ngx_mail_smtp_srv_conf_t));
ngx_pcalloc       232 src/mail/ngx_mail_ssl_module.c     scf = ngx_pcalloc(cf->pool, sizeof(ngx_mail_ssl_conf_t));
ngx_pcalloc        71 src/misc/ngx_google_perftools_module.c     gptcf = ngx_pcalloc(cycle->pool, sizeof(ngx_google_perftools_conf_t));
ngx_pcalloc        44 src/os/unix/ngx_file_aio_read.c     aio = ngx_pcalloc(pool, sizeof(ngx_event_aio_t));
ngx_pcalloc        32 src/os/unix/ngx_linux_aio_read.c     aio = ngx_pcalloc(pool, sizeof(ngx_event_aio_t));
ngx_pcalloc        81 src/stream/ngx_stream.c     ctx = ngx_pcalloc(cf->pool, sizeof(ngx_stream_conf_ctx_t));
ngx_pcalloc       102 src/stream/ngx_stream.c     ctx->main_conf = ngx_pcalloc(cf->pool,
ngx_pcalloc       114 src/stream/ngx_stream.c     ctx->srv_conf = ngx_pcalloc(cf->pool,
ngx_pcalloc       437 src/stream/ngx_stream.c     stport->addrs = ngx_pcalloc(cf->pool,
ngx_pcalloc       486 src/stream/ngx_stream.c     stport->addrs = ngx_pcalloc(cf->pool,
ngx_pcalloc        82 src/stream/ngx_stream_core_module.c     cmcf = ngx_pcalloc(cf->pool, sizeof(ngx_stream_core_main_conf_t));
ngx_pcalloc       109 src/stream/ngx_stream_core_module.c     cscf = ngx_pcalloc(cf->pool, sizeof(ngx_stream_core_srv_conf_t));
ngx_pcalloc       174 src/stream/ngx_stream_core_module.c     ctx = ngx_pcalloc(cf->pool, sizeof(ngx_stream_conf_ctx_t));
ngx_pcalloc       184 src/stream/ngx_stream_core_module.c     ctx->srv_conf = ngx_pcalloc(cf->pool,
ngx_pcalloc       118 src/stream/ngx_stream_handler.c     s = ngx_pcalloc(c->pool, sizeof(ngx_stream_session_t));
ngx_pcalloc       184 src/stream/ngx_stream_handler.c     s->ctx = ngx_pcalloc(c->pool, sizeof(void *) * ngx_stream_max_module);
ngx_pcalloc       289 src/stream/ngx_stream_proxy_module.c     u = ngx_pcalloc(c->pool, sizeof(ngx_stream_upstream_t));
ngx_pcalloc      1067 src/stream/ngx_stream_proxy_module.c     conf = ngx_pcalloc(cf->pool, sizeof(ngx_stream_proxy_srv_conf_t));
ngx_pcalloc      1186 src/stream/ngx_stream_proxy_module.c     pscf->ssl = ngx_pcalloc(cf->pool, sizeof(ngx_ssl_t));
ngx_pcalloc       167 src/stream/ngx_stream_ssl_module.c     scf = ngx_pcalloc(cf->pool, sizeof(ngx_stream_ssl_conf_t));
ngx_pcalloc        97 src/stream/ngx_stream_upstream.c     ctx = ngx_pcalloc(cf->pool, sizeof(ngx_stream_conf_ctx_t));
ngx_pcalloc       107 src/stream/ngx_stream_upstream.c     ctx->srv_conf = ngx_pcalloc(cf->pool,
ngx_pcalloc       377 src/stream/ngx_stream_upstream.c     uscf = ngx_pcalloc(cf->pool, sizeof(ngx_stream_upstream_srv_conf_t));
ngx_pcalloc       423 src/stream/ngx_stream_upstream.c     umcf = ngx_pcalloc(cf->pool, sizeof(ngx_stream_upstream_main_conf_t));
ngx_pcalloc        64 src/stream/ngx_stream_upstream_round_robin.c         peers = ngx_pcalloc(cf->pool, sizeof(ngx_stream_upstream_rr_peers_t));
ngx_pcalloc        69 src/stream/ngx_stream_upstream_round_robin.c         peer = ngx_pcalloc(cf->pool, sizeof(ngx_stream_upstream_rr_peer_t) * n);
ngx_pcalloc       126 src/stream/ngx_stream_upstream_round_robin.c         backup = ngx_pcalloc(cf->pool, sizeof(ngx_stream_upstream_rr_peers_t));
ngx_pcalloc       131 src/stream/ngx_stream_upstream_round_robin.c         peer = ngx_pcalloc(cf->pool, sizeof(ngx_stream_upstream_rr_peer_t) * n);
ngx_pcalloc       201 src/stream/ngx_stream_upstream_round_robin.c     peers = ngx_pcalloc(cf->pool, sizeof(ngx_stream_upstream_rr_peers_t));
ngx_pcalloc       206 src/stream/ngx_stream_upstream_round_robin.c     peer = ngx_pcalloc(cf->pool, sizeof(ngx_stream_upstream_rr_peer_t) * n);
ngx_pcalloc       275 src/stream/ngx_stream_upstream_round_robin.c         rrp->tried = ngx_pcalloc(s->connection->pool, n * sizeof(uintptr_t));