pwd              1027 core/nginx.c           struct passwd  *pwd;
pwd              1030 core/nginx.c           pwd = getpwnam(NGX_USER);
pwd              1031 core/nginx.c           if (pwd == NULL) {
pwd              1038 core/nginx.c           ccf->user = pwd->pw_uid;
pwd              1119 core/nginx.c       struct passwd    *pwd;
pwd              1140 core/nginx.c       pwd = getpwnam((const char *) value[1].data);
pwd              1141 core/nginx.c       if (pwd == NULL) {
pwd              1147 core/nginx.c       ccf->user = pwd->pw_uid;
pwd               104 http/modules/ngx_http_auth_basic_module.c     ngx_str_t                        pwd, user_file;
pwd               230 http/modules/ngx_http_auth_basic_module.c                     pwd.len = i - passwd;
pwd               231 http/modules/ngx_http_auth_basic_module.c                     pwd.data = &buf[passwd];
pwd               233 http/modules/ngx_http_auth_basic_module.c                     return ngx_http_auth_basic_crypt_handler(r, NULL, &pwd,
pwd               264 http/modules/ngx_http_auth_basic_module.c         pwd.len = i - passwd;
pwd               265 http/modules/ngx_http_auth_basic_module.c         pwd.data = ngx_pnalloc(r->pool, pwd.len + 1);
pwd               266 http/modules/ngx_http_auth_basic_module.c         if (pwd.data == NULL) {
pwd               270 http/modules/ngx_http_auth_basic_module.c         ngx_cpystrn(pwd.data, &buf[passwd], pwd.len + 1);
pwd               272 http/modules/ngx_http_auth_basic_module.c         return ngx_http_auth_basic_crypt_handler(r, NULL, &pwd, &alcf->realm);