name              578 core/nginx.c       ctx.name = "new binary process";
name               15 core/ngx_conf_file.c static ngx_int_t ngx_conf_test_full_name(ngx_str_t *name);
name               87 core/ngx_conf_file.c     conf_file.file.name.data = NULL;
name              154 core/ngx_conf_file.c         cf->conf_file->file.name.len = filename->len;
name              155 core/ngx_conf_file.c         cf->conf_file->file.name.data = filename->data;
name              285 core/ngx_conf_file.c     ngx_str_t      *name;
name              288 core/ngx_conf_file.c     name = cf->args->elts;
name              307 core/ngx_conf_file.c         for ( /* void */ ; cmd->name.len; cmd++) {
name              309 core/ngx_conf_file.c             if (name->len != cmd->name.len) {
name              313 core/ngx_conf_file.c             if (ngx_strcmp(name->data, cmd->name.data) != 0) {
name              332 core/ngx_conf_file.c                                   name->data);
name              339 core/ngx_conf_file.c                                    name->data);
name              404 core/ngx_conf_file.c                                "\"%s\" directive %s", name->data, rv);
name              412 core/ngx_conf_file.c                            "unknown directive \"%s\"", name->data);
name              420 core/ngx_conf_file.c                        "\"%s\" directive is not allowed here", name->data);
name              427 core/ngx_conf_file.c                        name->data);
name              745 core/ngx_conf_file.c     ngx_str_t   *value, file, name;
name              779 core/ngx_conf_file.c         n = ngx_read_glob(&gl, &name);
name              785 core/ngx_conf_file.c         file.len = name.len++;
name              786 core/ngx_conf_file.c         file.data = ngx_pstrdup(cf->pool, &name);
name              804 core/ngx_conf_file.c ngx_conf_full_name(ngx_cycle_t *cycle, ngx_str_t *name, ngx_uint_t conf_prefix)
name              810 core/ngx_conf_file.c     rc = ngx_conf_test_full_name(name);
name              833 core/ngx_conf_file.c     n = ngx_pnalloc(cycle->pool, len + name->len + 1);
name              839 core/ngx_conf_file.c     ngx_cpystrn(p, name->data, name->len + 1);
name              841 core/ngx_conf_file.c     name->len += len;
name              842 core/ngx_conf_file.c     name->data = n;
name              849 core/ngx_conf_file.c ngx_conf_test_full_name(ngx_str_t *name)
name              854 core/ngx_conf_file.c     c0 = name->data[0];
name              856 core/ngx_conf_file.c     if (name->len < 2) {
name              864 core/ngx_conf_file.c     c1 = name->data[1];
name              888 core/ngx_conf_file.c     if (name->data[0] == '/') {
name              899 core/ngx_conf_file.c ngx_conf_open_file(ngx_cycle_t *cycle, ngx_str_t *name)
name              910 core/ngx_conf_file.c     if (name->len) {
name              911 core/ngx_conf_file.c         full = *name;
name              931 core/ngx_conf_file.c             if (full.len != file[i].name.len) {
name              935 core/ngx_conf_file.c             if (ngx_strcmp(full.data, file[i].name.data) == 0) {
name              946 core/ngx_conf_file.c     if (name->len) {
name              948 core/ngx_conf_file.c         file->name = full;
name              952 core/ngx_conf_file.c         file->name = *name;
name              996 core/ngx_conf_file.c                           file[i].name.data);
name             1001 core/ngx_conf_file.c                           file[i].name.data, n, len);
name             1037 core/ngx_conf_file.c                   cf->conf_file->file.name.data, cf->conf_file->line);
name             1068 core/ngx_conf_file.c                      value[1].data, cmd->name.data);
name             1393 core/ngx_conf_file.c     for (i = 0; e[i].name.len != 0; i++) {
name             1394 core/ngx_conf_file.c         if (e[i].name.len != value[1].len
name             1395 core/ngx_conf_file.c             || ngx_strcasecmp(e[i].name.data, value[1].data) != 0)
name             1427 core/ngx_conf_file.c         for (m = 0; mask[m].name.len != 0; m++) {
name             1429 core/ngx_conf_file.c             if (mask[m].name.len != value[i].len
name             1430 core/ngx_conf_file.c                 || ngx_strcasecmp(mask[m].name.data, value[i].data) != 0)
name             1446 core/ngx_conf_file.c         if (mask[m].name.len == 0) {
name               78 core/ngx_conf_file.h     ngx_str_t             name;
name               91 core/ngx_conf_file.h     ngx_str_t             name;
name              148 core/ngx_conf_file.h     ngx_str_t             name;
name              166 core/ngx_conf_file.h     char                 *name;
name              207 core/ngx_conf_file.h     ngx_str_t                 name;
name              215 core/ngx_conf_file.h     ngx_str_t                 name;
name              321 core/ngx_conf_file.h ngx_int_t ngx_conf_full_name(ngx_cycle_t *cycle, ngx_str_t *name,
name              323 core/ngx_conf_file.h ngx_open_file_t *ngx_conf_open_file(ngx_cycle_t *cycle, ngx_str_t *name);
name              403 core/ngx_connection.c                 u_char  *name;
name              405 core/ngx_connection.c                 name = ls[i].addr_text.data + sizeof("unix:") - 1;
name              408 core/ngx_connection.c                 if (chmod((char *) name, mode) == -1) {
name              410 core/ngx_connection.c                                   "chmod() \"%s\" failed", name);
name              414 core/ngx_connection.c                     if (ngx_delete_file(name) == -1) {
name              416 core/ngx_connection.c                                       ngx_delete_file_n " %s failed", name);
name              688 core/ngx_connection.c             u_char *name = ls[i].addr_text.data + sizeof("unix:") - 1;
name              690 core/ngx_connection.c             if (ngx_delete_file(name) == -1) {
name              692 core/ngx_connection.c                               ngx_delete_file_n " %s failed", name);
name              364 core/ngx_cycle.c         if (file[i].name.len == 0) {
name              368 core/ngx_cycle.c         file[i].fd = ngx_open_file(file[i].name.data,
name              375 core/ngx_cycle.c                        &file[i], file[i].fd, file[i].name.data);
name              380 core/ngx_cycle.c                           file[i].name.data);
name              388 core/ngx_cycle.c                           file[i].name.data);
name              417 core/ngx_cycle.c                           &shm_zone[i].shm.name);
name              442 core/ngx_cycle.c             if (shm_zone[i].shm.name.len != oshm_zone[n].shm.name.len) {
name              446 core/ngx_cycle.c             if (ngx_strncmp(shm_zone[i].shm.name.data,
name              447 core/ngx_cycle.c                             oshm_zone[n].shm.name.data,
name              448 core/ngx_cycle.c                             shm_zone[i].shm.name.len)
name              639 core/ngx_cycle.c             if (oshm_zone[i].shm.name.len == shm_zone[n].shm.name.len
name              640 core/ngx_cycle.c                 && ngx_strncmp(oshm_zone[i].shm.name.data,
name              641 core/ngx_cycle.c                                shm_zone[n].shm.name.data,
name              642 core/ngx_cycle.c                                oshm_zone[i].shm.name.len)
name              677 core/ngx_cycle.c             u_char  *name;
name              679 core/ngx_cycle.c             name = ls[i].addr_text.data + sizeof("unix:") - 1;
name              682 core/ngx_cycle.c                           "deleting socket %s", name);
name              684 core/ngx_cycle.c             if (ngx_delete_file(name) == -1) {
name              686 core/ngx_cycle.c                               ngx_delete_file_n " %s failed", name);
name              717 core/ngx_cycle.c                           file[i].name.data);
name              817 core/ngx_cycle.c                           file[i].name.data);
name              937 core/ngx_cycle.c                       &zn->shm.name, sp->addr, sp);
name              951 core/ngx_cycle.c     file = ngx_pnalloc(cycle->pool, cycle->lock_file.len + zn->shm.name.len);
name              956 core/ngx_cycle.c     (void) ngx_sprintf(file, "%V%V%Z", &cycle->lock_file, &zn->shm.name);
name              971 core/ngx_cycle.c ngx_create_pidfile(ngx_str_t *name, ngx_log_t *log)
name              984 core/ngx_cycle.c     file.name = *name;
name              989 core/ngx_cycle.c     file.fd = ngx_open_file(file.name.data, NGX_FILE_RDWR,
name              994 core/ngx_cycle.c                       ngx_open_file_n " \"%s\" failed", file.name.data);
name             1008 core/ngx_cycle.c                       ngx_close_file_n " \"%s\" failed", file.name.data);
name             1018 core/ngx_cycle.c     u_char           *name;
name             1023 core/ngx_cycle.c     name = ngx_new_binary ? ccf->oldpid.data : ccf->pid.data;
name             1025 core/ngx_cycle.c     if (ngx_delete_file(name) == NGX_FILE_ERROR) {
name             1027 core/ngx_cycle.c                       ngx_delete_file_n " \"%s\" failed", name);
name             1045 core/ngx_cycle.c     file.name = ccf->pid;
name             1048 core/ngx_cycle.c     file.fd = ngx_open_file(file.name.data, NGX_FILE_RDONLY,
name             1053 core/ngx_cycle.c                       ngx_open_file_n " \"%s\" failed", file.name.data);
name             1061 core/ngx_cycle.c                       ngx_close_file_n " \"%s\" failed", file.name.data);
name             1075 core/ngx_cycle.c                       n, buf, file.name.data);
name             1138 core/ngx_cycle.c         if (file[i].name.len == 0) {
name             1151 core/ngx_cycle.c                               file[i].name.data);
name             1156 core/ngx_cycle.c                           file[i].name.data, n, len);
name             1162 core/ngx_cycle.c         fd = ngx_open_file(file[i].name.data, NGX_FILE_APPEND,
name             1167 core/ngx_cycle.c                        file[i].name.data, file[i].fd, fd);
name             1171 core/ngx_cycle.c                           ngx_open_file_n " \"%s\" failed", file[i].name.data);
name             1179 core/ngx_cycle.c             if (ngx_file_info((const char *) file[i].name.data, &fi)
name             1184 core/ngx_cycle.c                               file[i].name.data);
name             1189 core/ngx_cycle.c                                   file[i].name.data);
name             1194 core/ngx_cycle.c                 if (chown((const char *) file[i].name.data, user, -1) == -1) {
name             1197 core/ngx_cycle.c                                   file[i].name.data, user);
name             1202 core/ngx_cycle.c                                       file[i].name.data);
name             1211 core/ngx_cycle.c                 if (chmod((const char *) file[i].name.data, fi.st_mode) == -1) {
name             1213 core/ngx_cycle.c                                   "chmod() \"%s\" failed", file[i].name.data);
name             1218 core/ngx_cycle.c                                       file[i].name.data);
name             1227 core/ngx_cycle.c                           file[i].name.data);
name             1232 core/ngx_cycle.c                               file[i].name.data);
name             1242 core/ngx_cycle.c                           file[i].name.data);
name             1262 core/ngx_cycle.c ngx_shared_memory_add(ngx_conf_t *cf, ngx_str_t *name, size_t size, void *tag)
name             1282 core/ngx_cycle.c         if (name->len != shm_zone[i].shm.name.len) {
name             1286 core/ngx_cycle.c         if (ngx_strncmp(name->data, shm_zone[i].shm.name.data, name->len)
name             1296 core/ngx_cycle.c                             size, &shm_zone[i].shm.name, shm_zone[i].shm.size);
name             1304 core/ngx_cycle.c                             &shm_zone[i].shm.name);
name             1320 core/ngx_cycle.c     shm_zone->shm.name = *name;
name              120 core/ngx_cycle.h ngx_int_t ngx_create_pidfile(ngx_str_t *name, ngx_log_t *log);
name              127 core/ngx_cycle.h ngx_shm_zone_t *ngx_shared_memory_add(ngx_conf_t *cf, ngx_str_t *name,
name               31 core/ngx_file.c                           tf->warn, &tf->file.name);
name               48 core/ngx_file.c     file->name.len = path->name.len + 1 + path->len + 10;
name               50 core/ngx_file.c     file->name.data = ngx_pnalloc(pool, file->name.len + 1);
name               51 core/ngx_file.c     if (file->name.data == NULL) {
name               56 core/ngx_file.c     for (i = 0; i < file->name.len; i++) {
name               57 core/ngx_file.c          file->name.data[i] = 'X';
name               61 core/ngx_file.c     ngx_memcpy(file->name.data, path->name.data, path->name.len);
name               71 core/ngx_file.c         (void) ngx_sprintf(file->name.data + path->name.len + 1 + path->len,
name               74 core/ngx_file.c         ngx_create_hashed_filename(path, file->name.data, file->name.len);
name               77 core/ngx_file.c                        "hashed path: %s", file->name.data);
name               79 core/ngx_file.c         file->fd = ngx_open_tempfile(file->name.data, persistent, access);
name               90 core/ngx_file.c             clnf->name = file->name.data;
name              106 core/ngx_file.c                           file->name.data);
name              123 core/ngx_file.c     i = path->name.len + 1;
name              125 core/ngx_file.c     file[path->name.len + path->len]  = '/';
name              149 core/ngx_file.c     pos = path->name.len;
name              158 core/ngx_file.c         file->name.data[pos] = '\0';
name              161 core/ngx_file.c                        "temp file: \"%s\"", file->name.data);
name              163 core/ngx_file.c         if (ngx_create_dir(file->name.data, 0700) == NGX_FILE_ERROR) {
name              168 core/ngx_file.c                               file->name.data);
name              173 core/ngx_file.c         file->name.data[pos] = '/';
name              260 core/ngx_file.c     path->name = value[1];
name              262 core/ngx_file.c     if (path->name.data[path->name.len - 1] == '/') {
name              263 core/ngx_file.c         path->name.len--;
name              266 core/ngx_file.c     if (ngx_conf_full_name(cf->cycle, &path->name, 0) != NGX_OK) {
name              273 core/ngx_file.c     path->conf_file = cf->conf_file->file.name.data;
name              318 core/ngx_file.c     (*path)->name = init->name;
name              320 core/ngx_file.c     if (ngx_conf_full_name(cf->cycle, &(*path)->name, 0) != NGX_OK) {
name              416 core/ngx_file.c         if (p[i]->name.len == path->name.len
name              417 core/ngx_file.c             && ngx_strcmp(p[i]->name.data, path->name.data) == 0)
name              428 core/ngx_file.c                                       &p[i]->name);
name              437 core/ngx_file.c                                       &p[i]->name, p[i]->conf_file, p[i]->line);
name              444 core/ngx_file.c                                       &p[i]->name, p[i]->conf_file, p[i]->line);
name              480 core/ngx_file.c         if (ngx_create_dir(path[i]->name.data, 0700) == NGX_FILE_ERROR) {
name              485 core/ngx_file.c                               path[i]->name.data);
name              498 core/ngx_file.c         if (ngx_file_info((const char *) path[i]->name.data, &fi)
name              502 core/ngx_file.c                           ngx_file_info_n " \"%s\" failed", path[i]->name.data);
name              507 core/ngx_file.c             if (chown((const char *) path[i]->name.data, user, -1) == -1) {
name              510 core/ngx_file.c                               path[i]->name.data, user);
name              520 core/ngx_file.c             if (chmod((const char *) path[i]->name.data, fi.st_mode) == -1) {
name              522 core/ngx_file.c                               "chmod() \"%s\" failed", path[i]->name.data);
name              537 core/ngx_file.c     u_char           *name;
name              611 core/ngx_file.c         name = ngx_alloc(to->len + 1 + 10 + 1, ext->log);
name              612 core/ngx_file.c         if (name == NULL) {
name              616 core/ngx_file.c         (void) ngx_sprintf(name, "%*s.%010uD%Z", to->len, to->data,
name              619 core/ngx_file.c         if (ngx_copy_file(src->data, name, &cf) == NGX_OK) {
name              621 core/ngx_file.c             if (ngx_rename_file(name, to->data) != NGX_FILE_ERROR) {
name              622 core/ngx_file.c                 ngx_free(name);
name              636 core/ngx_file.c                           name, to->data);
name              638 core/ngx_file.c             if (ngx_delete_file(name) == NGX_FILE_ERROR) {
name              640 core/ngx_file.c                               ngx_delete_file_n " \"%s\" failed", name);
name              645 core/ngx_file.c         ngx_free(name);
name              821 core/ngx_file.c     u_char     *p, *name;
name              877 core/ngx_file.c         name = ngx_de_name(&dir);
name              880 core/ngx_file.c                       "tree name %uz:\"%s\"", len, name);
name              882 core/ngx_file.c         if (len == 1 && name[0] == '.') {
name              886 core/ngx_file.c         if (len == 2 && name[0] == '.' && name[1] == '.') {
name              908 core/ngx_file.c         ngx_memcpy(p, name, len + 1);
name               17 core/ngx_file.h     ngx_str_t                  name;
name               42 core/ngx_file.h     ngx_str_t                  name;
name               56 core/ngx_file.h     ngx_str_t                  name;
name              103 core/ngx_file.h typedef ngx_int_t (*ngx_tree_handler_pt) (ngx_tree_ctx_t *ctx, ngx_str_t *name);
name               12 core/ngx_hash.c ngx_hash_find(ngx_hash_t *hash, ngx_uint_t key, u_char *name, size_t len)
name               18 core/ngx_hash.c     ngx_log_error(NGX_LOG_ALERT, ngx_cycle->log, 0, "hf:\"%*s\"", len, name);
name               33 core/ngx_hash.c             if (name[i] != elt->name[i]) {
name               42 core/ngx_hash.c         elt = (ngx_hash_elt_t *) ngx_align_ptr(&elt->name[0] + elt->len,
name               52 core/ngx_hash.c ngx_hash_find_wc_head(ngx_hash_wildcard_t *hwc, u_char *name, size_t len)
name               58 core/ngx_hash.c     ngx_log_error(NGX_LOG_ALERT, ngx_cycle->log, 0, "wch:\"%*s\"", len, name);
name               64 core/ngx_hash.c         if (name[n - 1] == '.') {
name               74 core/ngx_hash.c         key = ngx_hash(key, name[i]);
name               81 core/ngx_hash.c     value = ngx_hash_find(&hwc->hash, key, &name[n], len - n);
name              117 core/ngx_hash.c             value = ngx_hash_find_wc_head(hwc, name, n - 1);
name              146 core/ngx_hash.c ngx_hash_find_wc_tail(ngx_hash_wildcard_t *hwc, u_char *name, size_t len)
name              152 core/ngx_hash.c     ngx_log_error(NGX_LOG_ALERT, ngx_cycle->log, 0, "wct:\"%*s\"", len, name);
name              158 core/ngx_hash.c         if (name[i] == '.') {
name              162 core/ngx_hash.c         key = ngx_hash(key, name[i]);
name              173 core/ngx_hash.c     value = ngx_hash_find(&hwc->hash, key, name, i);
name              193 core/ngx_hash.c             value = ngx_hash_find_wc_tail(hwc, &name[i], len - i);
name              210 core/ngx_hash.c ngx_hash_find_combined(ngx_hash_combined_t *hash, ngx_uint_t key, u_char *name,
name              216 core/ngx_hash.c         value = ngx_hash_find(&hash->hash, key, name, len);
name              228 core/ngx_hash.c         value = ngx_hash_find_wc_head(hash->wc_head, name, len);
name              236 core/ngx_hash.c         value = ngx_hash_find_wc_tail(hash->wc_tail, name, len);
name              247 core/ngx_hash.c #define NGX_HASH_ELT_SIZE(name)                                               \
name              248 core/ngx_hash.c     (sizeof(void *) + ngx_align((name)->key.len + 2, sizeof(void *)))
name              265 core/ngx_hash.c                           hinit->name, hinit->name, hinit->bucket_size);
name              317 core/ngx_hash.c                   hinit->name, hinit->name, hinit->max_size,
name              318 core/ngx_hash.c                   hinit->name, hinit->bucket_size);
name              403 core/ngx_hash.c         ngx_strlow(elt->name, names[n].key.data, names[n].key.len);
name              439 core/ngx_hash.c             val.data = &elt->name[0];
name              446 core/ngx_hash.c             elt = (ngx_hash_elt_t *) ngx_align_ptr(&elt->name[0] + elt->len,
name              464 core/ngx_hash.c     ngx_hash_key_t       *name, *next_name;
name              498 core/ngx_hash.c         name = ngx_array_push(&curr_names);
name              499 core/ngx_hash.c         if (name == NULL) {
name              503 core/ngx_hash.c         name->key.len = len;
name              504 core/ngx_hash.c         name->key.data = names[n].key.data;
name              505 core/ngx_hash.c         name->key_hash = hinit->key(name->key.data, name->key.len);
name              506 core/ngx_hash.c         name->value = names[n].value;
name              510 core/ngx_hash.c                       "wc1: \"%V\" %ui", &name->key, dot);
name              584 core/ngx_hash.c             name->value = (void *) ((uintptr_t) wdc | (dot ? 3 : 2));
name              587 core/ngx_hash.c             name->value = (void *) ((uintptr_t) name->value | 1);
name              711 core/ngx_hash.c     ngx_str_t       *name;
name              779 core/ngx_hash.c     name = ha->keys_hash[k].elts;
name              781 core/ngx_hash.c     if (name) {
name              783 core/ngx_hash.c             if (last != name[i].len) {
name              787 core/ngx_hash.c             if (ngx_strncmp(key->data, name[i].data, last) == 0) {
name              801 core/ngx_hash.c     name = ngx_array_push(&ha->keys_hash[k]);
name              802 core/ngx_hash.c     if (name == NULL) {
name              806 core/ngx_hash.c     *name = *key;
name              832 core/ngx_hash.c         name = ha->keys_hash[k].elts;
name              834 core/ngx_hash.c         if (name) {
name              838 core/ngx_hash.c                 if (len != name[i].len) {
name              842 core/ngx_hash.c                 if (ngx_strncmp(&key->data[1], name[i].data, len) == 0) {
name              856 core/ngx_hash.c         name = ngx_array_push(&ha->keys_hash[k]);
name              857 core/ngx_hash.c         if (name == NULL) {
name              861 core/ngx_hash.c         name->len = last - 1;
name              862 core/ngx_hash.c         name->data = ngx_pnalloc(ha->temp_pool, name->len);
name              863 core/ngx_hash.c         if (name->data == NULL) {
name              867 core/ngx_hash.c         ngx_memcpy(name->data, &key->data[1], name->len);
name              939 core/ngx_hash.c     name = keys->elts;
name              941 core/ngx_hash.c     if (name) {
name              945 core/ngx_hash.c             if (len != name[i].len) {
name              949 core/ngx_hash.c             if (ngx_strncmp(key->data + skip, name[i].data, len) == 0) {
name              961 core/ngx_hash.c     name = ngx_array_push(keys);
name              962 core/ngx_hash.c     if (name == NULL) {
name              966 core/ngx_hash.c     name->len = last - skip;
name              967 core/ngx_hash.c     name->data = ngx_pnalloc(ha->temp_pool, name->len);
name              968 core/ngx_hash.c     if (name->data == NULL) {
name              972 core/ngx_hash.c     ngx_memcpy(name->data, key->data + skip, name->len);
name               18 core/ngx_hash.h     u_char            name[1];
name               58 core/ngx_hash.h     char             *name;
name               99 core/ngx_hash.h void *ngx_hash_find(ngx_hash_t *hash, ngx_uint_t key, u_char *name, size_t len);
name              100 core/ngx_hash.h void *ngx_hash_find_wc_head(ngx_hash_wildcard_t *hwc, u_char *name, size_t len);
name              101 core/ngx_hash.h void *ngx_hash_find_wc_tail(ngx_hash_wildcard_t *hwc, u_char *name, size_t len);
name              103 core/ngx_hash.h     u_char *name, size_t len);
name              597 core/ngx_inet.c     u->addrs[0].name.len = len + 4;
name              598 core/ngx_inet.c     u->addrs[0].name.data = u->url.data;
name              969 core/ngx_inet.c             u->addrs[i].name.len = len;
name              970 core/ngx_inet.c             u->addrs[i].name.data = p;
name             1001 core/ngx_inet.c         u->addrs[0].name.len = ngx_sprintf(p, "%V:%d",
name             1003 core/ngx_inet.c         u->addrs[0].name.data = p;
name               72 core/ngx_inet.h     ngx_str_t                 name;
name              267 core/ngx_log.c     u_char  *p, *name;
name              273 core/ngx_log.c     name = (u_char *) NGX_ERROR_LOG_PATH;
name              280 core/ngx_log.c     nlen = ngx_strlen(name);
name              290 core/ngx_log.c     if (name[1] != ':') {
name              292 core/ngx_log.c     if (name[0] != '/') {
name              308 core/ngx_log.c             name = malloc(plen + nlen + 2);
name              309 core/ngx_log.c             if (name == NULL) {
name              313 core/ngx_log.c             p = ngx_cpymem(name, prefix, plen);
name              321 core/ngx_log.c             p = name;
name              325 core/ngx_log.c     ngx_log_file.fd = ngx_open_file(name, NGX_FILE_APPEND,
name              332 core/ngx_log.c                        ngx_open_file_n " \"%s\" failed", name);
name              336 core/ngx_log.c                        ngx_open_file_n " \"%s\" failed", name);
name              351 core/ngx_log.c ngx_log_create(ngx_cycle_t *cycle, ngx_str_t *name)
name              360 core/ngx_log.c     log->file = ngx_conf_open_file(cycle, name);
name              426 core/ngx_log.c     ngx_str_t  *value, name;
name              435 core/ngx_log.c         ngx_str_null(&name);
name              438 core/ngx_log.c         name = value[1];
name              441 core/ngx_log.c     cf->cycle->new_log.file = ngx_conf_open_file(cf->cycle, &name);
name              199 core/ngx_log.h ngx_log_t *ngx_log_create(ngx_cycle_t *cycle, ngx_str_t *name);
name               24 core/ngx_open_file_cache.c static ngx_int_t ngx_open_and_stat_file(u_char *name, ngx_open_file_info_t *of,
name               37 core/ngx_open_file_cache.c     ngx_open_file_lookup(ngx_open_file_cache_t *cache, ngx_str_t *name,
name              102 core/ngx_open_file_cache.c                        "delete cached open file: %s", file->name);
name              110 core/ngx_open_file_cache.c             ngx_free(file->name);
name              130 core/ngx_open_file_cache.c ngx_open_cached_file(ngx_open_file_cache_t *cache, ngx_str_t *name,
name              149 core/ngx_open_file_cache.c             if (ngx_file_info(name->data, &fi) == NGX_FILE_ERROR) {
name              171 core/ngx_open_file_cache.c         rc = ngx_open_and_stat_file(name->data, of, pool->log);
name              178 core/ngx_open_file_cache.c             clnf->name = name->data;
name              192 core/ngx_open_file_cache.c     hash = ngx_crc32_long(name->data, name->len);
name              194 core/ngx_open_file_cache.c     file = ngx_open_file_lookup(cache, name, hash);
name              206 core/ngx_open_file_cache.c             rc = ngx_open_and_stat_file(name->data, of, pool->log);
name              248 core/ngx_open_file_cache.c                        file->name, file->fd, file->count, file->err);
name              264 core/ngx_open_file_cache.c         rc = ngx_open_and_stat_file(name->data, of, pool->log);
name              313 core/ngx_open_file_cache.c                               name->data);
name              330 core/ngx_open_file_cache.c     rc = ngx_open_and_stat_file(name->data, of, pool->log);
name              348 core/ngx_open_file_cache.c     file->name = ngx_alloc(name->len + 1, pool->log);
name              350 core/ngx_open_file_cache.c     if (file->name == NULL) {
name              356 core/ngx_open_file_cache.c     ngx_cpystrn(file->name, name->data, name->len + 1);
name              408 core/ngx_open_file_cache.c                    file->name, file->fd, file->count, file->err, file->uses);
name              440 core/ngx_open_file_cache.c                                   file->name);
name              444 core/ngx_open_file_cache.c             ngx_free(file->name);
name              455 core/ngx_open_file_cache.c                           ngx_close_file_n " \"%s\" failed", name->data);
name              464 core/ngx_open_file_cache.c ngx_open_and_stat_file(u_char *name, ngx_open_file_info_t *of, ngx_log_t *log)
name              471 core/ngx_open_file_cache.c         if (ngx_file_info(name, &fi) == NGX_FILE_ERROR) {
name              482 core/ngx_open_file_cache.c         if (ngx_file_info(name, &fi) == NGX_FILE_ERROR) {
name              499 core/ngx_open_file_cache.c         fd = ngx_open_file(name, NGX_FILE_RDONLY|NGX_FILE_NONBLOCK,
name              503 core/ngx_open_file_cache.c         fd = ngx_open_file(name, NGX_FILE_APPEND, NGX_FILE_CREATE_OR_OPEN,
name              514 core/ngx_open_file_cache.c                       ngx_fd_info_n " \"%s\" failed", name);
name              518 core/ngx_open_file_cache.c                           ngx_close_file_n " \"%s\" failed", name);
name              529 core/ngx_open_file_cache.c                           ngx_close_file_n " \"%s\" failed", name);
name              540 core/ngx_open_file_cache.c                               ngx_read_ahead_n " \"%s\" failed", name);
name              547 core/ngx_open_file_cache.c                               ngx_directio_on_n " \"%s\" failed", name);
name              665 core/ngx_open_file_cache.c                    file->name, file->fd, file->count, file->uses, file->close);
name              690 core/ngx_open_file_cache.c                           ngx_close_file_n " \"%s\" failed", file->name);
name              700 core/ngx_open_file_cache.c     ngx_free(file->name);
name              759 core/ngx_open_file_cache.c                        "expire cached open file: %s", file->name);
name              766 core/ngx_open_file_cache.c             ngx_free(file->name);
name              795 core/ngx_open_file_cache.c             p = (ngx_strcmp(file->name, file_temp->name) < 0)
name              815 core/ngx_open_file_cache.c ngx_open_file_lookup(ngx_open_file_cache_t *cache, ngx_str_t *name,
name              842 core/ngx_open_file_cache.c             rc = ngx_strcmp(name->data, file->name);
name               53 core/ngx_open_file_cache.h     u_char                  *name;
name              113 core/ngx_open_file_cache.h ngx_int_t ngx_open_cached_file(ngx_open_file_cache_t *cache, ngx_str_t *name,
name              517 core/ngx_output_chain.c                               src->file->name.data);
name              553 core/ngx_output_chain.c                               src->file->name.data);
name              570 core/ngx_output_chain.c                           n, size, src->file->name.data);
name              375 core/ngx_palloc.c                       ngx_close_file_n " \"%s\" failed", c->name);
name              388 core/ngx_palloc.c                    c->fd, c->name);
name              390 core/ngx_palloc.c     if (ngx_delete_file(c->name) == NGX_FILE_ERROR) {
name              395 core/ngx_palloc.c                           ngx_delete_file_n " \"%s\" failed", c->name);
name              401 core/ngx_palloc.c                       ngx_close_file_n " \"%s\" failed", c->name);
name               69 core/ngx_palloc.h     u_char               *name;
name              176 core/ngx_regex.c                           n, s, re[i].name);
name               40 core/ngx_regex.h     u_char       *name;
name               76 core/ngx_resolver.c     ngx_str_t *name, uint32_t hash);
name               81 core/ngx_resolver.c static ngx_int_t ngx_resolver_copy(ngx_resolver_t *r, ngx_str_t *name,
name              153 core/ngx_resolver.c         uc->server = addr->name;
name              231 core/ngx_resolver.c         addr = ngx_inet_addr(temp->name.data, temp->name.len);
name              268 core/ngx_resolver.c                    "resolve: \"%V\"", &ctx->name);
name              326 core/ngx_resolver.c         hash = ngx_crc32_short(ctx->name.data, ctx->name.len);
name              328 core/ngx_resolver.c         rn = ngx_resolver_lookup_name(r, &ctx->name, hash);
name              347 core/ngx_resolver.c                       "could not cancel %V resolving", &ctx->name);
name              380 core/ngx_resolver.c     hash = ngx_crc32_short(ctx->name.data, ctx->name.len);
name              382 core/ngx_resolver.c     rn = ngx_resolver_lookup_name(r, &ctx->name, hash);
name              443 core/ngx_resolver.c                 ctx->name.len = rn->cnlen;
name              444 core/ngx_resolver.c                 ctx->name.data = rn->u.cname;
name              499 core/ngx_resolver.c         rn->name = ngx_resolver_dup(r, ctx->name.data, ctx->name.len);
name              500 core/ngx_resolver.c         if (rn->name == NULL) {
name              506 core/ngx_resolver.c         rn->nlen = (u_short) ctx->name.len;
name              522 core/ngx_resolver.c         ngx_resolver_free(r, rn->name);
name              574 core/ngx_resolver.c     ngx_resolver_free(r, rn->name);
name              585 core/ngx_resolver.c     u_char               *name;
name              609 core/ngx_resolver.c             name = ngx_resolver_dup(r, rn->name, rn->nlen);
name              610 core/ngx_resolver.c             if (name == NULL) {
name              614 core/ngx_resolver.c             ctx->name.len = rn->nlen;
name              615 core/ngx_resolver.c             ctx->name.data = name;
name              623 core/ngx_resolver.c             ngx_resolver_free(r, name);
name              686 core/ngx_resolver.c     rn->name = NULL;
name              812 core/ngx_resolver.c                        "resolver expire \"%*s\"", (size_t) rn->nlen, rn->name);
name              919 core/ngx_resolver.c                        (size_t) rn->nlen, rn->name, rn->waiting);
name             1016 core/ngx_resolver.c                               rn->nlen, rn->name);
name             1124 core/ngx_resolver.c     ngx_str_t             name;
name             1130 core/ngx_resolver.c     if (ngx_resolver_copy(r, &name, buf, &buf[12], &buf[last]) != NGX_OK) {
name             1134 core/ngx_resolver.c     ngx_log_debug1(NGX_LOG_DEBUG_CORE, r->log, 0, "resolver qs:%V", &name);
name             1136 core/ngx_resolver.c     hash = ngx_crc32_short(name.data, name.len);
name             1140 core/ngx_resolver.c     rn = ngx_resolver_lookup_name(r, &name, hash);
name             1144 core/ngx_resolver.c                       "unexpected response for %V", &name);
name             1153 core/ngx_resolver.c                       ident, &name, qident);
name             1157 core/ngx_resolver.c     ngx_resolver_free(r, name.data);
name             1361 core/ngx_resolver.c         if (ngx_resolver_copy(r, &name, buf, cname, &buf[last]) != NGX_OK) {
name             1366 core/ngx_resolver.c                        "resolver cname:\"%V\"", &name);
name             1370 core/ngx_resolver.c         rn->cnlen = (u_short) name.len;
name             1371 core/ngx_resolver.c         rn->u.cname = name.data;
name             1381 core/ngx_resolver.c             ctx->name = name;
name             1410 core/ngx_resolver.c     ngx_resolver_free(r, name.data);
name             1424 core/ngx_resolver.c     ngx_str_t             name;
name             1530 core/ngx_resolver.c     if (ngx_resolver_copy(r, &name, buf, &buf[i], &buf[n]) != NGX_OK) {
name             1534 core/ngx_resolver.c     ngx_log_debug1(NGX_LOG_DEBUG_CORE, r->log, 0, "resolver an:%V", &name);
name             1536 core/ngx_resolver.c     if (name.len != (size_t) rn->nlen
name             1537 core/ngx_resolver.c         || ngx_strncmp(name.data, rn->name, name.len) != 0)
name             1540 core/ngx_resolver.c             ngx_resolver_free(r, rn->name);
name             1543 core/ngx_resolver.c         rn->nlen = (u_short) name.len;
name             1544 core/ngx_resolver.c         rn->name = name.data;
name             1546 core/ngx_resolver.c         name.data = ngx_resolver_dup(r, rn->name, name.len);
name             1547 core/ngx_resolver.c         if (name.data == NULL) {
name             1567 core/ngx_resolver.c          ctx->name = name;
name             1573 core/ngx_resolver.c     ngx_resolver_free(r, name.data);
name             1604 core/ngx_resolver.c ngx_resolver_lookup_name(ngx_resolver_t *r, ngx_str_t *name, uint32_t hash)
name             1630 core/ngx_resolver.c             rc = ngx_memn2cmp(name->data, rn->name, name->len, rn->nlen);
name             1702 core/ngx_resolver.c             p = (ngx_memn2cmp(rn->name, rn_temp->name, rn->nlen, rn_temp->nlen)
name             1730 core/ngx_resolver.c     nlen = ctx->name.len ? (1 + ctx->name.len + 1) : 1;
name             1747 core/ngx_resolver.c                    "resolve: \"%V\" %i", &ctx->name, ident & 0xffff);
name             1777 core/ngx_resolver.c     for (s = ctx->name.data + ctx->name.len - 1; s >= ctx->name.data; s--) {
name             1857 core/ngx_resolver.c ngx_resolver_copy(ngx_resolver_t *r, ngx_str_t *name, u_char *buf, u_char *src,
name             1905 core/ngx_resolver.c     if (name == NULL) {
name             1910 core/ngx_resolver.c         name->len = 0;
name             1911 core/ngx_resolver.c         name->data = NULL;
name             1920 core/ngx_resolver.c     name->data = dst;
name             1944 core/ngx_resolver.c             name->len = dst - name->data;
name             1973 core/ngx_resolver.c     if (rn->name) {
name             1974 core/ngx_resolver.c         ngx_resolver_free_locked(r, rn->name);
name               54 core/ngx_resolver.h     u_char                   *name;
name              120 core/ngx_resolver.h     ngx_str_t                 name;
name               15 core/ngx_shmtx.c ngx_shmtx_create(ngx_shmtx_t *mtx, void *addr, u_char *name)
name               26 core/ngx_shmtx.c ngx_shmtx_create(ngx_shmtx_t *mtx, void *addr, u_char *name)
name               28 core/ngx_shmtx.c     if (mtx->name) {
name               30 core/ngx_shmtx.c         if (ngx_strcmp(name, mtx->name) == 0) {
name               31 core/ngx_shmtx.c             mtx->name = name;
name               38 core/ngx_shmtx.c     mtx->fd = ngx_open_file(name, NGX_FILE_RDWR, NGX_FILE_CREATE_OR_OPEN,
name               43 core/ngx_shmtx.c                       ngx_open_file_n " \"%s\" failed", name);
name               47 core/ngx_shmtx.c     if (ngx_delete_file(name) == NGX_FILE_ERROR) {
name               49 core/ngx_shmtx.c                       ngx_delete_file_n " \"%s\" failed", name);
name               52 core/ngx_shmtx.c     mtx->name = name;
name               63 core/ngx_shmtx.c                       ngx_close_file_n " \"%s\" failed", mtx->name);
name               20 core/ngx_shmtx.h     u_char        *name;
name               25 core/ngx_shmtx.h ngx_int_t ngx_shmtx_create(ngx_shmtx_t *mtx, void *addr, u_char *name);
name               68 core/ngx_shmtx.h     ngx_log_abort(err, ngx_trylock_fd_n " %s failed", mtx->name);
name               85 core/ngx_shmtx.h     ngx_log_abort(err, ngx_lock_fd_n " %s failed", mtx->name);
name              100 core/ngx_shmtx.h     ngx_log_abort(err, ngx_unlock_fd_n " %s failed", mtx->name);
name              216 core/ngx_string.h ngx_str_node_t *ngx_str_rbtree_lookup(ngx_rbtree_t *rbtree, ngx_str_t *name,
name              466 event/modules/ngx_rtsig_module.c     int                name[2], rtsig_max, rtsig_nr, events, ready;
name              621 event/modules/ngx_rtsig_module.c                 name[0] = CTL_KERN;
name              622 event/modules/ngx_rtsig_module.c                 name[1] = KERN_RTSIGMAX;
name              625 event/modules/ngx_rtsig_module.c                 if (sysctl(name, 2, &rtsig_max, &len, NULL, 0) == -1) {
name              632 event/modules/ngx_rtsig_module.c                 name[1] = KERN_RTSIGNR;
name              635 event/modules/ngx_rtsig_module.c                 if (sysctl(name, 2, &rtsig_nr, &len, NULL, 0) == -1) {
name              448 event/ngx_event.c                       "using the \"%s\" event method", ecf->name);
name              511 event/ngx_event.c     shm.name.len = sizeof("nginx_shared_zone");
name              512 event/ngx_event.c     shm.name.data = (u_char *) "nginx_shared_zone";
name              965 event/ngx_event.c     if (ngx_strcmp(cmd->name.data, "connections") == 0) {
name             1016 event/ngx_event.c         if (module->name->len == value[1].len) {
name             1017 event/ngx_event.c             if (ngx_strcmp(module->name->data, value[1].data) == 0) {
name             1019 event/ngx_event.c                 ecf->name = module->name->data;
name             1032 event/ngx_event.c                                &value[1], old_ecf->name);
name             1130 event/ngx_event.c     ecf->name = (void *) NGX_CONF_UNSET;
name             1219 event/ngx_event.c             if (ngx_strcmp(event_module->name->data, event_core_name.data) == 0)
name             1240 event/ngx_event.c     ngx_conf_init_ptr_value(ecf->name, event_module->name->data);
name              482 event/ngx_event.h     u_char       *name;
name              491 event/ngx_event.h     ngx_str_t              *name;
name               71 event/ngx_event_connect.c                           "bind(%V) failed", &pc->local->name);
name              124 event/ngx_event_connect.c                    "connect to %V, fd:%d #%d", pc->name, s, c->number);
name              160 event/ngx_event_connect.c                           pc->name);
name               41 event/ngx_event_connect.h     ngx_str_t                       *name;
name             1530 event/ngx_event_openssl.c     len = sizeof(" in SSL session shared cache \"\"") + shm_zone->shm.name.len;
name             1538 event/ngx_event_openssl.c                 &shm_zone->shm.name);
name             2114 event/ngx_event_openssl.c     X509_NAME  *name;
name             2123 event/ngx_event_openssl.c     name = X509_get_subject_name(cert);
name             2124 event/ngx_event_openssl.c     if (name == NULL) {
name             2129 event/ngx_event_openssl.c     p = X509_NAME_oneline(name, NULL, 0);
name             2156 event/ngx_event_openssl.c     X509_NAME  *name;
name             2165 event/ngx_event_openssl.c     name = X509_get_issuer_name(cert);
name             2166 event/ngx_event_openssl.c     if (name == NULL) {
name             2171 event/ngx_event_openssl.c     p = X509_NAME_oneline(name, NULL, 0);
name              170 http/modules/ngx_http_auth_basic_module.c     file.name = user_file;
name              362 http/modules/ngx_http_auth_basic_module.c                       ngx_close_file_n " \"%s\" failed", file->name.data);
name               26 http/modules/ngx_http_autoindex_module.c     ngx_str_t      name;
name               53 http/modules/ngx_http_autoindex_module.c     ngx_dir_t *dir, ngx_str_t *name);
name              331 http/modules/ngx_http_autoindex_module.c         entry->name.len = len;
name              333 http/modules/ngx_http_autoindex_module.c         entry->name.data = ngx_pnalloc(pool, len + 1);
name              334 http/modules/ngx_http_autoindex_module.c         if (entry->name.data == NULL) {
name              338 http/modules/ngx_http_autoindex_module.c         ngx_cpystrn(entry->name.data, ngx_de_name(&dir), len + 1);
name              344 http/modules/ngx_http_autoindex_module.c             entry->utf_len = ngx_utf8_length(entry->name.data, entry->name.len);
name              349 http/modules/ngx_http_autoindex_module.c         entry->colon = (ngx_strchr(entry->name.data, ':') != NULL);
name              373 http/modules/ngx_http_autoindex_module.c             + entry[i].name.len + entry[i].escape
name              376 http/modules/ngx_http_autoindex_module.c             + entry[i].name.len - entry[i].utf_len + entry[i].colon * 2
name              415 http/modules/ngx_http_autoindex_module.c             ngx_escape_uri(b->last, entry[i].name.data, entry[i].name.len,
name              418 http/modules/ngx_http_autoindex_module.c             b->last += entry[i].name.len + entry[i].escape;
name              421 http/modules/ngx_http_autoindex_module.c             b->last = ngx_cpymem(b->last, entry[i].name.data,
name              422 http/modules/ngx_http_autoindex_module.c                                  entry[i].name.len);
name              434 http/modules/ngx_http_autoindex_module.c         if (entry[i].name.len != len) {
name              442 http/modules/ngx_http_autoindex_module.c             b->last = ngx_utf8_cpystrn(b->last, entry[i].name.data,
name              443 http/modules/ngx_http_autoindex_module.c                                        utf_len, entry[i].name.len + 1);
name              447 http/modules/ngx_http_autoindex_module.c             b->last = ngx_cpystrn(b->last, entry[i].name.data,
name              569 http/modules/ngx_http_autoindex_module.c     return (int) ngx_strcmp(first->name.data, second->name.data);
name              612 http/modules/ngx_http_autoindex_module.c ngx_http_autoindex_error(ngx_http_request_t *r, ngx_dir_t *dir, ngx_str_t *name)
name              616 http/modules/ngx_http_autoindex_module.c                       ngx_close_dir_n " \"%V\" failed", name);
name               27 http/modules/ngx_http_browser_module.c     u_char                      name[12];
name               35 http/modules/ngx_http_browser_module.c     u_char                      name[12];
name               40 http/modules/ngx_http_browser_module.c     ngx_str_t                   name;
name              260 http/modules/ngx_http_browser_module.c     u_char                     *name, *ua, *last, c;
name              281 http/modules/ngx_http_browser_module.c             name = ua + modern[i].skip;
name              283 http/modules/ngx_http_browser_module.c             if (name >= last) {
name              287 http/modules/ngx_http_browser_module.c             name = (u_char *) ngx_strstr(name, modern[i].name);
name              289 http/modules/ngx_http_browser_module.c             if (name == NULL) {
name              294 http/modules/ngx_http_browser_module.c                            "browser: \"%s\"", name);
name              296 http/modules/ngx_http_browser_module.c             name += modern[i].add;
name              298 http/modules/ngx_http_browser_module.c             if (name >= last) {
name              303 http/modules/ngx_http_browser_module.c                            "version: \"%ui\" \"%s\"", modern[i].version, name);
name              309 http/modules/ngx_http_browser_module.c             while (name < last) {
name              311 http/modules/ngx_http_browser_module.c                 c = *name++;
name              404 http/modules/ngx_http_browser_module.c     for (var = ngx_http_browsers; var->name.len; var++) {
name              406 http/modules/ngx_http_browser_module.c         v = ngx_http_add_variable(cf, &var->name, NGX_HTTP_VAR_CHANGEABLE);
name              498 http/modules/ngx_http_browser_module.c              (void) ngx_cpystrn(browsers[i].name,
name              499 http/modules/ngx_http_browser_module.c                                 ngx_http_modern_browser_masks[n].name, 12);
name               24 http/modules/ngx_http_charset_filter_module.c     ngx_str_t                   name;
name               88 http/modules/ngx_http_charset_filter_module.c     ngx_str_t *name);
name               90 http/modules/ngx_http_charset_filter_module.c     ngx_str_t *name);
name               92 http/modules/ngx_http_charset_filter_module.c     ngx_str_t *name);
name               93 http/modules/ngx_http_charset_filter_module.c static ngx_int_t ngx_http_get_charset(ngx_http_request_t *r, ngx_str_t *name);
name              116 http/modules/ngx_http_charset_filter_module.c static ngx_int_t ngx_http_add_charset(ngx_array_t *charsets, ngx_str_t *name);
name              305 http/modules/ngx_http_charset_filter_module.c ngx_http_destination_charset(ngx_http_request_t *r, ngx_str_t *name)
name              327 http/modules/ngx_http_charset_filter_module.c         *name = *r->headers_out.override_charset;
name              329 http/modules/ngx_http_charset_filter_module.c         charset = ngx_http_get_charset(r, name);
name              336 http/modules/ngx_http_charset_filter_module.c                       "unknown charset \"%V\" to override", name);
name              362 http/modules/ngx_http_charset_filter_module.c         *name = charsets[charset].name;
name              372 http/modules/ngx_http_charset_filter_module.c     name->len = vv->len;
name              373 http/modules/ngx_http_charset_filter_module.c     name->data = vv->data;
name              375 http/modules/ngx_http_charset_filter_module.c     return ngx_http_get_charset(r, name);
name              417 http/modules/ngx_http_charset_filter_module.c ngx_http_source_charset(ngx_http_request_t *r, ngx_str_t *name)
name              426 http/modules/ngx_http_charset_filter_module.c         *name = r->headers_out.charset;
name              427 http/modules/ngx_http_charset_filter_module.c         return ngx_http_get_charset(r, name);
name              435 http/modules/ngx_http_charset_filter_module.c         name->len = 0;
name              442 http/modules/ngx_http_charset_filter_module.c         *name = charsets[charset].name;
name              452 http/modules/ngx_http_charset_filter_module.c     name->len = vv->len;
name              453 http/modules/ngx_http_charset_filter_module.c     name->data = vv->data;
name              455 http/modules/ngx_http_charset_filter_module.c     return ngx_http_get_charset(r, name);
name              460 http/modules/ngx_http_charset_filter_module.c ngx_http_get_charset(ngx_http_request_t *r, ngx_str_t *name)
name              472 http/modules/ngx_http_charset_filter_module.c         if (charset[i].name.len != name->len) {
name              476 http/modules/ngx_http_charset_filter_module.c         if (ngx_strncasecmp(charset[i].name.data, name->data, name->len) == 0) {
name              523 http/modules/ngx_http_charset_filter_module.c     ctx->charset_name = charsets[charset].name;
name             1444 http/modules/ngx_http_charset_filter_module.c ngx_http_add_charset(ngx_array_t *charsets, ngx_str_t *name)
name             1451 http/modules/ngx_http_charset_filter_module.c         if (name->len != c[i].name.len) {
name             1455 http/modules/ngx_http_charset_filter_module.c         if (ngx_strcasecmp(name->data, c[i].name.data) == 0) {
name             1470 http/modules/ngx_http_charset_filter_module.c     c->name = *name;
name             1473 http/modules/ngx_http_charset_filter_module.c     if (ngx_strcasecmp(name->data, (u_char *) "utf-8") == 0) {
name             1637 http/modules/ngx_http_charset_filter_module.c                    &charset[c].name, &charset[recode[i].dst].name);
name              218 http/modules/ngx_http_dav_module.c     temp = &r->request_body->temp_file->file.name;
name              650 http/modules/ngx_http_fastcgi_module.c         u->resolved->host = url.addrs[0].name;
name             1927 http/modules/ngx_http_fastcgi_module.c     for (v = ngx_http_fastcgi_vars; v->name.len; v++) {
name             1928 http/modules/ngx_http_fastcgi_module.c         var = ngx_http_add_variable(cf, &v->name, v->flags);
name             2192 http/modules/ngx_http_fastcgi_module.c                            &shm_zone->shm.name);
name             2252 http/modules/ngx_http_fastcgi_module.c     hash.name = "fastcgi_hide_headers_hash";
name             2453 http/modules/ngx_http_fastcgi_module.c     hash.name = "fastcgi_params_hash";
name             2623 http/modules/ngx_http_fastcgi_module.c     if (clcf->name.data[clcf->name.len - 1] == '/') {
name             2705 http/modules/ngx_http_fastcgi_module.c                        "\"%V\" requires PCRE library", &cmd->name);
name              233 http/modules/ngx_http_flv_module.c     b->file->name = path;
name               89 http/modules/ngx_http_geo_module.c     ngx_str_t *name);
name               91 http/modules/ngx_http_geo_module.c     ngx_http_geo_conf_ctx_t *ctx, ngx_str_t *name);
name              295 http/modules/ngx_http_geo_module.c     ngx_str_t                *value, name;
name              311 http/modules/ngx_http_geo_module.c     name = value[1];
name              312 http/modules/ngx_http_geo_module.c     name.len--;
name              313 http/modules/ngx_http_geo_module.c     name.data++;
name              317 http/modules/ngx_http_geo_module.c         geo->index = ngx_http_get_variable_index(cf, &name);
name              322 http/modules/ngx_http_geo_module.c         name = value[2];
name              323 http/modules/ngx_http_geo_module.c         name.len--;
name              324 http/modules/ngx_http_geo_module.c         name.data++;
name              330 http/modules/ngx_http_geo_module.c     var = ngx_http_add_variable(cf, &name, NGX_HTTP_VAR_CHANGEABLE);
name             1089 http/modules/ngx_http_geo_module.c     ngx_str_t *name)
name             1094 http/modules/ngx_http_geo_module.c     file.len = name->len + 4;
name             1095 http/modules/ngx_http_geo_module.c     file.data = ngx_pnalloc(ctx->temp_pool, name->len + 5);
name             1100 http/modules/ngx_http_geo_module.c     ngx_sprintf(file.data, "%V.bin%Z", name);
name             1141 http/modules/ngx_http_geo_module.c     ngx_str_t *name)
name             1158 http/modules/ngx_http_geo_module.c     file.name = *name;
name             1161 http/modules/ngx_http_geo_module.c     file.fd = ngx_open_file(name->data, NGX_FILE_RDONLY, 0, 0);
name             1166 http/modules/ngx_http_geo_module.c                                ngx_open_file_n " \"%s\" failed", name->data);
name             1174 http/modules/ngx_http_geo_module.c             name->data);
name             1182 http/modules/ngx_http_geo_module.c             name->data, ctx->include_name.data);
name             1189 http/modules/ngx_http_geo_module.c                            ngx_fd_info_n " \"%s\" failed", name->data);
name             1196 http/modules/ngx_http_geo_module.c     ch = name->data[name->len - 4];
name             1197 http/modules/ngx_http_geo_module.c     name->data[name->len - 4] = '\0';
name             1199 http/modules/ngx_http_geo_module.c     if (ngx_file_info(name->data, &fi) == NGX_FILE_ERROR) {
name             1201 http/modules/ngx_http_geo_module.c                            ngx_file_info_n " \"%s\" failed", name->data);
name             1205 http/modules/ngx_http_geo_module.c     name->data[name->len - 4] = ch;
name             1209 http/modules/ngx_http_geo_module.c                            "stale binary geo range base \"%s\"", name->data);
name             1222 http/modules/ngx_http_geo_module.c                            ngx_read_file_n " \"%s\" failed", name->data);
name             1229 http/modules/ngx_http_geo_module.c             name->data, n, size);
name             1237 http/modules/ngx_http_geo_module.c              "incompatible binary geo range base \"%s\"", name->data);
name             1283 http/modules/ngx_http_geo_module.c                   "CRC32 mismatch in binary geo range base \"%s\"", name->data);
name             1288 http/modules/ngx_http_geo_module.c                        "using binary geo range base \"%s\"", name->data);
name             1290 http/modules/ngx_http_geo_module.c     ctx->include_name = *name;
name             1305 http/modules/ngx_http_geo_module.c                       ngx_close_file_n " \"%s\" failed", name->data);
name             1324 http/modules/ngx_http_geo_module.c     fm.name = ngx_pnalloc(ctx->temp_pool, ctx->include_name.len + 5);
name             1325 http/modules/ngx_http_geo_module.c     if (fm.name == NULL) {
name             1329 http/modules/ngx_http_geo_module.c     ngx_sprintf(fm.name, "%V.bin%Z", &ctx->include_name);
name             1335 http/modules/ngx_http_geo_module.c                   "creating binary geo range base \"%s\"", fm.name);
name               22 http/modules/ngx_http_geoip_module.c     ngx_str_t  *name;
name              390 http/modules/ngx_http_geoip_module.c     for (v = ngx_http_geoip_vars; v->name.len; v++) {
name              391 http/modules/ngx_http_geoip_module.c         var = ngx_http_add_variable(cf, &v->name, v->flags);
name              243 http/modules/ngx_http_gzip_static_module.c     b->file->name = path;
name               19 http/modules/ngx_http_headers_filter_module.c     ngx_str_t                  name;
name              585 http/modules/ngx_http_headers_filter_module.c     for (i = 0; set[i].name.len; i++) {
name              586 http/modules/ngx_http_headers_filter_module.c         if (ngx_strcasecmp(value[1].data, set[i].name.data) != 0) {
name               13 http/modules/ngx_http_index_module.c     ngx_str_t                name;
name               98 http/modules/ngx_http_index_module.c     u_char                       *p, *name;
name              125 http/modules/ngx_http_index_module.c     name = NULL;
name              134 http/modules/ngx_http_index_module.c             if (index[i].name.data[0] == '/') {
name              135 http/modules/ngx_http_index_module.c                 return ngx_http_internal_redirect(r, &index[i].name, &r->args);
name              139 http/modules/ngx_http_index_module.c             len = index[i].name.len;
name              163 http/modules/ngx_http_index_module.c             name = ngx_http_map_uri_to_path(r, &path, &root, reserve);
name              164 http/modules/ngx_http_index_module.c             if (name == NULL) {
name              168 http/modules/ngx_http_index_module.c             allocated = path.data + path.len - name;
name              175 http/modules/ngx_http_index_module.c             ngx_memcpy(name, index[i].name.data, index[i].name.len);
name              177 http/modules/ngx_http_index_module.c             path.len = (name + index[i].name.len - 1) - path.data;
name              181 http/modules/ngx_http_index_module.c             e.pos = name;
name              188 http/modules/ngx_http_index_module.c             if (*name == '/') {
name              190 http/modules/ngx_http_index_module.c                 uri.data = name;
name              230 http/modules/ngx_http_index_module.c                 rc = ngx_http_index_test_dir(r, clcf, path.data, name - 1);
name              261 http/modules/ngx_http_index_module.c             ngx_memcpy(p, name, len - 1);
name              403 http/modules/ngx_http_index_module.c         index->name.len = sizeof(NGX_HTTP_DEFAULT_INDEX);
name              404 http/modules/ngx_http_index_module.c         index->name.data = (u_char *) NGX_HTTP_DEFAULT_INDEX;
name              477 http/modules/ngx_http_index_module.c         index->name.len = value[i].len;
name              478 http/modules/ngx_http_index_module.c         index->name.data = value[i].data;
name              485 http/modules/ngx_http_index_module.c             if (ilcf->max_index_len < index->name.len) {
name              486 http/modules/ngx_http_index_module.c                 ilcf->max_index_len = index->name.len;
name              489 http/modules/ngx_http_index_module.c             if (index->name.data[0] == '/') {
name              494 http/modules/ngx_http_index_module.c             index->name.len++;
name              241 http/modules/ngx_http_limit_req_module.c                       excess / 1000, excess % 1000, &lrcf->shm_zone->shm.name);
name              254 http/modules/ngx_http_limit_req_module.c                   excess / 1000, excess % 1000, &lrcf->shm_zone->shm.name);
name              497 http/modules/ngx_http_limit_req_module.c                           &shm_zone->shm.name, &ctx->var, &octx->var);
name              527 http/modules/ngx_http_limit_req_module.c     len = sizeof(" in limit_req zone \"\"") + shm_zone->shm.name.len;
name              535 http/modules/ngx_http_limit_req_module.c                 &shm_zone->shm.name);
name              590 http/modules/ngx_http_limit_req_module.c     ngx_str_t                 *value, name, s;
name              602 http/modules/ngx_http_limit_req_module.c     name.len = 0;
name              608 http/modules/ngx_http_limit_req_module.c             name.data = value[i].data + 5;
name              610 http/modules/ngx_http_limit_req_module.c             p = (u_char *) ngx_strchr(name.data, ':');
name              615 http/modules/ngx_http_limit_req_module.c                 name.len = p - name.data;
name              682 http/modules/ngx_http_limit_req_module.c     if (name.len == 0 || size == 0) {
name              685 http/modules/ngx_http_limit_req_module.c                            &cmd->name);
name              692 http/modules/ngx_http_limit_req_module.c                            &cmd->name);
name              698 http/modules/ngx_http_limit_req_module.c     shm_zone = ngx_shared_memory_add(cf, &name, size,
name              778 http/modules/ngx_http_limit_req_module.c                            &cmd->name);
name              785 http/modules/ngx_http_limit_req_module.c                            &lrcf->shm_zone->shm.name);
name              211 http/modules/ngx_http_limit_zone_module.c                               &lzcf->shm_zone->shm.name);
name              348 http/modules/ngx_http_limit_zone_module.c                           &shm_zone->shm.name, &ctx->var, &octx->var);
name              380 http/modules/ngx_http_limit_zone_module.c     len = sizeof(" in limit_zone \"\"") + shm_zone->shm.name.len;
name              388 http/modules/ngx_http_limit_zone_module.c                 &shm_zone->shm.name);
name               30 http/modules/ngx_http_log_module.c     ngx_str_t                   name;
name               69 http/modules/ngx_http_log_module.c     ngx_str_t                   name;
name               78 http/modules/ngx_http_log_module.c     ngx_http_log_script_t *script, u_char **name, u_char *buf, size_t len);
name              317 http/modules/ngx_http_log_module.c     u_char     *name;
name              323 http/modules/ngx_http_log_module.c         name = log->file->name.data;
name              327 http/modules/ngx_http_log_module.c         name = NULL;
name              328 http/modules/ngx_http_log_module.c         n = ngx_http_log_script_write(r, log->script, &name, buf, len);
name              346 http/modules/ngx_http_log_module.c                           ngx_write_fd_n " to \"%s\" failed", name);
name              357 http/modules/ngx_http_log_module.c                       name, n, len);
name              366 http/modules/ngx_http_log_module.c     u_char **name, u_char *buf, size_t len)
name              430 http/modules/ngx_http_log_module.c     *name = log.data;
name              760 http/modules/ngx_http_log_module.c     ngx_str_set(&fmt->name, "combined");
name              858 http/modules/ngx_http_log_module.c     ngx_str_t                  *value, name;
name              927 http/modules/ngx_http_log_module.c         name = value[2];
name              929 http/modules/ngx_http_log_module.c         if (ngx_strcmp(name.data, "combined") == 0) {
name              934 http/modules/ngx_http_log_module.c         ngx_str_set(&name, "combined");
name              940 http/modules/ngx_http_log_module.c         if (fmt[i].name.len == name.len
name              941 http/modules/ngx_http_log_module.c             && ngx_strcasecmp(fmt[i].name.data, name.data) == 0)
name              949 http/modules/ngx_http_log_module.c                        "unknown log format \"%V\"", &name);
name              967 http/modules/ngx_http_log_module.c         name.len = value[3].len - 7;
name              968 http/modules/ngx_http_log_module.c         name.data = value[3].data + 7;
name              970 http/modules/ngx_http_log_module.c         buf = ngx_parse_size(&name);
name             1011 http/modules/ngx_http_log_module.c         if (fmt[i].name.len == value[1].len
name             1012 http/modules/ngx_http_log_module.c             && ngx_strcmp(fmt[i].name.data, value[1].data) == 0)
name             1026 http/modules/ngx_http_log_module.c     fmt->name = value[1];
name             1145 http/modules/ngx_http_log_module.c                 for (v = ngx_http_log_vars; v->name.len; v++) {
name             1147 http/modules/ngx_http_log_module.c                     if (v->name.len == var.len
name             1148 http/modules/ngx_http_log_module.c                         && ngx_strncmp(v->name.data, var.data, var.len) == 0)
name              178 http/modules/ngx_http_map_module.c     ngx_str_t                         *value, name;
name              216 http/modules/ngx_http_map_module.c     name = value[2];
name              217 http/modules/ngx_http_map_module.c     name.len--;
name              218 http/modules/ngx_http_map_module.c     name.data++;
name              220 http/modules/ngx_http_map_module.c     var = ngx_http_add_variable(cf, &name, NGX_HTTP_VAR_CHANGEABLE);
name              289 http/modules/ngx_http_map_module.c     hash.name = "map_hash";
name              375 http/modules/ngx_http_map_module.c     ngx_str_t                  *value, file, name;
name              409 http/modules/ngx_http_map_module.c         name = value[1];
name              410 http/modules/ngx_http_map_module.c         name.len--;
name              411 http/modules/ngx_http_map_module.c         name.data++;
name              413 http/modules/ngx_http_map_module.c         index = ngx_http_get_variable_index(ctx->cf, &name);
name              612 http/modules/ngx_http_memcached_module.c     if (clcf->name.data[clcf->name.len - 1] == '/') {
name              719 http/modules/ngx_http_proxy_module.c         u->resolved->host = url.addrs[0].name;
name             1616 http/modules/ngx_http_proxy_module.c     for (v = ngx_http_proxy_vars; v->name.len; v++) {
name             1617 http/modules/ngx_http_proxy_module.c         var = ngx_http_add_variable(cf, &v->name, v->flags);
name             1891 http/modules/ngx_http_proxy_module.c                            &shm_zone->shm.name);
name             2019 http/modules/ngx_http_proxy_module.c     hash.name = "proxy_headers_hash";
name             2333 http/modules/ngx_http_proxy_module.c     hash.name = "proxy_headers_hash";
name             2362 http/modules/ngx_http_proxy_module.c     if (clcf->name.data[clcf->name.len - 1] == '/') {
name             2440 http/modules/ngx_http_proxy_module.c     plcf->location = clcf->name;
name               21 http/modules/ngx_http_random_index_module.c     ngx_dir_t *dir, ngx_str_t *name);
name               79 http/modules/ngx_http_random_index_module.c     ngx_str_t                          path, uri, *name;
name              215 http/modules/ngx_http_random_index_module.c         name = ngx_array_push(&names);
name              216 http/modules/ngx_http_random_index_module.c         if (name == NULL) {
name              220 http/modules/ngx_http_random_index_module.c         name->len = len;
name              222 http/modules/ngx_http_random_index_module.c         name->data = ngx_pnalloc(r->pool, len);
name              223 http/modules/ngx_http_random_index_module.c         if (name->data == NULL) {
name              227 http/modules/ngx_http_random_index_module.c         ngx_memcpy(name->data, ngx_de_name(&dir), len);
name              241 http/modules/ngx_http_random_index_module.c     name = names.elts;
name              245 http/modules/ngx_http_random_index_module.c     uri.len = r->uri.len + name[n].len;
name              253 http/modules/ngx_http_random_index_module.c     ngx_memcpy(last, name[n].data, name[n].len);
name              261 http/modules/ngx_http_random_index_module.c     ngx_str_t *name)
name              265 http/modules/ngx_http_random_index_module.c                       ngx_close_dir_n " \"%V\" failed", name);
name               43 http/modules/ngx_http_referer_module.c     ngx_http_referer_conf_t *rlcf, ngx_str_t *name, ngx_regex_t *regex);
name              282 http/modules/ngx_http_referer_module.c     hash.name = "referers_hash";
name              360 http/modules/ngx_http_referer_module.c     ngx_str_t                 *value, uri, name;
name              366 http/modules/ngx_http_referer_module.c     ngx_str_set(&name, "invalid_referer");
name              368 http/modules/ngx_http_referer_module.c     var = ngx_http_add_variable(cf, &name,
name              421 http/modules/ngx_http_referer_module.c                     if (ngx_http_add_regex_referer(cf, rlcf, &sn[n].name,
name              432 http/modules/ngx_http_referer_module.c                 if (ngx_http_add_referer(cf, rlcf->keys, &sn[n].name, &uri)
name              509 http/modules/ngx_http_referer_module.c     ngx_str_t *name, ngx_regex_t *regex)
name              516 http/modules/ngx_http_referer_module.c     if (name->len == 1) {
name              517 http/modules/ngx_http_referer_module.c         ngx_conf_log_error(NGX_LOG_EMERG, cf, 0, "empty regex in \"%V\"", name);
name              535 http/modules/ngx_http_referer_module.c         re->name = name->data;
name              540 http/modules/ngx_http_referer_module.c     name->len--;
name              541 http/modules/ngx_http_referer_module.c     name->data++;
name              545 http/modules/ngx_http_referer_module.c     rc.pattern = *name;
name              557 http/modules/ngx_http_referer_module.c     re->name = name->data;
name              565 http/modules/ngx_http_referer_module.c                        name);
name              208 http/modules/ngx_http_rewrite_module.c                   "using uninitialized \"%V\" variable", &var[data].name);
name              331 http/modules/ngx_http_rewrite_module.c     regex->name = value[1];
name              566 http/modules/ngx_http_rewrite_module.c     clcf->name = pclcf->name;
name              596 http/modules/ngx_http_rewrite_module.c     if (pclcf->name.len == 0) {
name              763 http/modules/ngx_http_rewrite_module.c             regex->name = value[last];
name              472 http/modules/ngx_http_scgi_module.c         u->resolved->host = url.addrs[0].name;
name             1217 http/modules/ngx_http_scgi_module.c                            &shm_zone->shm.name);
name             1266 http/modules/ngx_http_scgi_module.c     hash.name = "scgi_hide_headers_hash";
name             1466 http/modules/ngx_http_scgi_module.c     hash.name = "scgi_params_hash";
name             1532 http/modules/ngx_http_scgi_module.c     if (clcf->name.data[clcf->name.len - 1] == '/') {
name              113 http/modules/ngx_http_split_clients_module.c     ngx_str_t                           *value, name;
name              138 http/modules/ngx_http_split_clients_module.c     name = value[2];
name              139 http/modules/ngx_http_split_clients_module.c     name.len--;
name              140 http/modules/ngx_http_split_clients_module.c     name.data++;
name              142 http/modules/ngx_http_split_clients_module.c     var = ngx_http_add_variable(cf, &name, NGX_HTTP_VAR_CHANGEABLE);
name               34 http/modules/ngx_http_ssi_filter_module.c     ngx_str_t     name;
name               41 http/modules/ngx_http_ssi_filter_module.c     ngx_str_t     name;
name               78 http/modules/ngx_http_ssi_filter_module.c     ngx_str_t *name, ngx_uint_t key);
name              726 http/modules/ngx_http_ssi_filter_module.c                     for (prm = cmd->params; prm->name.len; prm++) {
name              728 http/modules/ngx_http_ssi_filter_module.c                         if (param[i].key.len != prm->name.len
name              729 http/modules/ngx_http_ssi_filter_module.c                             || ngx_strncmp(param[i].key.data, prm->name.data,
name              730 http/modules/ngx_http_ssi_filter_module.c                                            prm->name.len) != 0)
name              760 http/modules/ngx_http_ssi_filter_module.c                     if (prm->name.len == 0) {
name              770 http/modules/ngx_http_ssi_filter_module.c                 for (prm = cmd->params; prm->name.len; prm++) {
name              775 http/modules/ngx_http_ssi_filter_module.c                                       &prm->name, &ctx->command);
name             1524 http/modules/ngx_http_ssi_filter_module.c ngx_http_ssi_get_variable(ngx_http_request_t *r, ngx_str_t *name,
name             1553 http/modules/ngx_http_ssi_filter_module.c         if (name->len != var[i].name.len) {
name             1561 http/modules/ngx_http_ssi_filter_module.c         if (ngx_strncmp(name->data, var[i].name.data, name->len) == 0) {
name             1928 http/modules/ngx_http_ssi_filter_module.c                 if (stub->len == bl[i].name.len
name             1929 http/modules/ngx_http_ssi_filter_module.c                     && ngx_strncmp(stub->data, bl[i].name.data, stub->len) == 0)
name             2021 http/modules/ngx_http_ssi_filter_module.c             var->name = *set;
name             2263 http/modules/ngx_http_ssi_filter_module.c     ngx_str_t           *name, *value, *vv;
name             2277 http/modules/ngx_http_ssi_filter_module.c     name = params[NGX_HTTP_SSI_SET_VAR];
name             2281 http/modules/ngx_http_ssi_filter_module.c                    "ssi set \"%V\" \"%V\"", name, value);
name             2289 http/modules/ngx_http_ssi_filter_module.c     key = ngx_hash_strlow(name->data, name->data, name->len);
name             2291 http/modules/ngx_http_ssi_filter_module.c     vv = ngx_http_ssi_get_variable(r, name, key);
name             2303 http/modules/ngx_http_ssi_filter_module.c     var->name = *name;
name             2308 http/modules/ngx_http_ssi_filter_module.c                    "set: \"%V\"=\"%V\"", name, value);
name             2569 http/modules/ngx_http_ssi_filter_module.c     bl->name = *params[NGX_HTTP_SSI_BLOCK_NAME];
name             2656 http/modules/ngx_http_ssi_filter_module.c     for (v = ngx_http_ssi_vars; v->name.len; v++) {
name             2657 http/modules/ngx_http_ssi_filter_module.c         var = ngx_http_add_variable(cf, &v->name, v->flags);
name             2668 http/modules/ngx_http_ssi_filter_module.c     for (cmd = ngx_http_ssi_commands; cmd->name.len; cmd++) {
name             2669 http/modules/ngx_http_ssi_filter_module.c         rc = ngx_hash_add_key(&smcf->commands, &cmd->name, cmd,
name             2678 http/modules/ngx_http_ssi_filter_module.c                                "conflicting SSI command \"%V\"", &cmd->name);
name             2720 http/modules/ngx_http_ssi_filter_module.c     hash.name = "ssi_command_hash";
name               85 http/modules/ngx_http_ssi_filter_module.h     ngx_str_t                 name;
name               94 http/modules/ngx_http_ssi_filter_module.h     ngx_str_t                 name;
name              284 http/modules/ngx_http_ssl_module.c     for (v = ngx_http_ssl_vars; v->name.len; v++) {
name              285 http/modules/ngx_http_ssl_module.c         var = ngx_http_add_variable(cf, &v->name, v->flags);
name              508 http/modules/ngx_http_ssl_module.c     sscf->file = cf->conf_file->file.name.data;
name              521 http/modules/ngx_http_ssl_module.c     ngx_str_t   *value, name, size;
name              579 http/modules/ngx_http_ssl_module.c             name.len = len;
name              580 http/modules/ngx_http_ssl_module.c             name.data = value[i].data + sizeof("shared:") - 1;
name              583 http/modules/ngx_http_ssl_module.c             size.data = name.data + len + 1;
name              599 http/modules/ngx_http_ssl_module.c             sscf->shm_zone = ngx_shared_memory_add(cf, &name, n,
name              248 http/modules/ngx_http_static_module.c     b->file->name = path;
name              210 http/modules/ngx_http_upstream_ip_hash_module.c     pc->name = &peer->name;
name               26 http/modules/ngx_http_userid_filter_module.c     ngx_str_t   name;
name               47 http/modules/ngx_http_userid_filter_module.c     ngx_http_variable_value_t *v, ngx_str_t *name, uint32_t *uid);
name              115 http/modules/ngx_http_userid_filter_module.c       offsetof(ngx_http_userid_conf_t, name),
name              243 http/modules/ngx_http_userid_filter_module.c         return ngx_http_userid_variable(r->main, v, &conf->name, ctx->uid_got);
name              281 http/modules/ngx_http_userid_filter_module.c     return ngx_http_userid_variable(r->main, v, &conf->name, ctx->uid_set);
name              308 http/modules/ngx_http_userid_filter_module.c     n = ngx_http_parse_multi_header_lines(&r->headers_in.cookies, &conf->name,
name              372 http/modules/ngx_http_userid_filter_module.c     len = conf->name.len + 1 + ngx_base64_encoded_length(16) + conf->path.len;
name              387 http/modules/ngx_http_userid_filter_module.c     p = ngx_copy(cookie, conf->name.data, conf->name.len);
name              549 http/modules/ngx_http_userid_filter_module.c     ngx_str_t *name, uint32_t *uid)
name              551 http/modules/ngx_http_userid_filter_module.c     v->len = name->len + sizeof("=00001111222233334444555566667777") - 1;
name              562 http/modules/ngx_http_userid_filter_module.c                 name, uid[0], uid[1], uid[2], uid[3]);
name              628 http/modules/ngx_http_userid_filter_module.c     ngx_conf_merge_str_value(conf->name, prev->name, "uid");
name              505 http/modules/ngx_http_uwsgi_module.c         u->resolved->host = url.addrs[0].name;
name             1270 http/modules/ngx_http_uwsgi_module.c                            &shm_zone->shm.name);
name             1321 http/modules/ngx_http_uwsgi_module.c     hash.name = "uwsgi_hide_headers_hash";
name             1517 http/modules/ngx_http_uwsgi_module.c     hash.name = "uwsgi_params_hash";
name             1583 http/modules/ngx_http_uwsgi_module.c     if (clcf->name.data[clcf->name.len - 1] == '/') {
name               29 http/modules/ngx_http_xslt_filter_module.c     u_char              *name;
name               70 http/modules/ngx_http_xslt_filter_module.c static void ngx_http_xslt_sax_external_subset(void *data, const xmlChar *name,
name              368 http/modules/ngx_http_xslt_filter_module.c ngx_http_xslt_sax_external_subset(void *data, const xmlChar *name,
name              386 http/modules/ngx_http_xslt_filter_module.c                    name ? name : (xmlChar *) "",
name              726 http/modules/ngx_http_xslt_filter_module.c         if (ngx_strcmp(file[i].name, &value[1].data) == 0) {
name              752 http/modules/ngx_http_xslt_filter_module.c     file->name = value[1].data;
name              800 http/modules/ngx_http_xslt_filter_module.c         if (ngx_strcmp(file[i].name, &value[1].data) == 0) {
name              827 http/modules/ngx_http_xslt_filter_module.c     file->name = value[1].data;
name              853 http/modules/perl/ngx_http_perl_module.c     rc = ngx_hash_add_key(&smcf->commands, &ngx_http_perl_ssi_command.name,
name              860 http/modules/perl/ngx_http_perl_module.c                                &ngx_http_perl_ssi_command.name);
name               41 http/modules/perl/ngx_http_perl_module.h     ngx_str_t     name;
name              418 http/ngx_http.c     for (header = ngx_http_headers_in; header->name.len; header++) {
name              424 http/ngx_http.c         hk->key = header->name;
name              425 http/ngx_http.c         hk->key_hash = ngx_hash_key_lc(header->name.data, header->name.len);
name              433 http/ngx_http.c     hash.name = "headers_in_hash";
name              878 http/ngx_http.c     lq->name = &clcf->name;
name              879 http/ngx_http.c     lq->file_name = cf->conf_file->file.name.data;
name              929 http/ngx_http.c         return ngx_strcmp(first->name.data, second->name.data);
name              951 http/ngx_http.c     rc = ngx_strcmp(first->name.data, second->name.data);
name              977 http/ngx_http.c         if (ngx_strcmp(lq->name->data, lx->name->data) == 0) {
name              982 http/ngx_http.c                               lx->name, lx->file_name, lx->line);
name             1004 http/ngx_http.c     u_char                     *name;
name             1020 http/ngx_http.c     len = lq->name->len;
name             1021 http/ngx_http.c     name = lq->name->data;
name             1029 http/ngx_http.c         if (len > lx->name->len
name             1030 http/ngx_http.c             || (ngx_strncmp(name, lx->name->data, len) != 0))
name             1077 http/ngx_http.c     len = lq->name->len - prefix;
name             1080 http/ngx_http.c                       offsetof(ngx_http_location_tree_node_t, name) + len);
name             1095 http/ngx_http.c     ngx_memcpy(node->name, &lq->name->data[prefix], len);
name             1454 http/ngx_http.c     ngx_http_server_name_t     *name;
name             1479 http/ngx_http.c         name = cscfp[s]->server_names.elts;
name             1484 http/ngx_http.c             if (name[n].regex) {
name             1490 http/ngx_http.c             rc = ngx_hash_add_key(&ha, &name[n].name, name[n].server,
name             1500 http/ngx_http.c                               &name[n].name, addr->opt.addr);
name             1507 http/ngx_http.c                               &name[n].name, addr->opt.addr);
name             1515 http/ngx_http.c     hash.name = "server_names_hash";
name             1581 http/ngx_http.c         name = cscfp[s]->server_names.elts;
name             1584 http/ngx_http.c             if (name[n].regex) {
name             1585 http/ngx_http.c                 addr->regex[i++] = name[n];
name             1995 http/ngx_http.c         hash.name = "test_types_hash";
name             2025 http/ngx_http.c         hash.name = "test_types_hash";
name               88 http/ngx_http.h     ngx_str_t *name, ngx_str_t *value);
name               89 http/ngx_http.h ngx_int_t ngx_http_arg(ngx_http_request_t *r, u_char *name, size_t len,
name              171 http/ngx_http_copy_filter_module.c                                   &file->name);
name               13 http/ngx_http_core_module.c     u_char    *name;
name              939 http/ngx_http_core_module.c                    &clcf->name);
name              974 http/ngx_http_core_module.c             r->headers_out.location->value = clcf->name;
name              977 http/ngx_http_core_module.c             len = clcf->name.len + 1 + r->args.len;
name              988 http/ngx_http_core_module.c             p = ngx_cpymem(p, clcf->name.data, clcf->name.len);
name             1139 http/ngx_http_core_module.c     u_char                       *p, *name;
name             1161 http/ngx_http_core_module.c     name = NULL;
name             1186 http/ngx_http_core_module.c             len = tf->name.len;
name             1201 http/ngx_http_core_module.c             name = path.data + root;
name             1209 http/ngx_http_core_module.c             ngx_memcpy(name, tf->name.data, tf->name.len);
name             1211 http/ngx_http_core_module.c             path.len = (name + tf->name.len - 1) - path.data;
name             1215 http/ngx_http_core_module.c             e.pos = name;
name             1227 http/ngx_http_core_module.c             if (alias && ngx_strncmp(name, clcf->name.data, alias) == 0) {
name             1228 http/ngx_http_core_module.c                 ngx_memmove(name, name + alias, len - alias);
name             1239 http/ngx_http_core_module.c                        test_dir ? "dir" : "file", name, path.data);
name             1241 http/ngx_http_core_module.c         if (tf->lengths == NULL && tf->name.len == 0) {
name             1312 http/ngx_http_core_module.c             p = ngx_copy(r->uri.data, clcf->name.data, alias);
name             1313 http/ngx_http_core_module.c             ngx_memcpy(p, name, path.len);
name             1519 http/ngx_http_core_module.c                            "test location: ~ \"%V\"", &(*clcfp)->name);
name             1573 http/ngx_http_core_module.c                        "test location: \"%*s\"", node->len, node->name);
name             1577 http/ngx_http_core_module.c         rc = ngx_filename_cmp(uri, node->name, n);
name             1877 http/ngx_http_core_module.c                       "where URI was rewritten", &clcf->name);
name             2351 http/ngx_http_core_module.c ngx_http_named_location(ngx_http_request_t *r, ngx_str_t *name)
name             2366 http/ngx_http_core_module.c                            "test location: \"%V\"", &(*clcfp)->name);
name             2368 http/ngx_http_core_module.c             if (name->len != (*clcfp)->name.len
name             2369 http/ngx_http_core_module.c                 || ngx_strncmp(name->data, (*clcfp)->name.data, name->len) != 0)
name             2376 http/ngx_http_core_module.c                            name, &r->uri, &r->args);
name             2395 http/ngx_http_core_module.c                   "could not find named location \"%V\"", name);
name             2567 http/ngx_http_core_module.c     ngx_str_t                 *value, *name;
name             2613 http/ngx_http_core_module.c         name = &value[2];
name             2617 http/ngx_http_core_module.c             clcf->name = *name;
name             2622 http/ngx_http_core_module.c             clcf->name = *name;
name             2627 http/ngx_http_core_module.c             if (ngx_http_core_regex_location(cf, clcf, name, 0) != NGX_OK) {
name             2633 http/ngx_http_core_module.c             if (ngx_http_core_regex_location(cf, clcf, name, 1) != NGX_OK) {
name             2645 http/ngx_http_core_module.c         name = &value[1];
name             2647 http/ngx_http_core_module.c         if (name->data[0] == '=') {
name             2649 http/ngx_http_core_module.c             clcf->name.len = name->len - 1;
name             2650 http/ngx_http_core_module.c             clcf->name.data = name->data + 1;
name             2653 http/ngx_http_core_module.c         } else if (name->data[0] == '^' && name->data[1] == '~') {
name             2655 http/ngx_http_core_module.c             clcf->name.len = name->len - 2;
name             2656 http/ngx_http_core_module.c             clcf->name.data = name->data + 2;
name             2659 http/ngx_http_core_module.c         } else if (name->data[0] == '~') {
name             2661 http/ngx_http_core_module.c             name->len--;
name             2662 http/ngx_http_core_module.c             name->data++;
name             2664 http/ngx_http_core_module.c             if (name->data[0] == '*') {
name             2666 http/ngx_http_core_module.c                 name->len--;
name             2667 http/ngx_http_core_module.c                 name->data++;
name             2669 http/ngx_http_core_module.c                 if (ngx_http_core_regex_location(cf, clcf, name, 1) != NGX_OK) {
name             2674 http/ngx_http_core_module.c                 if (ngx_http_core_regex_location(cf, clcf, name, 0) != NGX_OK) {
name             2681 http/ngx_http_core_module.c             clcf->name = *name;
name             2683 http/ngx_http_core_module.c             if (name->data[0] == '@') {
name             2691 http/ngx_http_core_module.c     if (pclcf->name.len) {
name             2703 http/ngx_http_core_module.c                                &clcf->name, &pclcf->name);
name             2711 http/ngx_http_core_module.c                                &clcf->name, &pclcf->name);
name             2719 http/ngx_http_core_module.c                                &clcf->name);
name             2723 http/ngx_http_core_module.c         len = pclcf->name.len;
name             2727 http/ngx_http_core_module.c             && ngx_strncmp(clcf->name.data, pclcf->name.data, len) != 0)
name             2729 http/ngx_http_core_module.c         if (ngx_strncmp(clcf->name.data, pclcf->name.data, len) != 0)
name             2734 http/ngx_http_core_module.c                                &clcf->name, &pclcf->name);
name             2780 http/ngx_http_core_module.c     clcf->name = *regex;
name             2997 http/ngx_http_core_module.c     ngx_str_t                name;
name             3036 http/ngx_http_core_module.c         ngx_str_set(&sn->name, "");
name             3040 http/ngx_http_core_module.c     name = sn[0].name;
name             3044 http/ngx_http_core_module.c         name.len++;
name             3045 http/ngx_http_core_module.c         name.data--;
name             3049 http/ngx_http_core_module.c     if (name.data[0] == '.') {
name             3050 http/ngx_http_core_module.c         name.len--;
name             3051 http/ngx_http_core_module.c         name.data++;
name             3054 http/ngx_http_core_module.c     conf->server_name.len = name.len;
name             3055 http/ngx_http_core_module.c     conf->server_name.data = ngx_pstrdup(cf->pool, &name);
name             3221 http/ngx_http_core_module.c         types_hash.name = "types_hash";
name             3263 http/ngx_http_core_module.c         types_hash.name = "mime_types_hash";
name             3691 http/ngx_http_core_module.c             sn->name = cf->cycle->hostname;
name             3694 http/ngx_http_core_module.c             sn->name = value[i];
name             3698 http/ngx_http_core_module.c             ngx_strlow(sn->name.data, sn->name.data, sn->name.len);
name             3735 http/ngx_http_core_module.c         sn->name = value[i];
name             3761 http/ngx_http_core_module.c     alias = (cmd->name.len == sizeof("alias") - 1) ? 1 : 0;
name             3768 http/ngx_http_core_module.c                                &cmd->name);
name             3773 http/ngx_http_core_module.c                                &cmd->name, clcf->alias ? "alias" : "root");
name             3795 http/ngx_http_core_module.c                            &cmd->name);
name             3806 http/ngx_http_core_module.c                            &cmd->name);
name             3811 http/ngx_http_core_module.c     clcf->alias = alias ? clcf->name.len : 0;
name             3883 http/ngx_http_core_module.c     ngx_http_method_name_t    *name;
name             3895 http/ngx_http_core_module.c         for (name = ngx_methods_names; name->name; name++) {
name             3897 http/ngx_http_core_module.c             if (ngx_strcasecmp(value[i].data, name->name) == 0) {
name             3898 http/ngx_http_core_module.c                 pclcf->limit_except &= name->method;
name             3951 http/ngx_http_core_module.c     clcf->name = pclcf->name;
name             4149 http/ngx_http_core_module.c         tf[i].name = value[i + 1];
name             4151 http/ngx_http_core_module.c         if (tf[i].name.data[tf[i].name.len - 1] == '/') {
name             4153 http/ngx_http_core_module.c             tf[i].name.len--;
name             4154 http/ngx_http_core_module.c             tf[i].name.data[tf[i].name.len] = '\0';
name             4157 http/ngx_http_core_module.c         n = ngx_http_script_variables_count(&tf[i].name);
name             4163 http/ngx_http_core_module.c             sc.source = &tf[i].name;
name             4176 http/ngx_http_core_module.c             tf[i].name.len++;
name             4180 http/ngx_http_core_module.c     if (tf[i - 1].name.data[0] == '=') {
name             4182 http/ngx_http_core_module.c         code = ngx_atoi(tf[i - 1].name.data + 1, tf[i - 1].name.len - 2);
name             4187 http/ngx_http_core_module.c                                tf[i - 1].name.len - 1, tf[i - 1].name.data);
name             4453 http/ngx_http_core_module.c         re->name = value[i].data;
name              264 http/ngx_http_core_module.h     ngx_str_t                  name;
name              279 http/ngx_http_core_module.h     ngx_str_t                  name;
name              287 http/ngx_http_core_module.h     ngx_str_t     name;          /* location name */
name              421 http/ngx_http_core_module.h     ngx_str_t                       *name;
name              438 http/ngx_http_core_module.h     u_char                           name[1];
name              466 http/ngx_http_core_module.h u_char *ngx_http_map_uri_to_path(ngx_http_request_t *r, ngx_str_t *name,
name              479 http/ngx_http_core_module.h ngx_int_t ngx_http_named_location(ngx_http_request_t *r, ngx_str_t *name);
name               32 http/ngx_http_file_cache.c     ngx_queue_t *q, u_char *name);
name               72 http/ngx_http_file_cache.c         if (ngx_strcmp(cache->path->name.data, ocache->path->name.data) != 0) {
name               76 http/ngx_http_file_cache.c                           &shm_zone->shm.name, &cache->path->name,
name               77 http/ngx_http_file_cache.c                           &ocache->path->name);
name               86 http/ngx_http_file_cache.c                               &shm_zone->shm.name);
name              109 http/ngx_http_file_cache.c         cache->bsize = ngx_fs_bsize(cache->path->name.data);
name              130 http/ngx_http_file_cache.c     cache->bsize = ngx_fs_bsize(cache->path->name.data);
name              134 http/ngx_http_file_cache.c     len = sizeof(" in cache keys zone \"\"") + shm_zone->shm.name.len;
name              142 http/ngx_http_file_cache.c                 &shm_zone->shm.name);
name              326 http/ngx_http_file_cache.c     if (ngx_open_cached_file(clcf->open_file_cache, &c->file.name, &of, r->pool)
name              340 http/ngx_http_file_cache.c                           ngx_open_file_n " \"%s\" failed", c->file.name.data);
name              379 http/ngx_http_file_cache.c                       "cache file \"%s\" is too small", c->file.name.data);
name              387 http/ngx_http_file_cache.c                       "cache file \"%s\" has md5 collision", c->file.name.data);
name              625 http/ngx_http_file_cache.c     c->file.name.len = path->name.len + 1 + path->len
name              628 http/ngx_http_file_cache.c     c->file.name.data = ngx_pnalloc(r->pool, c->file.name.len + 1);
name              629 http/ngx_http_file_cache.c     if (c->file.name.data == NULL) {
name              633 http/ngx_http_file_cache.c     ngx_memcpy(c->file.name.data, path->name.data, path->name.len);
name              635 http/ngx_http_file_cache.c     p = c->file.name.data + path->name.len + 1 + path->len;
name              639 http/ngx_http_file_cache.c     ngx_create_hashed_filename(path, c->file.name.data, c->file.name.len);
name              642 http/ngx_http_file_cache.c                    "cache file: \"%s\"", c->file.name.data);
name              807 http/ngx_http_file_cache.c                    tf->file.name.data, c->file.name.data);
name              816 http/ngx_http_file_cache.c     rc = ngx_ext_rename_file(&tf->file.name, &c->file.name, &ext);
name              822 http/ngx_http_file_cache.c                           ngx_fd_info_n " \"%s\" failed", tf->file.name.data);
name              867 http/ngx_http_file_cache.c                   "http file cache send: %s", c->file.name.data);
name              897 http/ngx_http_file_cache.c     b->file->name = c->file.name;
name              955 http/ngx_http_file_cache.c                            tf->file.name.data);
name              957 http/ngx_http_file_cache.c             if (ngx_delete_file(tf->file.name.data) == NGX_FILE_ERROR) {
name              960 http/ngx_http_file_cache.c                               tf->file.name.data);
name              991 http/ngx_http_file_cache.c     u_char                      *name;
name             1003 http/ngx_http_file_cache.c     len = path->name.len + 1 + path->len + 2 * NGX_HTTP_CACHE_KEY_LEN;
name             1005 http/ngx_http_file_cache.c     name = ngx_alloc(len + 1, ngx_cycle->log);
name             1006 http/ngx_http_file_cache.c     if (name == NULL) {
name             1010 http/ngx_http_file_cache.c     ngx_memcpy(name, path->name.data, path->name.len);
name             1029 http/ngx_http_file_cache.c             ngx_http_file_cache_delete(cache, q, name);
name             1045 http/ngx_http_file_cache.c     ngx_free(name);
name             1054 http/ngx_http_file_cache.c     u_char                      *name, *p;
name             1066 http/ngx_http_file_cache.c     len = path->name.len + 1 + path->len + 2 * NGX_HTTP_CACHE_KEY_LEN;
name             1068 http/ngx_http_file_cache.c     name = ngx_alloc(len + 1, ngx_cycle->log);
name             1069 http/ngx_http_file_cache.c     if (name == NULL) {
name             1073 http/ngx_http_file_cache.c     ngx_memcpy(name, path->name.data, path->name.len);
name             1103 http/ngx_http_file_cache.c             ngx_http_file_cache_delete(cache, q, name);
name             1133 http/ngx_http_file_cache.c     ngx_free(name);
name             1141 http/ngx_http_file_cache.c     u_char *name)
name             1154 http/ngx_http_file_cache.c         p = name + path->name.len + 1 + path->len;
name             1165 http/ngx_http_file_cache.c         len = path->name.len + 1 + path->len + 2 * NGX_HTTP_CACHE_KEY_LEN;
name             1166 http/ngx_http_file_cache.c         ngx_create_hashed_filename(path, name, len);
name             1169 http/ngx_http_file_cache.c                        "http file cache expire: \"%s\"", name);
name             1171 http/ngx_http_file_cache.c         if (ngx_delete_file(name) == NGX_FILE_ERROR) {
name             1173 http/ngx_http_file_cache.c                           ngx_delete_file_n " \"%s\" failed", name);
name             1259 http/ngx_http_file_cache.c     if (ngx_walk_tree(&tree, &cache->path->name) == NGX_ABORT) {
name             1269 http/ngx_http_file_cache.c                   &cache->path->name,
name             1333 http/ngx_http_file_cache.c ngx_http_file_cache_add_file(ngx_tree_ctx_t *ctx, ngx_str_t *name)
name             1344 http/ngx_http_file_cache.c     if (name->len < 2 * NGX_HTTP_CACHE_KEY_LEN) {
name             1350 http/ngx_http_file_cache.c     fd = ngx_open_file(name->data, NGX_FILE_RDONLY, NGX_FILE_OPEN, 0);
name             1354 http/ngx_http_file_cache.c                       ngx_open_file_n " \"%s\" failed", name->data);
name             1359 http/ngx_http_file_cache.c     c.file.name = *name;
name             1370 http/ngx_http_file_cache.c                       "cache file \"%s\" is too small", name->data);
name             1376 http/ngx_http_file_cache.c                       ngx_fd_info_n " \"%s\" failed", name->data);
name             1388 http/ngx_http_file_cache.c                       ngx_close_file_n " \"%s\" failed", name->data);
name             1395 http/ngx_http_file_cache.c     p = &name->data[name->len - 2 * NGX_HTTP_CACHE_KEY_LEN];
name             1516 http/ngx_http_file_cache.c     ngx_str_t               s, name, *value;
name             1532 http/ngx_http_file_cache.c     name.len = 0;
name             1538 http/ngx_http_file_cache.c     cache->path->name = value[1];
name             1540 http/ngx_http_file_cache.c     if (cache->path->name.data[cache->path->name.len - 1] == '/') {
name             1541 http/ngx_http_file_cache.c         cache->path->name.len--;
name             1544 http/ngx_http_file_cache.c     if (ngx_conf_full_name(cf->cycle, &cache->path->name, 0) != NGX_OK) {
name             1589 http/ngx_http_file_cache.c             name.data = value[i].data + 10;
name             1591 http/ngx_http_file_cache.c             p = (u_char *) ngx_strchr(name.data, ':');
name             1596 http/ngx_http_file_cache.c                 name.len = p - name.data;
name             1649 http/ngx_http_file_cache.c     if (name.len == 0 || size == 0) {
name             1652 http/ngx_http_file_cache.c                            &cmd->name);
name             1664 http/ngx_http_file_cache.c     cache->shm_zone = ngx_shared_memory_add(cf, &name, size, cmd->post);
name             1671 http/ngx_http_file_cache.c                            "duplicate zone \"%V\"", &name);
name             1587 http/ngx_http_parse.c ngx_http_parse_multi_header_lines(ngx_array_t *headers, ngx_str_t *name,
name             1601 http/ngx_http_parse.c         if (name->len > h[i]->value.len) {
name             1610 http/ngx_http_parse.c             if (ngx_strncasecmp(start, name->data, name->len) != 0) {
name             1614 http/ngx_http_parse.c             for (start += name->len; start < end && *start == ' '; start++) {
name             1660 http/ngx_http_parse.c ngx_http_arg(ngx_http_request_t *r, u_char *name, size_t len, ngx_str_t *value)
name             1675 http/ngx_http_parse.c         p = ngx_strlcasestrn(p, last - 1, name, len - 1);
name             1735 http/ngx_http_request.c         ngx_str_t                name;
name             1738 http/ngx_http_request.c         name.len = len;
name             1739 http/ngx_http_request.c         name.data = host;
name             1745 http/ngx_http_request.c             n = ngx_http_regex_exec(r, sn[i].regex, &name);
name             3123 http/ngx_http_request.c     if (u && u->peer.name) {
name             3134 http/ngx_http_request.c                          &u->schema, u->peer.name,
name              154 http/ngx_http_request.h     ngx_str_t                         name;
name              161 http/ngx_http_request.h     ngx_str_t                         name;
name               17 http/ngx_http_script.c     ngx_str_t *name);
name              339 http/ngx_http_script.c     ngx_str_t    name;
name              348 http/ngx_http_script.c         name.len = 0;
name              388 http/ngx_http_script.c                 name.data = &sc->source->data[i];
name              392 http/ngx_http_script.c                 name.data = &sc->source->data[i];
name              395 http/ngx_http_script.c             for ( /* void */ ; i < sc->source->len; i++, name.len++) {
name              418 http/ngx_http_script.c                                    "variable is missing", &name);
name              422 http/ngx_http_script.c             if (name.len == 0) {
name              428 http/ngx_http_script.c             if (ngx_http_script_add_var_code(sc, &name) != NGX_OK) {
name              448 http/ngx_http_script.c         name.data = &sc->source->data[i];
name              466 http/ngx_http_script.c             name.len++;
name              469 http/ngx_http_script.c         sc->size += name.len;
name              471 http/ngx_http_script.c         if (ngx_http_script_add_copy_code(sc, &name, (i == sc->source->len))
name              762 http/ngx_http_script.c ngx_http_script_add_var_code(ngx_http_script_compile_t *sc, ngx_str_t *name)
name              767 http/ngx_http_script.c     index = ngx_http_get_variable_index(sc->cf, name);
name              925 http/ngx_http_script.c                    "http script regex: \"%V\"", &code->name);
name              941 http/ngx_http_script.c                           &code->name, &e->line);
name              974 http/ngx_http_script.c                       "\"%V\" matches \"%V\"", &code->name, &e->line);
name             1691 http/ngx_http_script.c                    "http script set $%V", &v[code->index].name);
name              134 http/ngx_http_script.h     ngx_str_t                   name;
name              585 http/ngx_http_upstream.c         temp.name = *host;
name              602 http/ngx_http_upstream.c         ctx->name = *host;
name              840 http/ngx_http_upstream.c                       &ctx->name, ctx->state,
name             1100 http/ngx_http_upstream.c     u->state->peer = u->peer.name;
name             2649 http/ngx_http_upstream.c                 if (ngx_delete_file(tf->file.name.data) == NGX_FILE_ERROR) {
name             2653 http/ngx_http_upstream.c                                   u->pipe->temp_file->file.name.data);
name             2771 http/ngx_http_upstream.c                    tf->file.name.data, path.data);
name             2773 http/ngx_http_upstream.c     (void) ngx_ext_rename_file(&tf->file.name, &path, &ext);
name             3622 http/ngx_http_upstream.c     for (v = ngx_http_upstream_vars; v->name.len; v++) {
name             3623 http/ngx_http_upstream.c         var = ngx_http_add_variable(cf, &v->name, v->flags);
name             4266 http/ngx_http_upstream.c     uscf->file_name = cf->conf_file->file.name.data;
name             4323 http/ngx_http_upstream.c         (*paddr)->name = value[1];
name             4502 http/ngx_http_upstream.c     for (header = ngx_http_upstream_headers_in; header->name.len; header++) {
name             4508 http/ngx_http_upstream.c         hk->key = header->name;
name             4509 http/ngx_http_upstream.c         hk->key_hash = ngx_hash_key_lc(header->name.data, header->name.len);
name             4517 http/ngx_http_upstream.c     hash.name = "upstream_headers_in_hash";
name              186 http/ngx_http_upstream.h     ngx_str_t                        name;
name               50 http/ngx_http_upstream_round_robin.c         peers->name = &us->host;
name               62 http/ngx_http_upstream_round_robin.c                 peers->peer[n].name = server[i].addrs[j].name;
name              103 http/ngx_http_upstream_round_robin.c         backup->name = &us->host;
name              115 http/ngx_http_upstream_round_robin.c                 backup->peer[n].name = server[i].addrs[j].name;
name              169 http/ngx_http_upstream_round_robin.c     peers->name = &us->host;
name              174 http/ngx_http_upstream_round_robin.c         peers->peer[i].name = u.addrs[i].name;
name              280 http/ngx_http_upstream_round_robin.c     peers->name = &ur->host;
name              285 http/ngx_http_upstream_round_robin.c         peers->peer[0].name = ur->host;
name              316 http/ngx_http_upstream_round_robin.c             peers->peer[i].name.len = len;
name              317 http/ngx_http_upstream_round_robin.c             peers->peer[i].name.data = p;
name              522 http/ngx_http_upstream_round_robin.c     pc->name = &peer->name;
name              572 http/ngx_http_upstream_round_robin.c     pc->name = peers->name;
name               19 http/ngx_http_upstream_round_robin.h     ngx_str_t                       name;
name               48 http/ngx_http_upstream_round_robin.h     ngx_str_t                      *name;
name              268 http/ngx_http_variables.c ngx_http_add_variable(ngx_conf_t *cf, ngx_str_t *name, ngx_uint_t flags)
name              280 http/ngx_http_variables.c         if (name->len != key[i].key.len
name              281 http/ngx_http_variables.c             || ngx_strncasecmp(name->data, key[i].key.data, name->len) != 0)
name              290 http/ngx_http_variables.c                                "the duplicate \"%V\" variable", name);
name              302 http/ngx_http_variables.c     v->name.len = name->len;
name              303 http/ngx_http_variables.c     v->name.data = ngx_pnalloc(cf->pool, name->len);
name              304 http/ngx_http_variables.c     if (v->name.data == NULL) {
name              308 http/ngx_http_variables.c     ngx_strlow(v->name.data, name->data, name->len);
name              316 http/ngx_http_variables.c     rc = ngx_hash_add_key(cmcf->variables_keys, &v->name, v, 0);
name              324 http/ngx_http_variables.c                            "conflicting variable name \"%V\"", name);
name              333 http/ngx_http_variables.c ngx_http_get_variable_index(ngx_conf_t *cf, ngx_str_t *name)
name              353 http/ngx_http_variables.c             if (name->len != v[i].name.len
name              354 http/ngx_http_variables.c                 || ngx_strncasecmp(name->data, v[i].name.data, name->len) != 0)
name              368 http/ngx_http_variables.c     v->name.len = name->len;
name              369 http/ngx_http_variables.c     v->name.data = ngx_pnalloc(cf->pool, name->len);
name              370 http/ngx_http_variables.c     if (v->name.data == NULL) {
name              374 http/ngx_http_variables.c     ngx_strlow(v->name.data, name->data, name->len);
name              444 http/ngx_http_variables.c ngx_http_get_variable(ngx_http_request_t *r, ngx_str_t *name, ngx_uint_t key)
name              452 http/ngx_http_variables.c     v = ngx_hash_find(&cmcf->variables_hash, key, name->data, name->len);
name              475 http/ngx_http_variables.c     if (ngx_strncmp(name->data, "http_", 5) == 0) {
name              477 http/ngx_http_variables.c         if (ngx_http_variable_unknown_header_in(r, vv, (uintptr_t) name)
name              486 http/ngx_http_variables.c     if (ngx_strncmp(name->data, "sent_http_", 10) == 0) {
name              488 http/ngx_http_variables.c         if (ngx_http_variable_unknown_header_out(r, vv, (uintptr_t) name)
name              497 http/ngx_http_variables.c     if (ngx_strncmp(name->data, "upstream_http_", 14) == 0) {
name              499 http/ngx_http_variables.c         if (ngx_http_upstream_header_variable(r, vv, (uintptr_t) name)
name              508 http/ngx_http_variables.c     if (ngx_strncmp(name->data, "cookie_", 7) == 0) {
name              510 http/ngx_http_variables.c         if (ngx_http_variable_cookie(r, vv, (uintptr_t) name) == NGX_OK) {
name              517 http/ngx_http_variables.c     if (ngx_strncmp(name->data, "arg_", 4) == 0) {
name              519 http/ngx_http_variables.c         if (ngx_http_variable_argument(r, vv, (uintptr_t) name) == NGX_OK) {
name              813 http/ngx_http_variables.c     ngx_str_t *name = (ngx_str_t *) data;
name              817 http/ngx_http_variables.c     s.len = name->len - (sizeof("cookie_") - 1);
name              818 http/ngx_http_variables.c     s.data = name->data + sizeof("cookie_") - 1;
name              841 http/ngx_http_variables.c     ngx_str_t *name = (ngx_str_t *) data;
name              847 http/ngx_http_variables.c     len = name->len - (sizeof("arg_") - 1);
name              848 http/ngx_http_variables.c     arg = name->data + sizeof("arg_") - 1;
name             1381 http/ngx_http_variables.c     ngx_str_t  name;
name             1393 http/ngx_http_variables.c     ngx_str_set(&name, "sent_http_location");
name             1395 http/ngx_http_variables.c     return ngx_http_variable_unknown_header(v, &name,
name             1604 http/ngx_http_variables.c     v->len = r->request_body->temp_file->file.name.len;
name             1608 http/ngx_http_variables.c     v->data = r->request_body->temp_file->file.name.data;
name             1723 http/ngx_http_variables.c     ngx_str_t                   name;
name             1761 http/ngx_http_variables.c     re->name = rc->pattern;
name             1769 http/ngx_http_variables.c         name.data = &p[2];
name             1770 http/ngx_http_variables.c         name.len = ngx_strlen(name.data);
name             1772 http/ngx_http_variables.c         v = ngx_http_add_variable(cf, &name, NGX_HTTP_VAR_CHANGEABLE);
name             1777 http/ngx_http_variables.c         rv[i].index = ngx_http_get_variable_index(cf, &name);
name             1824 http/ngx_http_variables.c                       rc, s, &re->name);
name             1848 http/ngx_http_variables.c                        &v[index].name, vv->len, vv->data);
name             1886 http/ngx_http_variables.c     for (v = ngx_http_core_variables; v->name.len; v++) {
name             1887 http/ngx_http_variables.c         rc = ngx_hash_add_key(cmcf->variables_keys, &v->name, v,
name             1896 http/ngx_http_variables.c                                "conflicting variable name \"%V\"", &v->name);
name             1929 http/ngx_http_variables.c                 && v[i].name.len == key[n].key.len
name             1930 http/ngx_http_variables.c                 && ngx_strncmp(v[i].name.data, key[n].key.data, v[i].name.len)
name             1945 http/ngx_http_variables.c         if (ngx_strncmp(v[i].name.data, "http_", 5) == 0) {
name             1947 http/ngx_http_variables.c             v[i].data = (uintptr_t) &v[i].name;
name             1952 http/ngx_http_variables.c         if (ngx_strncmp(v[i].name.data, "sent_http_", 10) == 0) {
name             1954 http/ngx_http_variables.c             v[i].data = (uintptr_t) &v[i].name;
name             1959 http/ngx_http_variables.c         if (ngx_strncmp(v[i].name.data, "upstream_http_", 14) == 0) {
name             1961 http/ngx_http_variables.c             v[i].data = (uintptr_t) &v[i].name;
name             1967 http/ngx_http_variables.c         if (ngx_strncmp(v[i].name.data, "cookie_", 7) == 0) {
name             1969 http/ngx_http_variables.c             v[i].data = (uintptr_t) &v[i].name;
name             1974 http/ngx_http_variables.c         if (ngx_strncmp(v[i].name.data, "arg_", 4) == 0) {
name             1976 http/ngx_http_variables.c             v[i].data = (uintptr_t) &v[i].name;
name             1983 http/ngx_http_variables.c                       "unknown \"%V\" variable", &v[i].name);
name             2005 http/ngx_http_variables.c     hash.name = "variables_hash";
name               35 http/ngx_http_variables.h     ngx_str_t                     name;   /* must be first to build the hash */
name               44 http/ngx_http_variables.h ngx_http_variable_t *ngx_http_add_variable(ngx_conf_t *cf, ngx_str_t *name,
name               46 http/ngx_http_variables.h ngx_int_t ngx_http_get_variable_index(ngx_conf_t *cf, ngx_str_t *name);
name               53 http/ngx_http_variables.h     ngx_str_t *name, ngx_uint_t key);
name               75 http/ngx_http_variables.h     ngx_str_t                     name;
name               85 mail/ngx_mail.c     if (cmd->name.data[0] == 'i') {
name              314 mail/ngx_mail.h     ngx_str_t                   name;
name              189 mail/ngx_mail_auth_http_module.c     ctx->peer.name = &ahcf->peer->name;
name              244 mail/ngx_mail_auth_http_module.c                       "auth http server %V timed out", ctx->peer.name);
name              307 mail/ngx_mail_auth_http_module.c                       "auth http server %V timed out", ctx->peer.name);
name              426 mail/ngx_mail_auth_http_module.c                           ctx->peer.name);
name              750 mail/ngx_mail_auth_http_module.c                               ctx->peer.name);
name              761 mail/ngx_mail_auth_http_module.c                               ctx->peer.name);
name              790 mail/ngx_mail_auth_http_module.c                               ctx->peer.name, &ctx->port);
name              803 mail/ngx_mail_auth_http_module.c                               ctx->peer.name, &ctx->addr);
name              814 mail/ngx_mail_auth_http_module.c             peer->name.len = len;
name              816 mail/ngx_mail_auth_http_module.c             peer->name.data = ngx_pnalloc(s->connection->pool, len);
name              817 mail/ngx_mail_auth_http_module.c             if (peer->name.data == NULL) {
name              825 mail/ngx_mail_auth_http_module.c             ngx_memcpy(peer->name.data, ctx->addr.data, len);
name              827 mail/ngx_mail_auth_http_module.c             peer->name.data[len++] = ':';
name              829 mail/ngx_mail_auth_http_module.c             ngx_memcpy(peer->name.data + len, ctx->port.data, ctx->port.len);
name              845 mail/ngx_mail_auth_http_module.c                       ctx->peer.name);
name             1155 mail/ngx_mail_auth_http_module.c           + sizeof("Auth-Protocol: ") - 1 + cscf->protocol->name.len
name             1207 mail/ngx_mail_auth_http_module.c     b->last = ngx_cpymem(b->last, cscf->protocol->name.data,
name             1208 mail/ngx_mail_auth_http_module.c                          cscf->protocol->name.len);
name             1309 mail/ngx_mail_auth_http_module.c     ahcf->file = cf->conf_file->file.name.data;
name              165 mail/ngx_mail_core_module.c     cscf->file_name = cf->conf_file->file.name.data;
name              477 mail/ngx_mail_core_module.c             && ngx_strcmp(module->protocol->name.data, value[1].data) == 0)
name              769 mail/ngx_mail_handler.c     p = ngx_snprintf(buf, len, ", upstream: %V", s->proxy->upstream.name);
name              145 mail/ngx_mail_proxy_module.c     p->upstream.name = &peer->name;
name              129 mail/ngx_mail_smtp_handler.c     s->host.data = ngx_pstrdup(c->pool, &ctx->name);
name              136 mail/ngx_mail_smtp_handler.c     s->host.len = ctx->name.len;
name              168 mail/ngx_mail_smtp_handler.c     ctx->name = s->host;
name              195 mail/ngx_mail_smtp_handler.c                       &ctx->name, ctx->state,
name              335 mail/ngx_mail_ssl_module.c     scf->file = cf->conf_file->file.name.data;
name              361 mail/ngx_mail_ssl_module.c     scf->file = cf->conf_file->file.name.data;
name              374 mail/ngx_mail_ssl_module.c     ngx_str_t   *value, name, size;
name              431 mail/ngx_mail_ssl_module.c             name.len = len;
name              432 mail/ngx_mail_ssl_module.c             name.data = value[i].data + sizeof("shared:") - 1;
name              435 mail/ngx_mail_ssl_module.c             size.data = name.data + len + 1;
name              451 mail/ngx_mail_ssl_module.c             scf->shm_zone = ngx_shared_memory_add(cf, &name, n,
name               34 os/unix/ngx_darwin_init.c     char        *name;
name              105 os/unix/ngx_darwin_init.c     for (i = 0; sysctls[i].name; i++) {
name              108 os/unix/ngx_darwin_init.c         if (sysctlbyname(sysctls[i].name, sysctls[i].value, &size, NULL, 0)
name              122 os/unix/ngx_darwin_init.c                       "sysctlbyname(%s) failed", sysctls[i].name);
name              156 os/unix/ngx_darwin_init.c     for (i = 0; sysctls[i].name; i++) {
name              166 os/unix/ngx_darwin_init.c                           sysctls[i].name, value);
name              268 os/unix/ngx_darwin_sendfile_chain.c                               file->file->name.data);
name               73 os/unix/ngx_file_aio_read.c                       "second aio post for \"%V\"", &file->name);
name               79 os/unix/ngx_file_aio_read.c                    ev->complete, offset, size, &file->name);
name              115 os/unix/ngx_file_aio_read.c                       "aio_read(\"%V\") failed", &file->name);
name              152 os/unix/ngx_file_aio_read.c                       "aio_error(\"%V\") failed", &file->name);
name              162 os/unix/ngx_file_aio_read.c                               &file->name);
name              172 os/unix/ngx_file_aio_read.c                       "aio_read(\"%V\") failed", &file->name);
name              184 os/unix/ngx_file_aio_read.c                       "aio_return(\"%V\") failed", &file->name);
name              208 os/unix/ngx_file_aio_read.c                    "aio event handler fd:%d %V", aio->fd, &aio->file->name);
name               32 os/unix/ngx_files.c                       "pread() \"%s\" failed", file->name.data);
name               41 os/unix/ngx_files.c                           "lseek() \"%s\" failed", file->name.data);
name               52 os/unix/ngx_files.c                       "read() \"%s\" failed", file->name.data);
name               83 os/unix/ngx_files.c                           "pwrite() \"%s\" failed", file->name.data);
name              103 os/unix/ngx_files.c                           "lseek() \"%s\" failed", file->name.data);
name              115 os/unix/ngx_files.c                           "write() \"%s\" failed", file->name.data);
name              133 os/unix/ngx_files.c ngx_open_tempfile(u_char *name, ngx_uint_t persistent, ngx_uint_t access)
name              137 os/unix/ngx_files.c     fd = open((const char *) name, O_CREAT|O_EXCL|O_RDWR,
name              141 os/unix/ngx_files.c         unlink((const char *) name);
name              212 os/unix/ngx_files.c                               "lseek() \"%s\" failed", file->name.data);
name              223 os/unix/ngx_files.c                           "writev() \"%s\" failed", file->name.data);
name              230 os/unix/ngx_files.c                           file->name.data, n, size);
name              244 os/unix/ngx_files.c ngx_set_file_time(u_char *name, ngx_fd_t fd, time_t s)
name              253 os/unix/ngx_files.c     if (utimes((char *) name, tv) != -1) {
name              264 os/unix/ngx_files.c     fm->fd = ngx_open_file(fm->name, NGX_FILE_RDWR, NGX_FILE_TRUNCATE,
name              268 os/unix/ngx_files.c                       ngx_open_file_n " \"%s\" failed", fm->name);
name              274 os/unix/ngx_files.c                       "ftruncate() \"%s\" failed", fm->name);
name              285 os/unix/ngx_files.c                   "mmap(%uz) \"%s\" failed", fm->size, fm->name);
name              291 os/unix/ngx_files.c                       ngx_close_file_n " \"%s\" failed", fm->name);
name              303 os/unix/ngx_files.c                       "munmap(%uz) \"%s\" failed", fm->size, fm->name);
name              308 os/unix/ngx_files.c                       ngx_close_file_n " \"%s\" failed", fm->name);
name              314 os/unix/ngx_files.c ngx_open_dir(ngx_str_t *name, ngx_dir_t *dir)
name              316 os/unix/ngx_files.c     dir->dir = opendir((const char *) name->data);
name              370 os/unix/ngx_files.c ngx_read_glob(ngx_glob_t *gl, ngx_str_t *name)
name              382 os/unix/ngx_files.c         name->len = (size_t) ngx_strlen(gl->pglob.gl_pathv[gl->n]);
name              383 os/unix/ngx_files.c         name->data = (u_char *) gl->pglob.gl_pathv[gl->n];
name              514 os/unix/ngx_files.c ngx_fs_bsize(u_char *name)
name              518 os/unix/ngx_files.c     if (statfs((char *) name, &fs) == -1) {
name              532 os/unix/ngx_files.c ngx_fs_bsize(u_char *name)
name              536 os/unix/ngx_files.c     if (statvfs((char *) name, &fs) == -1) {
name              550 os/unix/ngx_files.c ngx_fs_bsize(u_char *name)
name               21 os/unix/ngx_files.h     u_char                      *name;
name               57 os/unix/ngx_files.h #define ngx_open_file(name, mode, create, access)                            \
name               58 os/unix/ngx_files.h     open((const char *) name, mode|create|O_BINARY, access)
name               62 os/unix/ngx_files.h #define ngx_open_file(name, mode, create, access)                            \
name               63 os/unix/ngx_files.h     open((const char *) name, mode|create, access)
name               86 os/unix/ngx_files.h #define ngx_delete_file(name)    unlink((const char *) name)
name               90 os/unix/ngx_files.h ngx_fd_t ngx_open_tempfile(u_char *name, ngx_uint_t persistent,
name              141 os/unix/ngx_files.h ngx_int_t ngx_set_file_time(u_char *name, ngx_fd_t fd, time_t s);
name              190 os/unix/ngx_files.h ngx_int_t ngx_open_dir(ngx_str_t *name, ngx_dir_t *dir);
name              202 os/unix/ngx_files.h #define ngx_create_dir(name, access) mkdir((const char *) name, access)
name              206 os/unix/ngx_files.h #define ngx_delete_dir(name)     rmdir((const char *) name)
name              221 os/unix/ngx_files.h ngx_de_info(u_char *name, ngx_dir_t *dir)
name              224 os/unix/ngx_files.h     return stat((const char *) name, &dir->info);
name              228 os/unix/ngx_files.h #define ngx_de_link_info(name, dir)  lstat((const char *) name, &(dir)->info)
name              260 os/unix/ngx_files.h ngx_int_t ngx_read_glob(ngx_glob_t *gl, ngx_str_t *name);
name              320 os/unix/ngx_files.h size_t ngx_fs_bsize(u_char *name);
name               44 os/unix/ngx_freebsd_init.c     char        *name;
name              184 os/unix/ngx_freebsd_init.c     for (i = 0; sysctls[i].name; i++) {
name              187 os/unix/ngx_freebsd_init.c         if (sysctlbyname(sysctls[i].name, sysctls[i].value, &size, NULL, 0)
name              201 os/unix/ngx_freebsd_init.c                       "sysctlbyname(%s) failed", sysctls[i].name);
name              248 os/unix/ngx_freebsd_init.c     for (i = 0; sysctls[i].name; i++) {
name              258 os/unix/ngx_freebsd_init.c                           sysctls[i].name, value);
name              314 os/unix/ngx_freebsd_sendfile_chain.c                          file->file->name.data, file->file_pos);
name               59 os/unix/ngx_linux_aio_read.c                       "second aio post for \"%V\"", &file->name);
name               65 os/unix/ngx_linux_aio_read.c                    ev->complete, offset, size, &file->name);
name              112 os/unix/ngx_linux_aio_read.c                   "io_submit(\"%V\") failed", &file->name);
name              131 os/unix/ngx_linux_aio_read.c                    "aio event handler fd:%d %V", aio->fd, &aio->file->name);
name               50 os/unix/ngx_linux_init.c     int        name[2];
name               54 os/unix/ngx_linux_init.c     name[0] = CTL_KERN;
name               55 os/unix/ngx_linux_init.c     name[1] = KERN_RTSIGMAX;
name               58 os/unix/ngx_linux_init.c     if (sysctl(name, 2, &ngx_linux_rtsig_max, &len, NULL, 0) == -1) {
name               16 os/unix/ngx_process.c     char   *name;
name               86 os/unix/ngx_process.c     char *name, ngx_int_t respawn)
name              118 os/unix/ngx_process.c                           "socketpair() failed while spawning \"%s\"", name);
name              130 os/unix/ngx_process.c                           name);
name              138 os/unix/ngx_process.c                           name);
name              146 os/unix/ngx_process.c                           "ioctl(FIOASYNC) failed while spawning \"%s\"", name);
name              153 os/unix/ngx_process.c                           "fcntl(F_SETOWN) failed while spawning \"%s\"", name);
name              161 os/unix/ngx_process.c                            name);
name              169 os/unix/ngx_process.c                            name);
name              190 os/unix/ngx_process.c                       "fork() failed while spawning \"%s\"", name);
name              203 os/unix/ngx_process.c     ngx_log_error(NGX_LOG_NOTICE, cycle->log, 0, "start %s %P", name, pid);
name              214 os/unix/ngx_process.c     ngx_processes[s].name = name;
name              261 os/unix/ngx_process.c     return ngx_spawn_process(cycle, ngx_execute_proc, ctx, ctx->name,
name              274 os/unix/ngx_process.c                       ctx->name, ctx->path);
name              513 os/unix/ngx_process.c                 process = ngx_processes[i].name;
name              568 os/unix/ngx_process.c ngx_os_signal_process(ngx_cycle_t *cycle, char *name, ngx_int_t pid)
name              573 os/unix/ngx_process.c         if (ngx_strcmp(name, sig->name) == 0) {
name               27 os/unix/ngx_process.h     char               *name;
name               39 os/unix/ngx_process.h     char         *name;
name               62 os/unix/ngx_process.h     ngx_spawn_proc_pt proc, void *data, char *name, ngx_int_t respawn);
name              619 os/unix/ngx_process_cycle.c                                       ngx_processes[i].name, i)
name              623 os/unix/ngx_process_cycle.c                                   "can not respawn %s", ngx_processes[i].name);
name             1311 os/unix/ngx_process_cycle.c     ngx_setproctitle(ctx->name);
name               31 os/unix/ngx_process_cycle.h     char                      *name;
name               18 os/unix/ngx_shmem.h     ngx_str_t    name;