prev              108 core/ngx_conf_file.c     ngx_conf_file_t  *prev, conf_file;
prev              117 core/ngx_conf_file.c     prev = NULL;
prev              132 core/ngx_conf_file.c         prev = cf->conf_file;
prev              268 core/ngx_conf_file.c         cf->conf_file = prev;
prev              254 core/ngx_conf_file.h #define ngx_conf_merge_value(conf, prev, default)                            \
prev              256 core/ngx_conf_file.h         conf = (prev == NGX_CONF_UNSET) ? default : prev;                    \
prev              259 core/ngx_conf_file.h #define ngx_conf_merge_ptr_value(conf, prev, default)                        \
prev              261 core/ngx_conf_file.h         conf = (prev == NGX_CONF_UNSET_PTR) ? default : prev;                \
prev              264 core/ngx_conf_file.h #define ngx_conf_merge_uint_value(conf, prev, default)                       \
prev              266 core/ngx_conf_file.h         conf = (prev == NGX_CONF_UNSET_UINT) ? default : prev;               \
prev              269 core/ngx_conf_file.h #define ngx_conf_merge_msec_value(conf, prev, default)                       \
prev              271 core/ngx_conf_file.h         conf = (prev == NGX_CONF_UNSET_MSEC) ? default : prev;               \
prev              274 core/ngx_conf_file.h #define ngx_conf_merge_sec_value(conf, prev, default)                        \
prev              276 core/ngx_conf_file.h         conf = (prev == NGX_CONF_UNSET) ? default : prev;                    \
prev              279 core/ngx_conf_file.h #define ngx_conf_merge_size_value(conf, prev, default)                       \
prev              281 core/ngx_conf_file.h         conf = (prev == NGX_CONF_UNSET_SIZE) ? default : prev;               \
prev              284 core/ngx_conf_file.h #define ngx_conf_merge_off_value(conf, prev, default)                        \
prev              286 core/ngx_conf_file.h         conf = (prev == NGX_CONF_UNSET) ? default : prev;                    \
prev              289 core/ngx_conf_file.h #define ngx_conf_merge_str_value(conf, prev, default)                        \
prev              291 core/ngx_conf_file.h         if (prev.data) {                                                     \
prev              292 core/ngx_conf_file.h             conf.len = prev.len;                                             \
prev              293 core/ngx_conf_file.h             conf.data = prev.data;                                           \
prev              300 core/ngx_conf_file.h #define ngx_conf_merge_bufs_value(conf, prev, default_num, default_size)     \
prev              302 core/ngx_conf_file.h         if (prev.num) {                                                      \
prev              303 core/ngx_conf_file.h             conf.num = prev.num;                                             \
prev              304 core/ngx_conf_file.h             conf.size = prev.size;                                           \
prev              311 core/ngx_conf_file.h #define ngx_conf_merge_bitmask_value(conf, prev, default)                    \
prev              313 core/ngx_conf_file.h         conf = (prev == 0) ? default : prev;                                 \
prev              838 core/ngx_connection.c     if (c->read->prev) {
prev              842 core/ngx_connection.c     if (c->write->prev) {
prev              859 core/ngx_connection.c     if (c->read->prev) {
prev              863 core/ngx_connection.c     if (c->write->prev) {
prev              301 core/ngx_file.c ngx_conf_merge_path_value(ngx_conf_t *cf, ngx_path_t **path, ngx_path_t *prev,
prev              308 core/ngx_file.c     if (prev) {
prev              309 core/ngx_file.c         *path = prev;
prev              820 core/ngx_file.c     void       *data, *prev;
prev              839 core/ngx_file.c     prev = ctx->data;
prev              847 core/ngx_file.c         if (ctx->init_handler(data, prev) == NGX_ABORT) {
prev              982 core/ngx_file.c         ctx->data = prev;
prev              102 core/ngx_file.h typedef ngx_int_t (*ngx_tree_init_handler_pt) (void *ctx, void *prev);
prev              141 core/ngx_file.h     ngx_path_t *prev, ngx_path_init_t *init);
prev               53 core/ngx_queue.c     ngx_queue_t  *q, *prev, *next;
prev               63 core/ngx_queue.c         prev = ngx_queue_prev(q);
prev               69 core/ngx_queue.c             if (cmp(prev, q) <= 0) {
prev               73 core/ngx_queue.c             prev = ngx_queue_prev(prev);
prev               75 core/ngx_queue.c         } while (prev != ngx_queue_sentinel(queue));
prev               77 core/ngx_queue.c         ngx_queue_insert_after(prev, q);
prev               18 core/ngx_queue.h     ngx_queue_t  *prev;
prev               24 core/ngx_queue.h     (q)->prev = q;                                                            \
prev               29 core/ngx_queue.h     (h == (h)->prev)
prev               34 core/ngx_queue.h     (x)->next->prev = x;                                                      \
prev               35 core/ngx_queue.h     (x)->prev = h;                                                            \
prev               43 core/ngx_queue.h     (x)->prev = (h)->prev;                                                    \
prev               44 core/ngx_queue.h     (x)->prev->next = x;                                                      \
prev               46 core/ngx_queue.h     (h)->prev = x
prev               54 core/ngx_queue.h     (h)->prev
prev               66 core/ngx_queue.h     (q)->prev
prev               72 core/ngx_queue.h     (x)->next->prev = (x)->prev;                                              \
prev               73 core/ngx_queue.h     (x)->prev->next = (x)->next;                                              \
prev               74 core/ngx_queue.h     (x)->prev = NULL;                                                         \
prev               80 core/ngx_queue.h     (x)->next->prev = (x)->prev;                                              \
prev               81 core/ngx_queue.h     (x)->prev->next = (x)->next
prev               87 core/ngx_queue.h     (n)->prev = (h)->prev;                                                    \
prev               88 core/ngx_queue.h     (n)->prev->next = n;                                                      \
prev               90 core/ngx_queue.h     (h)->prev = (q)->prev;                                                    \
prev               91 core/ngx_queue.h     (h)->prev->next = h;                                                      \
prev               92 core/ngx_queue.h     (q)->prev = n;
prev               96 core/ngx_queue.h     (h)->prev->next = (n)->next;                                              \
prev               97 core/ngx_queue.h     (n)->next->prev = (h)->prev;                                              \
prev               98 core/ngx_queue.h     (h)->prev = (n)->prev;                                                    \
prev               99 core/ngx_queue.h     (h)->prev->next = h;
prev              107 core/ngx_slab.c         slots[i].prev = 0;
prev              118 core/ngx_slab.c     pool->free.prev = 0;
prev              123 core/ngx_slab.c     pool->pages->prev = (uintptr_t) &pool->free;
prev              161 core/ngx_slab.c     ngx_slab_page_t  *page, *prev, *slots;
prev              232 core/ngx_slab.c                                 prev = (ngx_slab_page_t *)
prev              233 core/ngx_slab.c                                             (page->prev & ~NGX_SLAB_PAGE_MASK);
prev              234 core/ngx_slab.c                                 prev->next = page->next;
prev              235 core/ngx_slab.c                                 page->next->prev = page->prev;
prev              238 core/ngx_slab.c                                 page->prev = NGX_SLAB_SMALL;
prev              265 core/ngx_slab.c                             prev = (ngx_slab_page_t *)
prev              266 core/ngx_slab.c                                             (page->prev & ~NGX_SLAB_PAGE_MASK);
prev              267 core/ngx_slab.c                             prev->next = page->next;
prev              268 core/ngx_slab.c                             page->next->prev = page->prev;
prev              271 core/ngx_slab.c                             page->prev = NGX_SLAB_EXACT;
prev              307 core/ngx_slab.c                             prev = (ngx_slab_page_t *)
prev              308 core/ngx_slab.c                                             (page->prev & ~NGX_SLAB_PAGE_MASK);
prev              309 core/ngx_slab.c                             prev->next = page->next;
prev              310 core/ngx_slab.c                             page->next->prev = page->prev;
prev              313 core/ngx_slab.c                             page->prev = NGX_SLAB_BIG;
prev              354 core/ngx_slab.c             page->prev = (uintptr_t) &slots[slot] | NGX_SLAB_SMALL;
prev              367 core/ngx_slab.c             page->prev = (uintptr_t) &slots[slot] | NGX_SLAB_EXACT;
prev              380 core/ngx_slab.c             page->prev = (uintptr_t) &slots[slot] | NGX_SLAB_BIG;
prev              430 core/ngx_slab.c     type = page->prev & NGX_SLAB_PAGE_MASK;
prev              458 core/ngx_slab.c                 page->prev = (uintptr_t) &slots[slot] | NGX_SLAB_SMALL;
prev              459 core/ngx_slab.c                 page->next->prev = (uintptr_t) page | NGX_SLAB_SMALL;
prev              508 core/ngx_slab.c                 page->prev = (uintptr_t) &slots[slot] | NGX_SLAB_EXACT;
prev              509 core/ngx_slab.c                 page->next->prev = (uintptr_t) page | NGX_SLAB_EXACT;
prev              547 core/ngx_slab.c                 page->prev = (uintptr_t) &slots[slot] | NGX_SLAB_BIG;
prev              548 core/ngx_slab.c                 page->next->prev = (uintptr_t) page | NGX_SLAB_BIG;
prev              632 core/ngx_slab.c                 page[pages].prev = page->prev;
prev              634 core/ngx_slab.c                 p = (ngx_slab_page_t *) page->prev;
prev              636 core/ngx_slab.c                 page->next->prev = (uintptr_t) &page[pages];
prev              639 core/ngx_slab.c                 p = (ngx_slab_page_t *) page->prev;
prev              641 core/ngx_slab.c                 page->next->prev = page->prev;
prev              646 core/ngx_slab.c             page->prev = NGX_SLAB_PAGE;
prev              655 core/ngx_slab.c                 p->prev = NGX_SLAB_PAGE;
prev              673 core/ngx_slab.c     ngx_slab_page_t  *prev;
prev              682 core/ngx_slab.c         prev = (ngx_slab_page_t *) (page->prev & ~NGX_SLAB_PAGE_MASK);
prev              683 core/ngx_slab.c         prev->next = page->next;
prev              684 core/ngx_slab.c         page->next->prev = page->prev;
prev              687 core/ngx_slab.c     page->prev = (uintptr_t) &pool->free;
prev              690 core/ngx_slab.c     page->next->prev = (uintptr_t) page;
prev               20 core/ngx_slab.h     uintptr_t         prev;
prev              339 event/modules/ngx_epoll_module.c     uint32_t             events, prev;
prev              350 event/modules/ngx_epoll_module.c         prev = EPOLLOUT;
prev              357 event/modules/ngx_epoll_module.c         prev = EPOLLIN;
prev              365 event/modules/ngx_epoll_module.c         events |= prev;
prev              397 event/modules/ngx_epoll_module.c     uint32_t             prev;
prev              417 event/modules/ngx_epoll_module.c         prev = EPOLLOUT;
prev              421 event/modules/ngx_epoll_module.c         prev = EPOLLIN;
prev              426 event/modules/ngx_epoll_module.c         ee.events = prev | (uint32_t) flags;
prev              270 event/modules/ngx_eventport_module.c     ngx_int_t          events, prev;
prev              280 event/modules/ngx_eventport_module.c         prev = POLLOUT;
prev              287 event/modules/ngx_eventport_module.c         prev = POLLIN;
prev              294 event/modules/ngx_eventport_module.c         events |= prev;
prev              167 event/ngx_event.h     ngx_event_t    **prev;
prev              429 event/ngx_event_pipe.c     u_char            *prev;
prev              522 event/ngx_event_pipe.c         prev = NULL;
prev              528 event/ngx_event_pipe.c                 if (prev == cl->buf->start) {
prev              533 event/ngx_event_pipe.c                 prev = cl->buf->start;
prev               23 event/ngx_event_posted.h     if (ev->prev == NULL) {                                                   \
prev               25 event/ngx_event_posted.h         ev->prev = (ngx_event_t **) queue;                                    \
prev               29 event/ngx_event_posted.h             ev->next->prev = &ev->next;                                       \
prev               49 event/ngx_event_posted.h     *(ev->prev) = ev->next;                                                   \
prev               52 event/ngx_event_posted.h         ev->next->prev = ev->prev;                                            \
prev               55 event/ngx_event_posted.h     ev->prev = NULL;                                                          \
prev              343 http/modules/ngx_http_access_module.c     ngx_http_access_loc_conf_t  *prev = parent;
prev              347 http/modules/ngx_http_access_module.c         conf->rules = prev->rules;
prev              352 http/modules/ngx_http_access_module.c         conf->rules6 = prev->rules6;
prev              234 http/modules/ngx_http_addition_filter_module.c     ngx_http_addition_conf_t *prev = parent;
prev              237 http/modules/ngx_http_addition_filter_module.c     ngx_conf_merge_str_value(conf->before_body, prev->before_body, "");
prev              238 http/modules/ngx_http_addition_filter_module.c     ngx_conf_merge_str_value(conf->after_body, prev->after_body, "");
prev              241 http/modules/ngx_http_addition_filter_module.c                              &prev->types_keys, &prev->types,
prev              384 http/modules/ngx_http_auth_basic_module.c     ngx_http_auth_basic_loc_conf_t  *prev = parent;
prev              388 http/modules/ngx_http_auth_basic_module.c         conf->realm = prev->realm;
prev              392 http/modules/ngx_http_auth_basic_module.c         conf->user_file = prev->user_file;
prev              644 http/modules/ngx_http_autoindex_module.c     ngx_http_autoindex_loc_conf_t *prev = parent;
prev              647 http/modules/ngx_http_autoindex_module.c     ngx_conf_merge_value(conf->enable, prev->enable, 0);
prev              648 http/modules/ngx_http_autoindex_module.c     ngx_conf_merge_value(conf->localtime, prev->localtime, 0);
prev              649 http/modules/ngx_http_autoindex_module.c     ngx_conf_merge_value(conf->exact_size, prev->exact_size, 1);
prev              448 http/modules/ngx_http_browser_module.c     ngx_http_browser_conf_t *prev = parent;
prev              461 http/modules/ngx_http_browser_module.c         conf->modern_browsers = prev->modern_browsers;
prev              504 http/modules/ngx_http_browser_module.c         conf->ancient_browsers = prev->ancient_browsers;
prev              508 http/modules/ngx_http_browser_module.c         conf->modern_browser_value = prev->modern_browser_value;
prev              516 http/modules/ngx_http_browser_module.c         conf->ancient_browser_value = prev->ancient_browser_value;
prev             1546 http/modules/ngx_http_charset_filter_module.c     ngx_http_charset_loc_conf_t *prev = parent;
prev             1554 http/modules/ngx_http_charset_filter_module.c                              &prev->types_keys, &prev->types,
prev             1561 http/modules/ngx_http_charset_filter_module.c     ngx_conf_merge_value(conf->override_charset, prev->override_charset, 0);
prev             1562 http/modules/ngx_http_charset_filter_module.c     ngx_conf_merge_value(conf->charset, prev->charset, NGX_HTTP_CHARSET_OFF);
prev             1563 http/modules/ngx_http_charset_filter_module.c     ngx_conf_merge_value(conf->source_charset, prev->source_charset,
prev             1106 http/modules/ngx_http_dav_module.c     ngx_http_dav_loc_conf_t  *prev = parent;
prev             1109 http/modules/ngx_http_dav_module.c     ngx_conf_merge_bitmask_value(conf->methods, prev->methods,
prev             1113 http/modules/ngx_http_dav_module.c                          prev->min_delete_depth, 0);
prev             1115 http/modules/ngx_http_dav_module.c     ngx_conf_merge_uint_value(conf->access, prev->access, 0600);
prev             1118 http/modules/ngx_http_dav_module.c                          prev->create_full_put_path, 0);
prev              186 http/modules/ngx_http_degradation_module.c     ngx_http_degradation_loc_conf_t  *prev = parent;
prev              189 http/modules/ngx_http_degradation_module.c     ngx_conf_merge_uint_value(conf->degrade, prev->degrade, 0);
prev             1573 http/modules/ngx_http_fastcgi_module.c     ngx_buf_t               *b, **prev;
prev             1586 http/modules/ngx_http_fastcgi_module.c     prev = &buf->shadow;
prev             1717 http/modules/ngx_http_fastcgi_module.c         *prev = b;
prev             1718 http/modules/ngx_http_fastcgi_module.c         prev = &b->shadow;
prev             2013 http/modules/ngx_http_fastcgi_module.c     ngx_http_fastcgi_loc_conf_t *prev = parent;
prev             2030 http/modules/ngx_http_fastcgi_module.c                               prev->upstream.store, 0);
prev             2033 http/modules/ngx_http_fastcgi_module.c             conf->upstream.store_lengths = prev->upstream.store_lengths;
prev             2034 http/modules/ngx_http_fastcgi_module.c             conf->upstream.store_values = prev->upstream.store_values;
prev             2039 http/modules/ngx_http_fastcgi_module.c                               prev->upstream.store_access, 0600);
prev             2042 http/modules/ngx_http_fastcgi_module.c                               prev->upstream.buffering, 1);
prev             2045 http/modules/ngx_http_fastcgi_module.c                               prev->upstream.ignore_client_abort, 0);
prev             2048 http/modules/ngx_http_fastcgi_module.c                               prev->upstream.connect_timeout, 60000);
prev             2051 http/modules/ngx_http_fastcgi_module.c                               prev->upstream.send_timeout, 60000);
prev             2054 http/modules/ngx_http_fastcgi_module.c                               prev->upstream.read_timeout, 60000);
prev             2057 http/modules/ngx_http_fastcgi_module.c                               prev->upstream.send_lowat, 0);
prev             2060 http/modules/ngx_http_fastcgi_module.c                               prev->upstream.buffer_size,
prev             2064 http/modules/ngx_http_fastcgi_module.c     ngx_conf_merge_bufs_value(conf->upstream.bufs, prev->upstream.bufs,
prev             2081 http/modules/ngx_http_fastcgi_module.c                               prev->upstream.busy_buffers_size_conf,
prev             2112 http/modules/ngx_http_fastcgi_module.c                               prev->upstream.temp_file_write_size_conf,
prev             2133 http/modules/ngx_http_fastcgi_module.c                               prev->upstream.max_temp_file_size_conf,
prev             2157 http/modules/ngx_http_fastcgi_module.c                               prev->upstream.ignore_headers,
prev             2162 http/modules/ngx_http_fastcgi_module.c                               prev->upstream.next_upstream,
prev             2173 http/modules/ngx_http_fastcgi_module.c                               prev->upstream.temp_path,
prev             2183 http/modules/ngx_http_fastcgi_module.c                               prev->upstream.cache, NULL);
prev             2198 http/modules/ngx_http_fastcgi_module.c                               prev->upstream.cache_min_uses, 1);
prev             2201 http/modules/ngx_http_fastcgi_module.c                               prev->upstream.cache_use_stale,
prev             2211 http/modules/ngx_http_fastcgi_module.c         conf->upstream.cache_methods = prev->upstream.cache_methods;
prev             2217 http/modules/ngx_http_fastcgi_module.c                              prev->upstream.cache_bypass, NULL);
prev             2220 http/modules/ngx_http_fastcgi_module.c                              prev->upstream.no_cache, NULL);
prev             2229 http/modules/ngx_http_fastcgi_module.c                              prev->upstream.cache_valid, NULL);
prev             2232 http/modules/ngx_http_fastcgi_module.c         conf->cache_key = prev->cache_key;
prev             2238 http/modules/ngx_http_fastcgi_module.c                               prev->upstream.pass_request_headers, 1);
prev             2240 http/modules/ngx_http_fastcgi_module.c                               prev->upstream.pass_request_body, 1);
prev             2243 http/modules/ngx_http_fastcgi_module.c                               prev->upstream.intercept_errors, 0);
prev             2245 http/modules/ngx_http_fastcgi_module.c     ngx_conf_merge_ptr_value(conf->catch_stderr, prev->catch_stderr, NULL);
prev             2248 http/modules/ngx_http_fastcgi_module.c     ngx_conf_merge_str_value(conf->index, prev->index, "");
prev             2255 http/modules/ngx_http_fastcgi_module.c              &prev->upstream, ngx_http_fastcgi_hide_headers, &hash)
prev             2262 http/modules/ngx_http_fastcgi_module.c         conf->upstream.upstream = prev->upstream.upstream;
prev             2266 http/modules/ngx_http_fastcgi_module.c         conf->fastcgi_lengths = prev->fastcgi_lengths;
prev             2267 http/modules/ngx_http_fastcgi_module.c         conf->fastcgi_values = prev->fastcgi_values;
prev             2279 http/modules/ngx_http_fastcgi_module.c         conf->split_regex = prev->split_regex;
prev             2280 http/modules/ngx_http_fastcgi_module.c         conf->split_name = prev->split_name;
prev             2285 http/modules/ngx_http_fastcgi_module.c         conf->flushes = prev->flushes;
prev             2286 http/modules/ngx_http_fastcgi_module.c         conf->params_len = prev->params_len;
prev             2287 http/modules/ngx_http_fastcgi_module.c         conf->params = prev->params;
prev             2288 http/modules/ngx_http_fastcgi_module.c         conf->params_source = prev->params_source;
prev             2289 http/modules/ngx_http_fastcgi_module.c         conf->headers_hash = prev->headers_hash;
prev             2296 http/modules/ngx_http_fastcgi_module.c                 == (prev->upstream.cache == NULL))
prev             1118 http/modules/ngx_http_gzip_filter_module.c     ngx_http_gzip_conf_t *prev = parent;
prev             1121 http/modules/ngx_http_gzip_filter_module.c     ngx_conf_merge_value(conf->enable, prev->enable, 0);
prev             1122 http/modules/ngx_http_gzip_filter_module.c     ngx_conf_merge_value(conf->no_buffer, prev->no_buffer, 0);
prev             1124 http/modules/ngx_http_gzip_filter_module.c     ngx_conf_merge_bufs_value(conf->bufs, prev->bufs,
prev             1127 http/modules/ngx_http_gzip_filter_module.c     ngx_conf_merge_size_value(conf->postpone_gzipping, prev->postpone_gzipping,
prev             1129 http/modules/ngx_http_gzip_filter_module.c     ngx_conf_merge_value(conf->level, prev->level, 1);
prev             1130 http/modules/ngx_http_gzip_filter_module.c     ngx_conf_merge_size_value(conf->wbits, prev->wbits, MAX_WBITS);
prev             1131 http/modules/ngx_http_gzip_filter_module.c     ngx_conf_merge_size_value(conf->memlevel, prev->memlevel,
prev             1133 http/modules/ngx_http_gzip_filter_module.c     ngx_conf_merge_value(conf->min_length, prev->min_length, 20);
prev             1136 http/modules/ngx_http_gzip_filter_module.c                              &prev->types_keys, &prev->types,
prev              273 http/modules/ngx_http_gzip_static_module.c     ngx_http_gzip_static_conf_t *prev = parent;
prev              276 http/modules/ngx_http_gzip_static_module.c     ngx_conf_merge_value(conf->enable, prev->enable, 0);
prev              428 http/modules/ngx_http_headers_filter_module.c     ngx_http_headers_conf_t *prev = parent;
prev              432 http/modules/ngx_http_headers_filter_module.c         conf->expires = prev->expires;
prev              433 http/modules/ngx_http_headers_filter_module.c         conf->expires_time = prev->expires_time;
prev              441 http/modules/ngx_http_headers_filter_module.c         conf->headers = prev->headers;
prev             1156 http/modules/ngx_http_image_filter_module.c     ngx_http_image_filter_conf_t *prev = parent;
prev             1161 http/modules/ngx_http_image_filter_module.c         if (prev->filter == NGX_CONF_UNSET_UINT) {
prev             1165 http/modules/ngx_http_image_filter_module.c             conf->filter = prev->filter;
prev             1166 http/modules/ngx_http_image_filter_module.c             conf->width = prev->width;
prev             1167 http/modules/ngx_http_image_filter_module.c             conf->height = prev->height;
prev             1168 http/modules/ngx_http_image_filter_module.c             conf->wcv = prev->wcv;
prev             1169 http/modules/ngx_http_image_filter_module.c             conf->hcv = prev->hcv;
prev             1174 http/modules/ngx_http_image_filter_module.c     ngx_conf_merge_uint_value(conf->jpeg_quality, prev->jpeg_quality, 75);
prev             1177 http/modules/ngx_http_image_filter_module.c         conf->jqcv = prev->jqcv;
prev             1180 http/modules/ngx_http_image_filter_module.c     ngx_conf_merge_uint_value(conf->angle, prev->angle, 0);
prev             1182 http/modules/ngx_http_image_filter_module.c         conf->acv = prev->acv;
prev             1185 http/modules/ngx_http_image_filter_module.c     ngx_conf_merge_value(conf->transparency, prev->transparency, 1);
prev             1187 http/modules/ngx_http_image_filter_module.c     ngx_conf_merge_size_value(conf->buffer_size, prev->buffer_size,
prev              382 http/modules/ngx_http_index_module.c     ngx_http_index_loc_conf_t  *prev = parent;
prev              388 http/modules/ngx_http_index_module.c         conf->indices = prev->indices;
prev              389 http/modules/ngx_http_index_module.c         conf->max_index_len = prev->max_index_len;
prev              568 http/modules/ngx_http_limit_req_module.c     ngx_http_limit_req_conf_t *prev = parent;
prev              572 http/modules/ngx_http_limit_req_module.c         *conf = *prev;
prev              575 http/modules/ngx_http_limit_req_module.c     ngx_conf_merge_uint_value(conf->limit_log_level, prev->limit_log_level,
prev              420 http/modules/ngx_http_limit_zone_module.c     ngx_http_limit_zone_conf_t *prev = parent;
prev              424 http/modules/ngx_http_limit_zone_module.c         *conf = *prev;
prev              427 http/modules/ngx_http_limit_zone_module.c     ngx_conf_merge_uint_value(conf->log_level, prev->log_level, NGX_LOG_ERR);
prev              792 http/modules/ngx_http_log_module.c     ngx_http_log_loc_conf_t *prev = parent;
prev              801 http/modules/ngx_http_log_module.c         conf->open_file_cache = prev->open_file_cache;
prev              802 http/modules/ngx_http_log_module.c         conf->open_file_cache_valid = prev->open_file_cache_valid;
prev              803 http/modules/ngx_http_log_module.c         conf->open_file_cache_min_uses = prev->open_file_cache_min_uses;
prev              814 http/modules/ngx_http_log_module.c     conf->logs = prev->logs;
prev              815 http/modules/ngx_http_log_module.c     conf->off = prev->off;
prev              544 http/modules/ngx_http_memcached_module.c     ngx_http_memcached_loc_conf_t *prev = parent;
prev              548 http/modules/ngx_http_memcached_module.c                               prev->upstream.connect_timeout, 60000);
prev              551 http/modules/ngx_http_memcached_module.c                               prev->upstream.send_timeout, 60000);
prev              554 http/modules/ngx_http_memcached_module.c                               prev->upstream.read_timeout, 60000);
prev              557 http/modules/ngx_http_memcached_module.c                               prev->upstream.buffer_size,
prev              561 http/modules/ngx_http_memcached_module.c                               prev->upstream.next_upstream,
prev              572 http/modules/ngx_http_memcached_module.c         conf->upstream.upstream = prev->upstream.upstream;
prev              576 http/modules/ngx_http_memcached_module.c         conf->index = prev->index;
prev              117 http/modules/ngx_http_proxy_module.c     ngx_http_proxy_loc_conf_t *conf, ngx_http_proxy_loc_conf_t *prev);
prev             1717 http/modules/ngx_http_proxy_module.c     ngx_http_proxy_loc_conf_t *prev = parent;
prev             1730 http/modules/ngx_http_proxy_module.c                               prev->upstream.store, 0);
prev             1733 http/modules/ngx_http_proxy_module.c             conf->upstream.store_lengths = prev->upstream.store_lengths;
prev             1734 http/modules/ngx_http_proxy_module.c             conf->upstream.store_values = prev->upstream.store_values;
prev             1739 http/modules/ngx_http_proxy_module.c                               prev->upstream.store_access, 0600);
prev             1742 http/modules/ngx_http_proxy_module.c                               prev->upstream.buffering, 1);
prev             1745 http/modules/ngx_http_proxy_module.c                               prev->upstream.ignore_client_abort, 0);
prev             1748 http/modules/ngx_http_proxy_module.c                               prev->upstream.connect_timeout, 60000);
prev             1751 http/modules/ngx_http_proxy_module.c                               prev->upstream.send_timeout, 60000);
prev             1754 http/modules/ngx_http_proxy_module.c                               prev->upstream.read_timeout, 60000);
prev             1757 http/modules/ngx_http_proxy_module.c                               prev->upstream.send_lowat, 0);
prev             1760 http/modules/ngx_http_proxy_module.c                               prev->upstream.buffer_size,
prev             1763 http/modules/ngx_http_proxy_module.c     ngx_conf_merge_bufs_value(conf->upstream.bufs, prev->upstream.bufs,
prev             1780 http/modules/ngx_http_proxy_module.c                               prev->upstream.busy_buffers_size_conf,
prev             1811 http/modules/ngx_http_proxy_module.c                               prev->upstream.temp_file_write_size_conf,
prev             1831 http/modules/ngx_http_proxy_module.c                               prev->upstream.max_temp_file_size_conf,
prev             1855 http/modules/ngx_http_proxy_module.c                               prev->upstream.ignore_headers,
prev             1860 http/modules/ngx_http_proxy_module.c                               prev->upstream.next_upstream,
prev             1871 http/modules/ngx_http_proxy_module.c                               prev->upstream.temp_path,
prev             1882 http/modules/ngx_http_proxy_module.c                               prev->upstream.cache, NULL);
prev             1897 http/modules/ngx_http_proxy_module.c                               prev->upstream.cache_min_uses, 1);
prev             1900 http/modules/ngx_http_proxy_module.c                               prev->upstream.cache_use_stale,
prev             1905 http/modules/ngx_http_proxy_module.c         conf->upstream.cache_methods = prev->upstream.cache_methods;
prev             1916 http/modules/ngx_http_proxy_module.c                              prev->upstream.cache_bypass, NULL);
prev             1919 http/modules/ngx_http_proxy_module.c                              prev->upstream.no_cache, NULL);
prev             1928 http/modules/ngx_http_proxy_module.c                              prev->upstream.cache_valid, NULL);
prev             1931 http/modules/ngx_http_proxy_module.c         conf->cache_key = prev->cache_key;
prev             1937 http/modules/ngx_http_proxy_module.c         conf->method = prev->method;
prev             1945 http/modules/ngx_http_proxy_module.c                               prev->upstream.pass_request_headers, 1);
prev             1947 http/modules/ngx_http_proxy_module.c                               prev->upstream.pass_request_body, 1);
prev             1950 http/modules/ngx_http_proxy_module.c                               prev->upstream.intercept_errors, 0);
prev             1954 http/modules/ngx_http_proxy_module.c                               prev->upstream.ssl_session_reuse, 1);
prev             1957 http/modules/ngx_http_proxy_module.c     ngx_conf_merge_value(conf->redirect, prev->redirect, 1);
prev             1962 http/modules/ngx_http_proxy_module.c             conf->redirects = prev->redirects;
prev             2004 http/modules/ngx_http_proxy_module.c         conf->upstream.ssl = prev->upstream.ssl;
prev             2009 http/modules/ngx_http_proxy_module.c                               prev->headers_hash_max_size, 512);
prev             2012 http/modules/ngx_http_proxy_module.c                               prev->headers_hash_bucket_size, 64);
prev             2022 http/modules/ngx_http_proxy_module.c             &prev->upstream, ngx_http_proxy_hide_headers, &hash)
prev             2029 http/modules/ngx_http_proxy_module.c         conf->upstream.upstream = prev->upstream.upstream;
prev             2030 http/modules/ngx_http_proxy_module.c         conf->vars = prev->vars;
prev             2034 http/modules/ngx_http_proxy_module.c         conf->proxy_lengths = prev->proxy_lengths;
prev             2035 http/modules/ngx_http_proxy_module.c         conf->proxy_values = prev->proxy_values;
prev             2042 http/modules/ngx_http_proxy_module.c             conf->location = prev->location;
prev             2047 http/modules/ngx_http_proxy_module.c         conf->body_source = prev->body_source;
prev             2048 http/modules/ngx_http_proxy_module.c         conf->body_set_len = prev->body_set_len;
prev             2049 http/modules/ngx_http_proxy_module.c         conf->body_set = prev->body_set;
prev             2085 http/modules/ngx_http_proxy_module.c     if (ngx_http_proxy_merge_headers(cf, conf, prev) != NGX_OK) {
prev             2095 http/modules/ngx_http_proxy_module.c     ngx_http_proxy_loc_conf_t *prev)
prev             2109 http/modules/ngx_http_proxy_module.c         conf->flushes = prev->flushes;
prev             2110 http/modules/ngx_http_proxy_module.c         conf->headers_set_len = prev->headers_set_len;
prev             2111 http/modules/ngx_http_proxy_module.c         conf->headers_set = prev->headers_set;
prev             2112 http/modules/ngx_http_proxy_module.c         conf->headers_set_hash = prev->headers_set_hash;
prev             2113 http/modules/ngx_http_proxy_module.c         conf->headers_source = prev->headers_source;
prev             2118 http/modules/ngx_http_proxy_module.c         && ((conf->upstream.cache == NULL) == (prev->upstream.cache == NULL))
prev              291 http/modules/ngx_http_random_index_module.c     ngx_http_random_index_loc_conf_t *prev = parent;
prev              294 http/modules/ngx_http_random_index_module.c     ngx_conf_merge_value(conf->enable, prev->enable, 0);
prev              428 http/modules/ngx_http_realip_module.c     ngx_http_realip_loc_conf_t  *prev = parent;
prev              432 http/modules/ngx_http_realip_module.c         conf->from = prev->from;
prev              437 http/modules/ngx_http_realip_module.c         conf->unixsock = (prev->unixsock == 2) ? 0 : prev->unixsock;
prev              441 http/modules/ngx_http_realip_module.c     ngx_conf_merge_uint_value(conf->type, prev->type, NGX_HTTP_REALIP_XREALIP);
prev              444 http/modules/ngx_http_realip_module.c         conf->hash = prev->hash;
prev              445 http/modules/ngx_http_realip_module.c         conf->header = prev->header;
prev              250 http/modules/ngx_http_referer_module.c     ngx_http_referer_conf_t *prev = parent;
prev              256 http/modules/ngx_http_referer_module.c         conf->hash = prev->hash;
prev              259 http/modules/ngx_http_referer_module.c         ngx_conf_merge_ptr_value(conf->regex, prev->regex, NULL);
prev              261 http/modules/ngx_http_referer_module.c         ngx_conf_merge_value(conf->no_referer, prev->no_referer, 0);
prev              262 http/modules/ngx_http_referer_module.c         ngx_conf_merge_value(conf->blocked_referer, prev->blocked_referer, 0);
prev              337 http/modules/ngx_http_referer_module.c     ngx_conf_merge_ptr_value(conf->regex, prev->regex, NULL);
prev              237 http/modules/ngx_http_rewrite_module.c     ngx_http_rewrite_loc_conf_t *prev = parent;
prev              242 http/modules/ngx_http_rewrite_module.c     ngx_conf_merge_value(conf->log, prev->log, 0);
prev              244 http/modules/ngx_http_rewrite_module.c                          prev->uninitialized_variable_warn, 1);
prev              245 http/modules/ngx_http_rewrite_module.c     ngx_conf_merge_uint_value(conf->stack_size, prev->stack_size, 10);
prev              251 http/modules/ngx_http_rewrite_module.c     if (conf->codes == prev->codes) {
prev             1040 http/modules/ngx_http_scgi_module.c     ngx_http_scgi_loc_conf_t *prev = parent;
prev             1056 http/modules/ngx_http_scgi_module.c         ngx_conf_merge_value(conf->upstream.store, prev->upstream.store, 0);
prev             1059 http/modules/ngx_http_scgi_module.c             conf->upstream.store_lengths = prev->upstream.store_lengths;
prev             1060 http/modules/ngx_http_scgi_module.c             conf->upstream.store_values = prev->upstream.store_values;
prev             1065 http/modules/ngx_http_scgi_module.c                               prev->upstream.store_access, 0600);
prev             1068 http/modules/ngx_http_scgi_module.c                               prev->upstream.buffering, 1);
prev             1071 http/modules/ngx_http_scgi_module.c                               prev->upstream.ignore_client_abort, 0);
prev             1074 http/modules/ngx_http_scgi_module.c                               prev->upstream.connect_timeout, 60000);
prev             1077 http/modules/ngx_http_scgi_module.c                               prev->upstream.send_timeout, 60000);
prev             1080 http/modules/ngx_http_scgi_module.c                               prev->upstream.read_timeout, 60000);
prev             1083 http/modules/ngx_http_scgi_module.c                               prev->upstream.send_lowat, 0);
prev             1086 http/modules/ngx_http_scgi_module.c                               prev->upstream.buffer_size,
prev             1090 http/modules/ngx_http_scgi_module.c     ngx_conf_merge_bufs_value(conf->upstream.bufs, prev->upstream.bufs,
prev             1107 http/modules/ngx_http_scgi_module.c                               prev->upstream.busy_buffers_size_conf,
prev             1138 http/modules/ngx_http_scgi_module.c                               prev->upstream.temp_file_write_size_conf,
prev             1159 http/modules/ngx_http_scgi_module.c                               prev->upstream.max_temp_file_size_conf,
prev             1182 http/modules/ngx_http_scgi_module.c                                  prev->upstream.ignore_headers,
prev             1187 http/modules/ngx_http_scgi_module.c                                  prev->upstream.next_upstream,
prev             1198 http/modules/ngx_http_scgi_module.c                                   prev->upstream.temp_path,
prev             1208 http/modules/ngx_http_scgi_module.c                               prev->upstream.cache, NULL);
prev             1223 http/modules/ngx_http_scgi_module.c                               prev->upstream.cache_min_uses, 1);
prev             1226 http/modules/ngx_http_scgi_module.c                               prev->upstream.cache_use_stale,
prev             1236 http/modules/ngx_http_scgi_module.c         conf->upstream.cache_methods = prev->upstream.cache_methods;
prev             1242 http/modules/ngx_http_scgi_module.c                              prev->upstream.cache_bypass, NULL);
prev             1245 http/modules/ngx_http_scgi_module.c                              prev->upstream.no_cache, NULL);
prev             1248 http/modules/ngx_http_scgi_module.c                              prev->upstream.cache_valid, NULL);
prev             1251 http/modules/ngx_http_scgi_module.c         conf->cache_key = prev->cache_key;
prev             1257 http/modules/ngx_http_scgi_module.c                          prev->upstream.pass_request_headers, 1);
prev             1259 http/modules/ngx_http_scgi_module.c                          prev->upstream.pass_request_body, 1);
prev             1262 http/modules/ngx_http_scgi_module.c                          prev->upstream.intercept_errors, 0);
prev             1269 http/modules/ngx_http_scgi_module.c             &prev->upstream, ngx_http_scgi_hide_headers, &hash)
prev             1276 http/modules/ngx_http_scgi_module.c         conf->upstream.upstream = prev->upstream.upstream;
prev             1280 http/modules/ngx_http_scgi_module.c         conf->scgi_lengths = prev->scgi_lengths;
prev             1281 http/modules/ngx_http_scgi_module.c         conf->scgi_values = prev->scgi_values;
prev             1292 http/modules/ngx_http_scgi_module.c         conf->flushes = prev->flushes;
prev             1293 http/modules/ngx_http_scgi_module.c         conf->params_len = prev->params_len;
prev             1294 http/modules/ngx_http_scgi_module.c         conf->params = prev->params;
prev             1295 http/modules/ngx_http_scgi_module.c         conf->params_source = prev->params_source;
prev             1296 http/modules/ngx_http_scgi_module.c         conf->headers_hash = prev->headers_hash;
prev             1303 http/modules/ngx_http_scgi_module.c                 == (prev->upstream.cache == NULL))
prev              317 http/modules/ngx_http_secure_link_module.c     ngx_http_secure_link_conf_t *prev = parent;
prev              320 http/modules/ngx_http_secure_link_module.c     ngx_conf_merge_str_value(conf->secret, prev->secret, "");
prev              323 http/modules/ngx_http_secure_link_module.c         conf->variable = prev->variable;
prev              327 http/modules/ngx_http_secure_link_module.c         conf->md5 = prev->md5;
prev             2766 http/modules/ngx_http_ssi_filter_module.c     ngx_http_ssi_loc_conf_t *prev = parent;
prev             2769 http/modules/ngx_http_ssi_filter_module.c     ngx_conf_merge_value(conf->enable, prev->enable, 0);
prev             2770 http/modules/ngx_http_ssi_filter_module.c     ngx_conf_merge_value(conf->silent_errors, prev->silent_errors, 0);
prev             2772 http/modules/ngx_http_ssi_filter_module.c                          prev->ignore_recycled_buffers, 0);
prev             2774 http/modules/ngx_http_ssi_filter_module.c     ngx_conf_merge_size_value(conf->min_file_chunk, prev->min_file_chunk, 1024);
prev             2775 http/modules/ngx_http_ssi_filter_module.c     ngx_conf_merge_size_value(conf->value_len, prev->value_len, 256);
prev             2778 http/modules/ngx_http_ssi_filter_module.c                              &prev->types_keys, &prev->types,
prev              335 http/modules/ngx_http_ssl_module.c     ngx_http_ssl_srv_conf_t *prev = parent;
prev              340 http/modules/ngx_http_ssl_module.c     ngx_conf_merge_value(conf->enable, prev->enable, 0);
prev              343 http/modules/ngx_http_ssl_module.c                          prev->session_timeout, 300);
prev              346 http/modules/ngx_http_ssl_module.c                          prev->prefer_server_ciphers, 0);
prev              348 http/modules/ngx_http_ssl_module.c     ngx_conf_merge_bitmask_value(conf->protocols, prev->protocols,
prev              351 http/modules/ngx_http_ssl_module.c     ngx_conf_merge_uint_value(conf->verify, prev->verify, 0);
prev              352 http/modules/ngx_http_ssl_module.c     ngx_conf_merge_uint_value(conf->verify_depth, prev->verify_depth, 1);
prev              354 http/modules/ngx_http_ssl_module.c     ngx_conf_merge_str_value(conf->certificate, prev->certificate, "");
prev              355 http/modules/ngx_http_ssl_module.c     ngx_conf_merge_str_value(conf->certificate_key, prev->certificate_key, "");
prev              357 http/modules/ngx_http_ssl_module.c     ngx_conf_merge_str_value(conf->dhparam, prev->dhparam, "");
prev              359 http/modules/ngx_http_ssl_module.c     ngx_conf_merge_str_value(conf->client_certificate, prev->client_certificate,
prev              361 http/modules/ngx_http_ssl_module.c     ngx_conf_merge_str_value(conf->crl, prev->crl, "");
prev              363 http/modules/ngx_http_ssl_module.c     ngx_conf_merge_str_value(conf->ciphers, prev->ciphers, NGX_DEFAULT_CIPHERS);
prev              477 http/modules/ngx_http_ssl_module.c                          prev->builtin_session_cache, NGX_SSL_NONE_SCACHE);
prev              480 http/modules/ngx_http_ssl_module.c         conf->shm_zone = prev->shm_zone;
prev              683 http/modules/ngx_http_sub_filter_module.c     ngx_http_sub_loc_conf_t *prev = parent;
prev              686 http/modules/ngx_http_sub_filter_module.c     ngx_conf_merge_value(conf->once, prev->once, 1);
prev              687 http/modules/ngx_http_sub_filter_module.c     ngx_conf_merge_str_value(conf->match, prev->match, "");
prev              690 http/modules/ngx_http_sub_filter_module.c         conf->value = prev->value;
prev              694 http/modules/ngx_http_sub_filter_module.c                              &prev->types_keys, &prev->types,
prev              622 http/modules/ngx_http_userid_filter_module.c     ngx_http_userid_conf_t *prev = parent;
prev              625 http/modules/ngx_http_userid_filter_module.c     ngx_conf_merge_uint_value(conf->enable, prev->enable,
prev              628 http/modules/ngx_http_userid_filter_module.c     ngx_conf_merge_str_value(conf->name, prev->name, "uid");
prev              629 http/modules/ngx_http_userid_filter_module.c     ngx_conf_merge_str_value(conf->domain, prev->domain, "");
prev              630 http/modules/ngx_http_userid_filter_module.c     ngx_conf_merge_str_value(conf->path, prev->path, "; path=/");
prev              631 http/modules/ngx_http_userid_filter_module.c     ngx_conf_merge_str_value(conf->p3p, prev->p3p, "");
prev              633 http/modules/ngx_http_userid_filter_module.c     ngx_conf_merge_value(conf->service, prev->service, NGX_CONF_UNSET);
prev              634 http/modules/ngx_http_userid_filter_module.c     ngx_conf_merge_sec_value(conf->expires, prev->expires, 0);
prev              637 http/modules/ngx_http_userid_filter_module.c         if (prev->mark == (u_char) '\xFF') {
prev              640 http/modules/ngx_http_userid_filter_module.c             conf->mark = prev->mark;
prev             1093 http/modules/ngx_http_uwsgi_module.c     ngx_http_uwsgi_loc_conf_t *prev = parent;
prev             1109 http/modules/ngx_http_uwsgi_module.c         ngx_conf_merge_value(conf->upstream.store, prev->upstream.store, 0);
prev             1112 http/modules/ngx_http_uwsgi_module.c             conf->upstream.store_lengths = prev->upstream.store_lengths;
prev             1113 http/modules/ngx_http_uwsgi_module.c             conf->upstream.store_values = prev->upstream.store_values;
prev             1118 http/modules/ngx_http_uwsgi_module.c                               prev->upstream.store_access, 0600);
prev             1121 http/modules/ngx_http_uwsgi_module.c                               prev->upstream.buffering, 1);
prev             1124 http/modules/ngx_http_uwsgi_module.c                               prev->upstream.ignore_client_abort, 0);
prev             1127 http/modules/ngx_http_uwsgi_module.c                               prev->upstream.connect_timeout, 60000);
prev             1130 http/modules/ngx_http_uwsgi_module.c                               prev->upstream.send_timeout, 60000);
prev             1133 http/modules/ngx_http_uwsgi_module.c                               prev->upstream.read_timeout, 60000);
prev             1136 http/modules/ngx_http_uwsgi_module.c                               prev->upstream.send_lowat, 0);
prev             1139 http/modules/ngx_http_uwsgi_module.c                               prev->upstream.buffer_size,
prev             1143 http/modules/ngx_http_uwsgi_module.c     ngx_conf_merge_bufs_value(conf->upstream.bufs, prev->upstream.bufs,
prev             1160 http/modules/ngx_http_uwsgi_module.c                               prev->upstream.busy_buffers_size_conf,
prev             1191 http/modules/ngx_http_uwsgi_module.c                               prev->upstream.temp_file_write_size_conf,
prev             1212 http/modules/ngx_http_uwsgi_module.c                               prev->upstream.max_temp_file_size_conf,
prev             1235 http/modules/ngx_http_uwsgi_module.c                                  prev->upstream.ignore_headers,
prev             1240 http/modules/ngx_http_uwsgi_module.c                                  prev->upstream.next_upstream,
prev             1251 http/modules/ngx_http_uwsgi_module.c                                   prev->upstream.temp_path,
prev             1261 http/modules/ngx_http_uwsgi_module.c                               prev->upstream.cache, NULL);
prev             1276 http/modules/ngx_http_uwsgi_module.c                               prev->upstream.cache_min_uses, 1);
prev             1279 http/modules/ngx_http_uwsgi_module.c                               prev->upstream.cache_use_stale,
prev             1289 http/modules/ngx_http_uwsgi_module.c         conf->upstream.cache_methods = prev->upstream.cache_methods;
prev             1295 http/modules/ngx_http_uwsgi_module.c                              prev->upstream.cache_bypass, NULL);
prev             1298 http/modules/ngx_http_uwsgi_module.c                              prev->upstream.no_cache, NULL);
prev             1301 http/modules/ngx_http_uwsgi_module.c                              prev->upstream.cache_valid, NULL);
prev             1304 http/modules/ngx_http_uwsgi_module.c         conf->cache_key = prev->cache_key;
prev             1310 http/modules/ngx_http_uwsgi_module.c                          prev->upstream.pass_request_headers, 1);
prev             1312 http/modules/ngx_http_uwsgi_module.c                          prev->upstream.pass_request_body, 1);
prev             1315 http/modules/ngx_http_uwsgi_module.c                          prev->upstream.intercept_errors, 0);
prev             1317 http/modules/ngx_http_uwsgi_module.c     ngx_conf_merge_str_value(conf->uwsgi_string, prev->uwsgi_string, "");
prev             1324 http/modules/ngx_http_uwsgi_module.c             &prev->upstream, ngx_http_uwsgi_hide_headers, &hash)
prev             1331 http/modules/ngx_http_uwsgi_module.c         conf->upstream.upstream = prev->upstream.upstream;
prev             1335 http/modules/ngx_http_uwsgi_module.c         conf->uwsgi_lengths = prev->uwsgi_lengths;
prev             1336 http/modules/ngx_http_uwsgi_module.c         conf->uwsgi_values = prev->uwsgi_values;
prev             1346 http/modules/ngx_http_uwsgi_module.c     ngx_conf_merge_uint_value(conf->modifier1, prev->modifier1, 0);
prev             1347 http/modules/ngx_http_uwsgi_module.c     ngx_conf_merge_uint_value(conf->modifier2, prev->modifier2, 0);
prev             1350 http/modules/ngx_http_uwsgi_module.c         conf->flushes = prev->flushes;
prev             1351 http/modules/ngx_http_uwsgi_module.c         conf->params_len = prev->params_len;
prev             1352 http/modules/ngx_http_uwsgi_module.c         conf->params = prev->params;
prev             1353 http/modules/ngx_http_uwsgi_module.c         conf->params_source = prev->params_source;
prev             1354 http/modules/ngx_http_uwsgi_module.c         conf->headers_hash = prev->headers_hash;
prev             1361 http/modules/ngx_http_uwsgi_module.c                 == (prev->upstream.cache == NULL))
prev              936 http/modules/ngx_http_xslt_filter_module.c     ngx_http_xslt_filter_loc_conf_t *prev = parent;
prev              940 http/modules/ngx_http_xslt_filter_module.c         conf->dtd = prev->dtd;
prev              944 http/modules/ngx_http_xslt_filter_module.c         conf->sheets = prev->sheets;
prev              948 http/modules/ngx_http_xslt_filter_module.c                              &prev->types_keys, &prev->types,
prev              894 http/modules/perl/ngx_http_perl_module.c     ngx_http_perl_loc_conf_t *prev = parent;
prev              898 http/modules/perl/ngx_http_perl_module.c         conf->sub = prev->sub;
prev              899 http/modules/perl/ngx_http_perl_module.c         conf->handler = prev->handler;
prev               31 http/ngx_http_config.h     char       *(*merge_srv_conf)(ngx_conf_t *cf, void *prev, void *conf);
prev               34 http/ngx_http_config.h     char       *(*merge_loc_conf)(ngx_conf_t *cf, void *prev, void *conf);
prev              277 http/ngx_http_copy_filter_module.c     ngx_http_copy_filter_conf_t *prev = parent;
prev              280 http/ngx_http_copy_filter_module.c     ngx_conf_merge_bufs_value(conf->bufs, prev->bufs, 1, 32768);
prev             2994 http/ngx_http_core_module.c     ngx_http_core_srv_conf_t *prev = parent;
prev             3003 http/ngx_http_core_module.c                               prev->connection_pool_size, 256);
prev             3005 http/ngx_http_core_module.c                               prev->request_pool_size, 4096);
prev             3007 http/ngx_http_core_module.c                               prev->client_header_timeout, 60000);
prev             3009 http/ngx_http_core_module.c                               prev->client_header_buffer_size, 1024);
prev             3011 http/ngx_http_core_module.c                               prev->large_client_header_buffers,
prev             3022 http/ngx_http_core_module.c                               prev->ignore_invalid_headers, 1);
prev             3024 http/ngx_http_core_module.c     ngx_conf_merge_value(conf->merge_slashes, prev->merge_slashes, 1);
prev             3027 http/ngx_http_core_module.c                               prev->underscores_in_headers, 0);
prev             3173 http/ngx_http_core_module.c     ngx_http_core_loc_conf_t *prev = parent;
prev             3182 http/ngx_http_core_module.c         conf->alias = prev->alias;
prev             3183 http/ngx_http_core_module.c         conf->root = prev->root;
prev             3184 http/ngx_http_core_module.c         conf->root_lengths = prev->root_lengths;
prev             3185 http/ngx_http_core_module.c         conf->root_values = prev->root_values;
prev             3187 http/ngx_http_core_module.c         if (prev->root.data == NULL) {
prev             3197 http/ngx_http_core_module.c         conf->post_action = prev->post_action;
prev             3201 http/ngx_http_core_module.c                               prev->types_hash_max_size, 1024);
prev             3204 http/ngx_http_core_module.c                               prev->types_hash_bucket_size,
prev             3215 http/ngx_http_core_module.c     if (prev->types && prev->types_hash.buckets == NULL) {
prev             3217 http/ngx_http_core_module.c         types_hash.hash = &prev->types_hash;
prev             3225 http/ngx_http_core_module.c         if (ngx_hash_init(&types_hash, prev->types->elts, prev->types->nelts)
prev             3233 http/ngx_http_core_module.c         conf->types = prev->types;
prev             3234 http/ngx_http_core_module.c         conf->types_hash = prev->types_hash;
prev             3275 http/ngx_http_core_module.c         if (prev->error_log) {
prev             3276 http/ngx_http_core_module.c             conf->error_log = prev->error_log;
prev             3282 http/ngx_http_core_module.c     if (conf->error_pages == NULL && prev->error_pages) {
prev             3283 http/ngx_http_core_module.c         conf->error_pages = prev->error_pages;
prev             3287 http/ngx_http_core_module.c                               prev->default_type, "text/plain");
prev             3290 http/ngx_http_core_module.c                               prev->client_max_body_size, 1 * 1024 * 1024);
prev             3292 http/ngx_http_core_module.c                               prev->client_body_buffer_size,
prev             3295 http/ngx_http_core_module.c                               prev->client_body_timeout, 60000);
prev             3297 http/ngx_http_core_module.c     ngx_conf_merge_uint_value(conf->keepalive_disable, prev->keepalive_disable,
prev             3300 http/ngx_http_core_module.c     ngx_conf_merge_uint_value(conf->satisfy, prev->satisfy,
prev             3302 http/ngx_http_core_module.c     ngx_conf_merge_uint_value(conf->if_modified_since, prev->if_modified_since,
prev             3305 http/ngx_http_core_module.c                               prev->client_body_in_file_only, 0);
prev             3307 http/ngx_http_core_module.c                               prev->client_body_in_single_buffer, 0);
prev             3308 http/ngx_http_core_module.c     ngx_conf_merge_value(conf->internal, prev->internal, 0);
prev             3309 http/ngx_http_core_module.c     ngx_conf_merge_value(conf->sendfile, prev->sendfile, 0);
prev             3311 http/ngx_http_core_module.c                               prev->sendfile_max_chunk, 0);
prev             3313 http/ngx_http_core_module.c     ngx_conf_merge_value(conf->aio, prev->aio, 0);
prev             3315 http/ngx_http_core_module.c     ngx_conf_merge_size_value(conf->read_ahead, prev->read_ahead, 0);
prev             3316 http/ngx_http_core_module.c     ngx_conf_merge_off_value(conf->directio, prev->directio,
prev             3318 http/ngx_http_core_module.c     ngx_conf_merge_off_value(conf->directio_alignment, prev->directio_alignment,
prev             3320 http/ngx_http_core_module.c     ngx_conf_merge_value(conf->tcp_nopush, prev->tcp_nopush, 0);
prev             3321 http/ngx_http_core_module.c     ngx_conf_merge_value(conf->tcp_nodelay, prev->tcp_nodelay, 1);
prev             3323 http/ngx_http_core_module.c     ngx_conf_merge_msec_value(conf->send_timeout, prev->send_timeout, 60000);
prev             3324 http/ngx_http_core_module.c     ngx_conf_merge_size_value(conf->send_lowat, prev->send_lowat, 0);
prev             3325 http/ngx_http_core_module.c     ngx_conf_merge_size_value(conf->postpone_output, prev->postpone_output,
prev             3327 http/ngx_http_core_module.c     ngx_conf_merge_size_value(conf->limit_rate, prev->limit_rate, 0);
prev             3328 http/ngx_http_core_module.c     ngx_conf_merge_size_value(conf->limit_rate_after, prev->limit_rate_after,
prev             3331 http/ngx_http_core_module.c                               prev->keepalive_timeout, 75000);
prev             3333 http/ngx_http_core_module.c                               prev->keepalive_header, 0);
prev             3335 http/ngx_http_core_module.c                               prev->keepalive_requests, 100);
prev             3337 http/ngx_http_core_module.c                               prev->lingering_time, 30000);
prev             3339 http/ngx_http_core_module.c                               prev->lingering_timeout, 5000);
prev             3341 http/ngx_http_core_module.c                               prev->resolver_timeout, 30000);
prev             3345 http/ngx_http_core_module.c         if (prev->resolver == NULL) {
prev             3352 http/ngx_http_core_module.c             prev->resolver = ngx_resolver_create(cf, NULL);
prev             3353 http/ngx_http_core_module.c             if (prev->resolver == NULL) {
prev             3358 http/ngx_http_core_module.c         conf->resolver = prev->resolver;
prev             3362 http/ngx_http_core_module.c                               prev->client_body_temp_path,
prev             3370 http/ngx_http_core_module.c                               prev->reset_timedout_connection, 0);
prev             3372 http/ngx_http_core_module.c                               prev->server_name_in_redirect, 0);
prev             3373 http/ngx_http_core_module.c     ngx_conf_merge_value(conf->port_in_redirect, prev->port_in_redirect, 1);
prev             3374 http/ngx_http_core_module.c     ngx_conf_merge_value(conf->msie_padding, prev->msie_padding, 1);
prev             3375 http/ngx_http_core_module.c     ngx_conf_merge_value(conf->msie_refresh, prev->msie_refresh, 0);
prev             3376 http/ngx_http_core_module.c     ngx_conf_merge_value(conf->log_not_found, prev->log_not_found, 1);
prev             3377 http/ngx_http_core_module.c     ngx_conf_merge_value(conf->log_subrequest, prev->log_subrequest, 0);
prev             3379 http/ngx_http_core_module.c                               prev->recursive_error_pages, 0);
prev             3380 http/ngx_http_core_module.c     ngx_conf_merge_value(conf->server_tokens, prev->server_tokens, 1);
prev             3382 http/ngx_http_core_module.c                               prev->chunked_transfer_encoding, 1);
prev             3385 http/ngx_http_core_module.c                               prev->open_file_cache, NULL);
prev             3388 http/ngx_http_core_module.c                               prev->open_file_cache_valid, 60);
prev             3391 http/ngx_http_core_module.c                               prev->open_file_cache_min_uses, 1);
prev             3394 http/ngx_http_core_module.c                               prev->open_file_cache_errors, 0);
prev             3397 http/ngx_http_core_module.c                               prev->open_file_cache_events, 0);
prev             3400 http/ngx_http_core_module.c     ngx_conf_merge_value(conf->gzip_vary, prev->gzip_vary, 0);
prev             3401 http/ngx_http_core_module.c     ngx_conf_merge_uint_value(conf->gzip_http_version, prev->gzip_http_version,
prev             3403 http/ngx_http_core_module.c     ngx_conf_merge_bitmask_value(conf->gzip_proxied, prev->gzip_proxied,
prev             3407 http/ngx_http_core_module.c     ngx_conf_merge_ptr_value(conf->gzip_disable, prev->gzip_disable, NULL);
prev             3412 http/ngx_http_core_module.c             (prev->gzip_disable_msie6 == 3) ? 0 : prev->gzip_disable_msie6;
prev             3419 http/ngx_http_core_module.c             (prev->gzip_disable_degradation == 3) ?
prev             3420 http/ngx_http_core_module.c                  0 : prev->gzip_disable_degradation;
prev             4337 http/ngx_http_upstream.c     ngx_http_upstream_conf_t *conf, ngx_http_upstream_conf_t *prev,
prev             4348 http/ngx_http_upstream.c         conf->hide_headers_hash = prev->hide_headers_hash;
prev             4352 http/ngx_http_upstream.c             && ((conf->cache == NULL) == (prev->cache == NULL))
prev             4359 http/ngx_http_upstream.c         conf->hide_headers = prev->hide_headers;
prev             4360 http/ngx_http_upstream.c         conf->pass_headers = prev->pass_headers;
prev             4364 http/ngx_http_upstream.c             conf->hide_headers = prev->hide_headers;
prev             4368 http/ngx_http_upstream.c             conf->pass_headers = prev->pass_headers;
prev              332 http/ngx_http_upstream.h     ngx_http_upstream_conf_t *conf, ngx_http_upstream_conf_t *prev,
prev              334 mail/ngx_mail.h     char                       *(*merge_srv_conf)(ngx_conf_t *cf, void *prev,
prev             1319 mail/ngx_mail_auth_http_module.c     ngx_mail_auth_http_conf_t *prev = parent;
prev             1328 mail/ngx_mail_auth_http_module.c         conf->peer = prev->peer;
prev             1329 mail/ngx_mail_auth_http_module.c         conf->host_header = prev->host_header;
prev             1330 mail/ngx_mail_auth_http_module.c         conf->uri = prev->uri;
prev             1341 mail/ngx_mail_auth_http_module.c     ngx_conf_merge_msec_value(conf->timeout, prev->timeout, 60000);
prev             1344 mail/ngx_mail_auth_http_module.c         conf->headers = prev->headers;
prev             1345 mail/ngx_mail_auth_http_module.c         conf->header = prev->header;
prev              175 mail/ngx_mail_core_module.c     ngx_mail_core_srv_conf_t *prev = parent;
prev              178 mail/ngx_mail_core_module.c     ngx_conf_merge_msec_value(conf->timeout, prev->timeout, 60000);
prev              179 mail/ngx_mail_core_module.c     ngx_conf_merge_msec_value(conf->resolver_timeout, prev->resolver_timeout,
prev              182 mail/ngx_mail_core_module.c     ngx_conf_merge_value(conf->so_keepalive, prev->so_keepalive, 0);
prev              185 mail/ngx_mail_core_module.c     ngx_conf_merge_str_value(conf->server_name, prev->server_name, "");
prev              198 mail/ngx_mail_core_module.c     ngx_conf_merge_ptr_value(conf->resolver, prev->resolver, NULL);
prev              137 mail/ngx_mail_imap_module.c     ngx_mail_imap_srv_conf_t *prev = parent;
prev              146 mail/ngx_mail_imap_module.c                               prev->client_buffer_size,
prev              150 mail/ngx_mail_imap_module.c                               prev->auth_methods,
prev              156 mail/ngx_mail_imap_module.c         conf->capabilities = prev->capabilities;
prev              134 mail/ngx_mail_pop3_module.c     ngx_mail_pop3_srv_conf_t *prev = parent;
prev              143 mail/ngx_mail_pop3_module.c                                  prev->auth_methods,
prev              148 mail/ngx_mail_pop3_module.c         conf->capabilities = prev->capabilities;
prev             1077 mail/ngx_mail_proxy_module.c     ngx_mail_proxy_conf_t *prev = parent;
prev             1080 mail/ngx_mail_proxy_module.c     ngx_conf_merge_value(conf->enable, prev->enable, 0);
prev             1081 mail/ngx_mail_proxy_module.c     ngx_conf_merge_value(conf->pass_error_message, prev->pass_error_message, 0);
prev             1082 mail/ngx_mail_proxy_module.c     ngx_conf_merge_value(conf->xclient, prev->xclient, 1);
prev             1083 mail/ngx_mail_proxy_module.c     ngx_conf_merge_size_value(conf->buffer_size, prev->buffer_size,
prev             1085 mail/ngx_mail_proxy_module.c     ngx_conf_merge_msec_value(conf->timeout, prev->timeout, 24 * 60 * 60000);
prev              138 mail/ngx_mail_smtp_module.c     ngx_mail_smtp_srv_conf_t *prev = parent;
prev              148 mail/ngx_mail_smtp_module.c                               prev->client_buffer_size,
prev              152 mail/ngx_mail_smtp_module.c                               prev->greeting_delay, 0);
prev              155 mail/ngx_mail_smtp_module.c                               prev->auth_methods,
prev              194 mail/ngx_mail_smtp_module.c         conf->capabilities = prev->capabilities;
prev              183 mail/ngx_mail_ssl_module.c     ngx_mail_ssl_conf_t *prev = parent;
prev              189 mail/ngx_mail_ssl_module.c     ngx_conf_merge_value(conf->enable, prev->enable, 0);
prev              190 mail/ngx_mail_ssl_module.c     ngx_conf_merge_uint_value(conf->starttls, prev->starttls,
prev              194 mail/ngx_mail_ssl_module.c                          prev->session_timeout, 300);
prev              197 mail/ngx_mail_ssl_module.c                          prev->prefer_server_ciphers, 0);
prev              199 mail/ngx_mail_ssl_module.c     ngx_conf_merge_bitmask_value(conf->protocols, prev->protocols,
prev              202 mail/ngx_mail_ssl_module.c     ngx_conf_merge_str_value(conf->certificate, prev->certificate, "");
prev              203 mail/ngx_mail_ssl_module.c     ngx_conf_merge_str_value(conf->certificate_key, prev->certificate_key, "");
prev              205 mail/ngx_mail_ssl_module.c     ngx_conf_merge_str_value(conf->dhparam, prev->dhparam, "");
prev              207 mail/ngx_mail_ssl_module.c     ngx_conf_merge_str_value(conf->ciphers, prev->ciphers, NGX_DEFAULT_CIPHERS);
prev              298 mail/ngx_mail_ssl_module.c                          prev->builtin_session_cache, NGX_SSL_NONE_SCACHE);
prev              301 mail/ngx_mail_ssl_module.c         conf->shm_zone = prev->shm_zone;
prev               16 os/unix/ngx_aio_read_chain.c     u_char       *buf, *prev;
prev               36 os/unix/ngx_aio_read_chain.c         prev = cl->buf->last;
prev               41 os/unix/ngx_aio_read_chain.c         while (cl && prev == cl->buf->last) {
prev               43 os/unix/ngx_aio_read_chain.c             prev = cl->buf->end;
prev               15 os/unix/ngx_aio_write_chain.c     u_char       *buf, *prev;
prev               45 os/unix/ngx_aio_write_chain.c         prev = buf;
prev               50 os/unix/ngx_aio_write_chain.c         while (cl && prev == cl->buf->pos && send < limit) {
prev               62 os/unix/ngx_aio_write_chain.c             prev = cl->buf->pos + size;
prev               42 os/unix/ngx_darwin_sendfile_chain.c     u_char          *prev;
prev              102 os/unix/ngx_darwin_sendfile_chain.c         prev = NULL;
prev              123 os/unix/ngx_darwin_sendfile_chain.c             if (prev == cl->buf->pos) {
prev              136 os/unix/ngx_darwin_sendfile_chain.c             prev = cl->buf->pos + (size_t) size;
prev              177 os/unix/ngx_darwin_sendfile_chain.c             prev = NULL;
prev              197 os/unix/ngx_darwin_sendfile_chain.c                 if (prev == cl->buf->pos) {
prev              210 os/unix/ngx_darwin_sendfile_chain.c                 prev = cl->buf->pos + (size_t) size;
prev              154 os/unix/ngx_files.c     u_char        *prev;
prev              174 os/unix/ngx_files.c         prev = NULL;
prev              183 os/unix/ngx_files.c             if (prev == cl->buf->pos) {
prev              197 os/unix/ngx_files.c             prev = cl->buf->last;
prev               44 os/unix/ngx_freebsd_sendfile_chain.c     u_char          *prev;
prev              106 os/unix/ngx_freebsd_sendfile_chain.c         prev = NULL;
prev              127 os/unix/ngx_freebsd_sendfile_chain.c             if (prev == cl->buf->pos) {
prev              140 os/unix/ngx_freebsd_sendfile_chain.c             prev = cl->buf->pos + (size_t) size;
prev              182 os/unix/ngx_freebsd_sendfile_chain.c             prev = NULL;
prev              202 os/unix/ngx_freebsd_sendfile_chain.c                 if (prev == cl->buf->pos) {
prev              215 os/unix/ngx_freebsd_sendfile_chain.c                 prev = cl->buf->pos + (size_t) size;
prev               41 os/unix/ngx_linux_sendfile_chain.c     u_char        *prev;
prev               86 os/unix/ngx_linux_sendfile_chain.c         prev = NULL;
prev              130 os/unix/ngx_linux_sendfile_chain.c             if (prev == cl->buf->pos) {
prev              143 os/unix/ngx_linux_sendfile_chain.c             prev = cl->buf->pos + (size_t) size;
prev               20 os/unix/ngx_readv_chain.c     u_char        *prev;
prev               56 os/unix/ngx_readv_chain.c     prev = NULL;
prev               69 os/unix/ngx_readv_chain.c         if (prev == chain->buf->last) {
prev               83 os/unix/ngx_readv_chain.c         prev = chain->buf->end;
prev              173 os/unix/ngx_readv_chain.c     u_char        *prev;
prev              180 os/unix/ngx_readv_chain.c     prev = NULL;
prev              193 os/unix/ngx_readv_chain.c         if (prev == chain->buf->last) {
prev              207 os/unix/ngx_readv_chain.c         prev = chain->buf->end;
prev               46 os/unix/ngx_solaris_sendfilev_chain.c     u_char         *prev;
prev               85 os/unix/ngx_solaris_sendfilev_chain.c         prev = NULL;
prev              111 os/unix/ngx_solaris_sendfilev_chain.c                 if (prev == cl->buf->pos) {
prev              126 os/unix/ngx_solaris_sendfilev_chain.c                 prev = cl->buf->pos + (size_t) size;
prev              130 os/unix/ngx_solaris_sendfilev_chain.c                 prev = NULL;
prev               22 os/unix/ngx_writev_chain.c     u_char        *prev;
prev               64 os/unix/ngx_writev_chain.c         prev = NULL;
prev               91 os/unix/ngx_writev_chain.c             if (prev == cl->buf->pos) {
prev              104 os/unix/ngx_writev_chain.c             prev = cl->buf->pos + size;