resolved          641 http/modules/ngx_http_fastcgi_module.c     u->resolved = ngx_pcalloc(r->pool, sizeof(ngx_http_upstream_resolved_t));
resolved          642 http/modules/ngx_http_fastcgi_module.c     if (u->resolved == NULL) {
resolved          647 http/modules/ngx_http_fastcgi_module.c         u->resolved->sockaddr = url.addrs[0].sockaddr;
resolved          648 http/modules/ngx_http_fastcgi_module.c         u->resolved->socklen = url.addrs[0].socklen;
resolved          649 http/modules/ngx_http_fastcgi_module.c         u->resolved->naddrs = 1;
resolved          650 http/modules/ngx_http_fastcgi_module.c         u->resolved->host = url.addrs[0].name;
resolved          653 http/modules/ngx_http_fastcgi_module.c         u->resolved->host = url.host;
resolved          654 http/modules/ngx_http_fastcgi_module.c         u->resolved->port = url.port;
resolved          655 http/modules/ngx_http_fastcgi_module.c         u->resolved->no_port = url.no_port;
resolved          710 http/modules/ngx_http_proxy_module.c     u->resolved = ngx_pcalloc(r->pool, sizeof(ngx_http_upstream_resolved_t));
resolved          711 http/modules/ngx_http_proxy_module.c     if (u->resolved == NULL) {
resolved          716 http/modules/ngx_http_proxy_module.c         u->resolved->sockaddr = url.addrs[0].sockaddr;
resolved          717 http/modules/ngx_http_proxy_module.c         u->resolved->socklen = url.addrs[0].socklen;
resolved          718 http/modules/ngx_http_proxy_module.c         u->resolved->naddrs = 1;
resolved          719 http/modules/ngx_http_proxy_module.c         u->resolved->host = url.addrs[0].name;
resolved          722 http/modules/ngx_http_proxy_module.c         u->resolved->host = url.host;
resolved          723 http/modules/ngx_http_proxy_module.c         u->resolved->port = (in_port_t) (url.no_port ? port : url.port);
resolved          724 http/modules/ngx_http_proxy_module.c         u->resolved->no_port = url.no_port;
resolved          463 http/modules/ngx_http_scgi_module.c     u->resolved = ngx_pcalloc(r->pool, sizeof(ngx_http_upstream_resolved_t));
resolved          464 http/modules/ngx_http_scgi_module.c     if (u->resolved == NULL) {
resolved          469 http/modules/ngx_http_scgi_module.c         u->resolved->sockaddr = url.addrs[0].sockaddr;
resolved          470 http/modules/ngx_http_scgi_module.c         u->resolved->socklen = url.addrs[0].socklen;
resolved          471 http/modules/ngx_http_scgi_module.c         u->resolved->naddrs = 1;
resolved          472 http/modules/ngx_http_scgi_module.c         u->resolved->host = url.addrs[0].name;
resolved          475 http/modules/ngx_http_scgi_module.c         u->resolved->host = url.host;
resolved          476 http/modules/ngx_http_scgi_module.c         u->resolved->port = url.port;
resolved          477 http/modules/ngx_http_scgi_module.c         u->resolved->no_port = url.no_port;
resolved          496 http/modules/ngx_http_uwsgi_module.c     u->resolved = ngx_pcalloc(r->pool, sizeof(ngx_http_upstream_resolved_t));
resolved          497 http/modules/ngx_http_uwsgi_module.c     if (u->resolved == NULL) {
resolved          502 http/modules/ngx_http_uwsgi_module.c         u->resolved->sockaddr = url.addrs[0].sockaddr;
resolved          503 http/modules/ngx_http_uwsgi_module.c         u->resolved->socklen = url.addrs[0].socklen;
resolved          504 http/modules/ngx_http_uwsgi_module.c         u->resolved->naddrs = 1;
resolved          505 http/modules/ngx_http_uwsgi_module.c         u->resolved->host = url.addrs[0].name;
resolved          508 http/modules/ngx_http_uwsgi_module.c         u->resolved->host = url.host;
resolved          509 http/modules/ngx_http_uwsgi_module.c         u->resolved->port = url.port;
resolved          510 http/modules/ngx_http_uwsgi_module.c         u->resolved->no_port = url.no_port;
resolved          537 http/ngx_http_upstream.c     if (u->resolved == NULL) {
resolved          543 http/ngx_http_upstream.c         if (u->resolved->sockaddr) {
resolved          545 http/ngx_http_upstream.c             if (ngx_http_upstream_create_round_robin_peer(r, u->resolved)
resolved          558 http/ngx_http_upstream.c         host = &u->resolved->host;
resolved          569 http/ngx_http_upstream.c                 && ((uscf->port == 0 && u->resolved->no_port)
resolved          570 http/ngx_http_upstream.c                      || uscf->port == u->resolved->port)
resolved          577 http/ngx_http_upstream.c         if (u->resolved->port == 0) {
resolved          608 http/ngx_http_upstream.c         u->resolved->ctx = ctx;
resolved          611 http/ngx_http_upstream.c             u->resolved->ctx = NULL;
resolved          835 http/ngx_http_upstream.c     ur = u->resolved;
resolved         2916 http/ngx_http_upstream.c     if (u->resolved && u->resolved->ctx) {
resolved         2917 http/ngx_http_upstream.c         ngx_resolve_name_done(u->resolved->ctx);
resolved         2918 http/ngx_http_upstream.c         u->resolved->ctx = NULL;
resolved         2939 http/ngx_http_upstream.c     if (u->resolved && u->resolved->ctx) {
resolved         2940 http/ngx_http_upstream.c         ngx_resolve_name_done(u->resolved->ctx);
resolved         2941 http/ngx_http_upstream.c         u->resolved->ctx = NULL;
resolved          266 http/ngx_http_upstream.h     ngx_http_upstream_resolved_t    *resolved;