shm_zone           15 core/ngx_cycle.c     ngx_shm_zone_t *shm_zone);
shm_zone           52 core/ngx_cycle.c     ngx_shm_zone_t      *shm_zone, *oshm_zone;
shm_zone          401 core/ngx_cycle.c     shm_zone = part->elts;
shm_zone          410 core/ngx_cycle.c             shm_zone = part->elts;
shm_zone          414 core/ngx_cycle.c         if (shm_zone[i].shm.size == 0) {
shm_zone          417 core/ngx_cycle.c                           &shm_zone[i].shm.name);
shm_zone          421 core/ngx_cycle.c         if (shm_zone[i].init == NULL) {
shm_zone          426 core/ngx_cycle.c         shm_zone[i].shm.log = cycle->log;
shm_zone          442 core/ngx_cycle.c             if (shm_zone[i].shm.name.len != oshm_zone[n].shm.name.len) {
shm_zone          446 core/ngx_cycle.c             if (ngx_strncmp(shm_zone[i].shm.name.data,
shm_zone          448 core/ngx_cycle.c                             shm_zone[i].shm.name.len)
shm_zone          454 core/ngx_cycle.c             if (shm_zone[i].shm.size == oshm_zone[n].shm.size) {
shm_zone          455 core/ngx_cycle.c                 shm_zone[i].shm.addr = oshm_zone[n].shm.addr;
shm_zone          457 core/ngx_cycle.c                 if (shm_zone[i].init(&shm_zone[i], oshm_zone[n].data)
shm_zone          471 core/ngx_cycle.c         if (ngx_shm_alloc(&shm_zone[i].shm) != NGX_OK) {
shm_zone          475 core/ngx_cycle.c         if (ngx_init_zone_pool(cycle, &shm_zone[i]) != NGX_OK) {
shm_zone          479 core/ngx_cycle.c         if (shm_zone[i].init(&shm_zone[i], NULL) != NGX_OK) {
shm_zone          626 core/ngx_cycle.c         shm_zone = part->elts;
shm_zone          635 core/ngx_cycle.c                 shm_zone = part->elts;
shm_zone          639 core/ngx_cycle.c             if (oshm_zone[i].shm.name.len == shm_zone[n].shm.name.len
shm_zone          641 core/ngx_cycle.c                                shm_zone[n].shm.name.data,
shm_zone         1265 core/ngx_cycle.c     ngx_shm_zone_t   *shm_zone;
shm_zone         1269 core/ngx_cycle.c     shm_zone = part->elts;
shm_zone         1278 core/ngx_cycle.c             shm_zone = part->elts;
shm_zone         1282 core/ngx_cycle.c         if (name->len != shm_zone[i].shm.name.len) {
shm_zone         1286 core/ngx_cycle.c         if (ngx_strncmp(name->data, shm_zone[i].shm.name.data, name->len)
shm_zone         1292 core/ngx_cycle.c         if (size && size != shm_zone[i].shm.size) {
shm_zone         1296 core/ngx_cycle.c                             size, &shm_zone[i].shm.name, shm_zone[i].shm.size);
shm_zone         1300 core/ngx_cycle.c         if (tag != shm_zone[i].tag) {
shm_zone         1304 core/ngx_cycle.c                             &shm_zone[i].shm.name);
shm_zone         1308 core/ngx_cycle.c         return &shm_zone[i];
shm_zone         1311 core/ngx_cycle.c     shm_zone = ngx_list_push(&cf->cycle->shared_memory);
shm_zone         1313 core/ngx_cycle.c     if (shm_zone == NULL) {
shm_zone         1317 core/ngx_cycle.c     shm_zone->data = NULL;
shm_zone         1318 core/ngx_cycle.c     shm_zone->shm.log = cf->cycle->log;
shm_zone         1319 core/ngx_cycle.c     shm_zone->shm.size = size;
shm_zone         1320 core/ngx_cycle.c     shm_zone->shm.name = *name;
shm_zone         1321 core/ngx_cycle.c     shm_zone->shm.exists = 0;
shm_zone         1322 core/ngx_cycle.c     shm_zone->init = NULL;
shm_zone         1323 core/ngx_cycle.c     shm_zone->tag = tag;
shm_zone         1325 core/ngx_cycle.c     return shm_zone;
shm_zone           29 event/ngx_event_openssl.c static ngx_int_t ngx_ssl_session_cache_init(ngx_shm_zone_t *shm_zone,
shm_zone         1427 event/ngx_event_openssl.c     ssize_t builtin_session_cache, ngx_shm_zone_t *shm_zone, time_t timeout)
shm_zone         1463 event/ngx_event_openssl.c     if (shm_zone && builtin_session_cache == NGX_SSL_NO_BUILTIN_SCACHE) {
shm_zone         1478 event/ngx_event_openssl.c     if (shm_zone) {
shm_zone         1479 event/ngx_event_openssl.c         shm_zone->init = ngx_ssl_session_cache_init;
shm_zone         1485 event/ngx_event_openssl.c         if (SSL_CTX_set_ex_data(ssl->ctx, ngx_ssl_session_cache_index, shm_zone)
shm_zone         1499 event/ngx_event_openssl.c ngx_ssl_session_cache_init(ngx_shm_zone_t *shm_zone, void *data)
shm_zone         1506 event/ngx_event_openssl.c         shm_zone->data = data;
shm_zone         1510 event/ngx_event_openssl.c     if (shm_zone->shm.exists) {
shm_zone         1511 event/ngx_event_openssl.c         shm_zone->data = data;
shm_zone         1515 event/ngx_event_openssl.c     shpool = (ngx_slab_pool_t *) shm_zone->shm.addr;
shm_zone         1523 event/ngx_event_openssl.c     shm_zone->data = cache;
shm_zone         1530 event/ngx_event_openssl.c     len = sizeof(" in SSL session shared cache \"\"") + shm_zone->shm.name.len;
shm_zone         1538 event/ngx_event_openssl.c                 &shm_zone->shm.name);
shm_zone         1568 event/ngx_event_openssl.c     ngx_shm_zone_t           *shm_zone;
shm_zone         1589 event/ngx_event_openssl.c     shm_zone = SSL_CTX_get_ex_data(ssl_ctx, ngx_ssl_session_cache_index);
shm_zone         1591 event/ngx_event_openssl.c     cache = shm_zone->data;
shm_zone         1592 event/ngx_event_openssl.c     shpool = (ngx_slab_pool_t *) shm_zone->shm.addr;
shm_zone         1688 event/ngx_event_openssl.c     ngx_shm_zone_t           *shm_zone;
shm_zone         1705 event/ngx_event_openssl.c     shm_zone = SSL_CTX_get_ex_data(SSL_get_SSL_CTX(ssl_conn),
shm_zone         1708 event/ngx_event_openssl.c     cache = shm_zone->data;
shm_zone         1712 event/ngx_event_openssl.c     shpool = (ngx_slab_pool_t *) shm_zone->shm.addr;
shm_zone         1797 event/ngx_event_openssl.c     ngx_shm_zone_t           *shm_zone;
shm_zone         1803 event/ngx_event_openssl.c     shm_zone = SSL_CTX_get_ex_data(ssl, ngx_ssl_session_cache_index);
shm_zone         1805 event/ngx_event_openssl.c     if (shm_zone == NULL) {
shm_zone         1809 event/ngx_event_openssl.c     cache = shm_zone->data;
shm_zone         1819 event/ngx_event_openssl.c     shpool = (ngx_slab_pool_t *) shm_zone->shm.addr;
shm_zone          105 event/ngx_event_openssl.h     ssize_t builtin_session_cache, ngx_shm_zone_t *shm_zone, time_t timeout);
shm_zone         2186 http/modules/ngx_http_fastcgi_module.c         ngx_shm_zone_t  *shm_zone;
shm_zone         2188 http/modules/ngx_http_fastcgi_module.c         shm_zone = conf->upstream.cache;
shm_zone         2192 http/modules/ngx_http_fastcgi_module.c                            &shm_zone->shm.name);
shm_zone           42 http/modules/ngx_http_limit_req_module.c     ngx_shm_zone_t              *shm_zone;
shm_zone          155 http/modules/ngx_http_limit_req_module.c     if (lrcf->shm_zone == NULL) {
shm_zone          159 http/modules/ngx_http_limit_req_module.c     ctx = lrcf->shm_zone->data;
shm_zone          241 http/modules/ngx_http_limit_req_module.c                       excess / 1000, excess % 1000, &lrcf->shm_zone->shm.name);
shm_zone          254 http/modules/ngx_http_limit_req_module.c                   excess / 1000, excess % 1000, &lrcf->shm_zone->shm.name);
shm_zone          355 http/modules/ngx_http_limit_req_module.c     ctx = lrcf->shm_zone->data;
shm_zone          483 http/modules/ngx_http_limit_req_module.c ngx_http_limit_req_init_zone(ngx_shm_zone_t *shm_zone, void *data)
shm_zone          490 http/modules/ngx_http_limit_req_module.c     ctx = shm_zone->data;
shm_zone          494 http/modules/ngx_http_limit_req_module.c             ngx_log_error(NGX_LOG_EMERG, shm_zone->shm.log, 0,
shm_zone          497 http/modules/ngx_http_limit_req_module.c                           &shm_zone->shm.name, &ctx->var, &octx->var);
shm_zone          507 http/modules/ngx_http_limit_req_module.c     ctx->shpool = (ngx_slab_pool_t *) shm_zone->shm.addr;
shm_zone          509 http/modules/ngx_http_limit_req_module.c     if (shm_zone->shm.exists) {
shm_zone          527 http/modules/ngx_http_limit_req_module.c     len = sizeof(" in limit_req zone \"\"") + shm_zone->shm.name.len;
shm_zone          535 http/modules/ngx_http_limit_req_module.c                 &shm_zone->shm.name);
shm_zone          571 http/modules/ngx_http_limit_req_module.c     if (conf->shm_zone == NULL) {
shm_zone          593 http/modules/ngx_http_limit_req_module.c     ngx_shm_zone_t            *shm_zone;
shm_zone          698 http/modules/ngx_http_limit_req_module.c     shm_zone = ngx_shared_memory_add(cf, &name, size,
shm_zone          700 http/modules/ngx_http_limit_req_module.c     if (shm_zone == NULL) {
shm_zone          704 http/modules/ngx_http_limit_req_module.c     if (shm_zone->data) {
shm_zone          705 http/modules/ngx_http_limit_req_module.c         ctx = shm_zone->data;
shm_zone          713 http/modules/ngx_http_limit_req_module.c     shm_zone->init = ngx_http_limit_req_init_zone;
shm_zone          714 http/modules/ngx_http_limit_req_module.c     shm_zone->data = ctx;
shm_zone          729 http/modules/ngx_http_limit_req_module.c     if (lrcf->shm_zone) {
shm_zone          744 http/modules/ngx_http_limit_req_module.c             lrcf->shm_zone = ngx_shared_memory_add(cf, &s, 0,
shm_zone          746 http/modules/ngx_http_limit_req_module.c             if (lrcf->shm_zone == NULL) {
shm_zone          775 http/modules/ngx_http_limit_req_module.c     if (lrcf->shm_zone == NULL) {
shm_zone          782 http/modules/ngx_http_limit_req_module.c     if (lrcf->shm_zone->data == NULL) {
shm_zone          785 http/modules/ngx_http_limit_req_module.c                            &lrcf->shm_zone->shm.name);
shm_zone           21 http/modules/ngx_http_limit_zone_module.c     ngx_shm_zone_t     *shm_zone;
shm_zone           34 http/modules/ngx_http_limit_zone_module.c     ngx_shm_zone_t     *shm_zone;
shm_zone          140 http/modules/ngx_http_limit_zone_module.c     if (lzcf->shm_zone == NULL) {
shm_zone          144 http/modules/ngx_http_limit_zone_module.c     ctx = lzcf->shm_zone->data;
shm_zone          175 http/modules/ngx_http_limit_zone_module.c     shpool = (ngx_slab_pool_t *) lzcf->shm_zone->shm.addr;
shm_zone          211 http/modules/ngx_http_limit_zone_module.c                               &lzcf->shm_zone->shm.name);
shm_zone          252 http/modules/ngx_http_limit_zone_module.c     lzcln->shm_zone = lzcf->shm_zone;
shm_zone          310 http/modules/ngx_http_limit_zone_module.c     ctx = lzcln->shm_zone->data;
shm_zone          311 http/modules/ngx_http_limit_zone_module.c     shpool = (ngx_slab_pool_t *) lzcln->shm_zone->shm.addr;
shm_zone          317 http/modules/ngx_http_limit_zone_module.c     ngx_log_debug2(NGX_LOG_DEBUG_HTTP, lzcln->shm_zone->shm.log, 0,
shm_zone          332 http/modules/ngx_http_limit_zone_module.c ngx_http_limit_zone_init_zone(ngx_shm_zone_t *shm_zone, void *data)
shm_zone          341 http/modules/ngx_http_limit_zone_module.c     ctx = shm_zone->data;
shm_zone          345 http/modules/ngx_http_limit_zone_module.c             ngx_log_error(NGX_LOG_EMERG, shm_zone->shm.log, 0,
shm_zone          348 http/modules/ngx_http_limit_zone_module.c                           &shm_zone->shm.name, &ctx->var, &octx->var);
shm_zone          357 http/modules/ngx_http_limit_zone_module.c     shpool = (ngx_slab_pool_t *) shm_zone->shm.addr;
shm_zone          359 http/modules/ngx_http_limit_zone_module.c     if (shm_zone->shm.exists) {
shm_zone          380 http/modules/ngx_http_limit_zone_module.c     len = sizeof(" in limit_zone \"\"") + shm_zone->shm.name.len;
shm_zone          388 http/modules/ngx_http_limit_zone_module.c                 &shm_zone->shm.name);
shm_zone          423 http/modules/ngx_http_limit_zone_module.c     if (conf->shm_zone == NULL) {
shm_zone          438 http/modules/ngx_http_limit_zone_module.c     ngx_shm_zone_t             *shm_zone;
shm_zone          479 http/modules/ngx_http_limit_zone_module.c     shm_zone = ngx_shared_memory_add(cf, &value[1], n,
shm_zone          481 http/modules/ngx_http_limit_zone_module.c     if (shm_zone == NULL) {
shm_zone          485 http/modules/ngx_http_limit_zone_module.c     if (shm_zone->data) {
shm_zone          486 http/modules/ngx_http_limit_zone_module.c         ctx = shm_zone->data;
shm_zone          494 http/modules/ngx_http_limit_zone_module.c     shm_zone->init = ngx_http_limit_zone_init_zone;
shm_zone          495 http/modules/ngx_http_limit_zone_module.c     shm_zone->data = ctx;
shm_zone          509 http/modules/ngx_http_limit_zone_module.c     if (lzcf->shm_zone) {
shm_zone          515 http/modules/ngx_http_limit_zone_module.c     lzcf->shm_zone = ngx_shared_memory_add(cf, &value[1], 0,
shm_zone          517 http/modules/ngx_http_limit_zone_module.c     if (lzcf->shm_zone == NULL) {
shm_zone         1885 http/modules/ngx_http_proxy_module.c         ngx_shm_zone_t  *shm_zone;
shm_zone         1887 http/modules/ngx_http_proxy_module.c         shm_zone = conf->upstream.cache;
shm_zone         1891 http/modules/ngx_http_proxy_module.c                            &shm_zone->shm.name);
shm_zone         1211 http/modules/ngx_http_scgi_module.c         ngx_shm_zone_t  *shm_zone;
shm_zone         1213 http/modules/ngx_http_scgi_module.c         shm_zone = conf->upstream.cache;
shm_zone         1217 http/modules/ngx_http_scgi_module.c                            &shm_zone->shm.name);
shm_zone          479 http/modules/ngx_http_ssl_module.c     if (conf->shm_zone == NULL) {
shm_zone          480 http/modules/ngx_http_ssl_module.c         conf->shm_zone = prev->shm_zone;
shm_zone          485 http/modules/ngx_http_ssl_module.c                               conf->shm_zone, conf->session_timeout)
shm_zone          599 http/modules/ngx_http_ssl_module.c             sscf->shm_zone = ngx_shared_memory_add(cf, &name, n,
shm_zone          601 http/modules/ngx_http_ssl_module.c             if (sscf->shm_zone == NULL) {
shm_zone          611 http/modules/ngx_http_ssl_module.c     if (sscf->shm_zone && sscf->builtin_session_cache == NGX_CONF_UNSET) {
shm_zone           40 http/modules/ngx_http_ssl_module.h     ngx_shm_zone_t                 *shm_zone;
shm_zone         1264 http/modules/ngx_http_uwsgi_module.c         ngx_shm_zone_t  *shm_zone;
shm_zone         1266 http/modules/ngx_http_uwsgi_module.c         shm_zone = conf->upstream.cache;
shm_zone         1270 http/modules/ngx_http_uwsgi_module.c                            &shm_zone->shm.name);
shm_zone          123 http/ngx_http_cache.h     ngx_shm_zone_t                  *shm_zone;
shm_zone           61 http/ngx_http_file_cache.c ngx_http_file_cache_init(ngx_shm_zone_t *shm_zone, void *data)
shm_zone           69 http/ngx_http_file_cache.c     cache = shm_zone->data;
shm_zone           73 http/ngx_http_file_cache.c             ngx_log_error(NGX_LOG_EMERG, shm_zone->shm.log, 0,
shm_zone           76 http/ngx_http_file_cache.c                           &shm_zone->shm.name, &cache->path->name,
shm_zone           84 http/ngx_http_file_cache.c                 ngx_log_error(NGX_LOG_EMERG, shm_zone->shm.log, 0,
shm_zone           86 http/ngx_http_file_cache.c                               &shm_zone->shm.name);
shm_zone          105 http/ngx_http_file_cache.c     cache->shpool = (ngx_slab_pool_t *) shm_zone->shm.addr;
shm_zone          107 http/ngx_http_file_cache.c     if (shm_zone->shm.exists) {
shm_zone          134 http/ngx_http_file_cache.c     len = sizeof(" in cache keys zone \"\"") + shm_zone->shm.name.len;
shm_zone          142 http/ngx_http_file_cache.c                 &shm_zone->shm.name);
shm_zone         1664 http/ngx_http_file_cache.c     cache->shm_zone = ngx_shared_memory_add(cf, &name, size, cmd->post);
shm_zone         1665 http/ngx_http_file_cache.c     if (cache->shm_zone == NULL) {
shm_zone         1669 http/ngx_http_file_cache.c     if (cache->shm_zone->data) {
shm_zone         1676 http/ngx_http_file_cache.c     cache->shm_zone->init = ngx_http_file_cache_init;
shm_zone         1677 http/ngx_http_file_cache.c     cache->shm_zone->data = cache;
shm_zone          300 mail/ngx_mail_ssl_module.c     if (conf->shm_zone == NULL) {
shm_zone          301 mail/ngx_mail_ssl_module.c         conf->shm_zone = prev->shm_zone;
shm_zone          306 mail/ngx_mail_ssl_module.c                               conf->shm_zone, conf->session_timeout)
shm_zone          451 mail/ngx_mail_ssl_module.c             scf->shm_zone = ngx_shared_memory_add(cf, &name, n,
shm_zone          453 mail/ngx_mail_ssl_module.c             if (scf->shm_zone == NULL) {
shm_zone          463 mail/ngx_mail_ssl_module.c     if (scf->shm_zone && scf->builtin_session_cache == NGX_CONF_UNSET) {
shm_zone           40 mail/ngx_mail_ssl_module.h     ngx_shm_zone_t  *shm_zone;