ext               535 core/ngx_file.c ngx_ext_rename_file(ngx_str_t *src, ngx_str_t *to, ngx_ext_rename_file_t *ext)
ext               543 core/ngx_file.c     if (ext->access) {
ext               544 core/ngx_file.c         if (ngx_change_file_access(src->data, ext->access) == NGX_FILE_ERROR) {
ext               545 core/ngx_file.c             ngx_log_error(NGX_LOG_CRIT, ext->log, ngx_errno,
ext               554 core/ngx_file.c     if (ext->time != -1) {
ext               555 core/ngx_file.c         if (ngx_set_file_time(src->data, ext->fd, ext->time) != NGX_OK) {
ext               556 core/ngx_file.c             ngx_log_error(NGX_LOG_CRIT, ext->log, ngx_errno,
ext               571 core/ngx_file.c         if (!ext->create_path) {
ext               575 core/ngx_file.c         err = ngx_create_full_path(to->data, ngx_dir_access(ext->path_access));
ext               578 core/ngx_file.c             ngx_log_error(NGX_LOG_CRIT, ext->log, err,
ext               594 core/ngx_file.c         err = ngx_win32_rename_file(src, to, ext->log);
ext               607 core/ngx_file.c         cf.access = ext->access;
ext               608 core/ngx_file.c         cf.time = ext->time;
ext               609 core/ngx_file.c         cf.log = ext->log;
ext               611 core/ngx_file.c         name = ngx_alloc(to->len + 1 + 10 + 1, ext->log);
ext               625 core/ngx_file.c                     ngx_log_error(NGX_LOG_CRIT, ext->log, ngx_errno,
ext               634 core/ngx_file.c             ngx_log_error(NGX_LOG_CRIT, ext->log, ngx_errno,
ext               639 core/ngx_file.c                 ngx_log_error(NGX_LOG_CRIT, ext->log, ngx_errno,
ext               652 core/ngx_file.c     if (ext->delete_file) {
ext               654 core/ngx_file.c             ngx_log_error(NGX_LOG_CRIT, ext->log, ngx_errno,
ext               660 core/ngx_file.c         ngx_log_error(NGX_LOG_CRIT, ext->log, err,
ext               133 core/ngx_file.h     ngx_ext_rename_file_t *ext);
ext               208 http/modules/ngx_http_dav_module.c     ngx_ext_rename_file_t     ext;
ext               243 http/modules/ngx_http_dav_module.c     ext.access = dlcf->access;
ext               244 http/modules/ngx_http_dav_module.c     ext.path_access = dlcf->access;
ext               245 http/modules/ngx_http_dav_module.c     ext.time = -1;
ext               246 http/modules/ngx_http_dav_module.c     ext.create_path = dlcf->create_full_put_path;
ext               247 http/modules/ngx_http_dav_module.c     ext.delete_file = 1;
ext               248 http/modules/ngx_http_dav_module.c     ext.log = r->connection->log;
ext               255 http/modules/ngx_http_dav_module.c             ext.time = date;
ext               256 http/modules/ngx_http_dav_module.c             ext.fd = r->request_body->temp_file->file.fd;
ext               260 http/modules/ngx_http_dav_module.c     if (ngx_ext_rename_file(temp, &path, &ext) != NGX_OK) {
ext               522 http/modules/ngx_http_dav_module.c     ngx_ext_rename_file_t     ext;
ext               799 http/modules/ngx_http_dav_module.c             ext.access = 0;
ext               800 http/modules/ngx_http_dav_module.c             ext.path_access = dlcf->access;
ext               801 http/modules/ngx_http_dav_module.c             ext.time = -1;
ext               802 http/modules/ngx_http_dav_module.c             ext.create_path = 1;
ext               803 http/modules/ngx_http_dav_module.c             ext.delete_file = 0;
ext               804 http/modules/ngx_http_dav_module.c             ext.log = r->connection->log;
ext               806 http/modules/ngx_http_dav_module.c             if (ngx_ext_rename_file(&path, &copy.path, &ext) == NGX_OK) {
ext               785 http/ngx_http_file_cache.c     ngx_ext_rename_file_t   ext;
ext               809 http/ngx_http_file_cache.c     ext.access = NGX_FILE_OWNER_ACCESS;
ext               810 http/ngx_http_file_cache.c     ext.path_access = NGX_FILE_OWNER_ACCESS;
ext               811 http/ngx_http_file_cache.c     ext.time = -1;
ext               812 http/ngx_http_file_cache.c     ext.create_path = 1;
ext               813 http/ngx_http_file_cache.c     ext.delete_file = 1;
ext               814 http/ngx_http_file_cache.c     ext.log = r->connection->log;
ext               816 http/ngx_http_file_cache.c     rc = ngx_ext_rename_file(&tf->file.name, &c->file.name, &ext);
ext              2707 http/ngx_http_upstream.c     ngx_ext_rename_file_t   ext;
ext              2736 http/ngx_http_upstream.c     ext.access = u->conf->store_access;
ext              2737 http/ngx_http_upstream.c     ext.path_access = u->conf->store_access;
ext              2738 http/ngx_http_upstream.c     ext.time = -1;
ext              2739 http/ngx_http_upstream.c     ext.create_path = 1;
ext              2740 http/ngx_http_upstream.c     ext.delete_file = 1;
ext              2741 http/ngx_http_upstream.c     ext.log = r->connection->log;
ext              2749 http/ngx_http_upstream.c             ext.time = lm;
ext              2750 http/ngx_http_upstream.c             ext.fd = tf->file.fd;
ext              2773 http/ngx_http_upstream.c     (void) ngx_ext_rename_file(&tf->file.name, &path, &ext);