hk                714 core/ngx_hash.c     ngx_hash_key_t  *hk;
hk                808 core/ngx_hash.c     hk = ngx_array_push(&ha->keys);
hk                809 core/ngx_hash.c     if (hk == NULL) {
hk                813 core/ngx_hash.c     hk->key = *key;
hk                814 core/ngx_hash.c     hk->key_hash = ngx_hash_key(key->data, last);
hk                815 core/ngx_hash.c     hk->value = value;
hk                926 core/ngx_hash.c     hk = ngx_array_push(hwc);
hk                927 core/ngx_hash.c     if (hk == NULL) {
hk                931 core/ngx_hash.c     hk->key.len = last - 1;
hk                932 core/ngx_hash.c     hk->key.data = p;
hk                933 core/ngx_hash.c     hk->key_hash = 0;
hk                934 core/ngx_hash.c     hk->value = value;
hk               2022 http/modules/ngx_http_fastcgi_module.c     ngx_hash_key_t               *hk;
hk               2370 http/modules/ngx_http_fastcgi_module.c             hk = ngx_array_push(&headers_names);
hk               2371 http/modules/ngx_http_fastcgi_module.c             if (hk == NULL) {
hk               2375 http/modules/ngx_http_fastcgi_module.c             hk->key.len = src[i].key.len - 5;
hk               2376 http/modules/ngx_http_fastcgi_module.c             hk->key.data = src[i].key.data + 5;
hk               2377 http/modules/ngx_http_fastcgi_module.c             hk->key_hash = ngx_hash_key_lc(hk->key.data, hk->key.len);
hk               2378 http/modules/ngx_http_fastcgi_module.c             hk->value = (void *) 1;
hk               2103 http/modules/ngx_http_proxy_module.c     ngx_hash_key_t               *hk;
hk               2189 http/modules/ngx_http_proxy_module.c         hk = ngx_array_push(&headers_names);
hk               2190 http/modules/ngx_http_proxy_module.c         if (hk == NULL) {
hk               2194 http/modules/ngx_http_proxy_module.c         hk->key = src[i].key;
hk               2195 http/modules/ngx_http_proxy_module.c         hk->key_hash = ngx_hash_key_lc(src[i].key.data, src[i].key.len);
hk               2196 http/modules/ngx_http_proxy_module.c         hk->value = (void *) 1;
hk               1049 http/modules/ngx_http_scgi_module.c     ngx_hash_key_t               *hk;
hk               1377 http/modules/ngx_http_scgi_module.c             hk = ngx_array_push(&headers_names);
hk               1378 http/modules/ngx_http_scgi_module.c             if (hk == NULL) {
hk               1382 http/modules/ngx_http_scgi_module.c             hk->key.len = src[i].key.len - 5;
hk               1383 http/modules/ngx_http_scgi_module.c             hk->key.data = src[i].key.data + 5;
hk               1384 http/modules/ngx_http_scgi_module.c             hk->key_hash = ngx_hash_key_lc(hk->key.data, hk->key.len);
hk               1385 http/modules/ngx_http_scgi_module.c             hk->value = (void *) 1;
hk               1102 http/modules/ngx_http_uwsgi_module.c     ngx_hash_key_t               *hk;
hk               1435 http/modules/ngx_http_uwsgi_module.c             hk = ngx_array_push(&headers_names);
hk               1436 http/modules/ngx_http_uwsgi_module.c             if (hk == NULL) {
hk               1440 http/modules/ngx_http_uwsgi_module.c             hk->key.len = src[i].key.len - 5;
hk               1441 http/modules/ngx_http_uwsgi_module.c             hk->key.data = src[i].key.data + 5;
hk               1442 http/modules/ngx_http_uwsgi_module.c             hk->key_hash = ngx_hash_key_lc(hk->key.data, hk->key.len);
hk               1443 http/modules/ngx_http_uwsgi_module.c             hk->value = (void *) 1;
hk                408 http/ngx_http.c     ngx_hash_key_t     *hk;
hk                419 http/ngx_http.c         hk = ngx_array_push(&headers_in);
hk                420 http/ngx_http.c         if (hk == NULL) {
hk                424 http/ngx_http.c         hk->key = header->name;
hk                425 http/ngx_http.c         hk->key_hash = ngx_hash_key_lc(header->name.data, header->name.len);
hk                426 http/ngx_http.c         hk->value = header;
hk               4343 http/ngx_http_upstream.c     ngx_hash_key_t  *hk;
hk               4379 http/ngx_http_upstream.c         hk = ngx_array_push(&hide_headers);
hk               4380 http/ngx_http_upstream.c         if (hk == NULL) {
hk               4384 http/ngx_http_upstream.c         hk->key = *h;
hk               4385 http/ngx_http_upstream.c         hk->key_hash = ngx_hash_key_lc(h->data, h->len);
hk               4386 http/ngx_http_upstream.c         hk->value = (void *) 1;
hk               4395 http/ngx_http_upstream.c             hk = hide_headers.elts;
hk               4398 http/ngx_http_upstream.c                 if (ngx_strcasecmp(h[i].data, hk[j].key.data) == 0) {
hk               4403 http/ngx_http_upstream.c             hk = ngx_array_push(&hide_headers);
hk               4404 http/ngx_http_upstream.c             if (hk == NULL) {
hk               4408 http/ngx_http_upstream.c             hk->key = h[i];
hk               4409 http/ngx_http_upstream.c             hk->key_hash = ngx_hash_key_lc(h[i].data, h[i].len);
hk               4410 http/ngx_http_upstream.c             hk->value = (void *) 1;
hk               4421 http/ngx_http_upstream.c         hk = hide_headers.elts;
hk               4426 http/ngx_http_upstream.c                 if (hk[j].key.data == NULL) {
hk               4430 http/ngx_http_upstream.c                 if (ngx_strcasecmp(h[i].data, hk[j].key.data) == 0) {
hk               4431 http/ngx_http_upstream.c                     hk[j].key.data = NULL;
hk               4475 http/ngx_http_upstream.c     ngx_hash_key_t                 *hk;
hk               4503 http/ngx_http_upstream.c         hk = ngx_array_push(&headers_in);
hk               4504 http/ngx_http_upstream.c         if (hk == NULL) {
hk               4508 http/ngx_http_upstream.c         hk->key = header->name;
hk               4509 http/ngx_http_upstream.c         hk->key_hash = ngx_hash_key_lc(header->name.data, header->name.len);
hk               4510 http/ngx_http_upstream.c         hk->value = header;