Lines Matching refs:atr
293 attrib_t atr; in uv__fs_futime()
294 memset(&atr, 0, sizeof(atr)); in uv__fs_futime()
295 atr.att_mtimechg = 1; in uv__fs_futime()
296 atr.att_atimechg = 1; in uv__fs_futime()
297 atr.att_mtime = req->mtime; in uv__fs_futime()
298 atr.att_atime = req->atime; in uv__fs_futime()
299 return __fchattr(req->file, &atr, sizeof(atr)); in uv__fs_futime()
1186 attrib_t atr; in uv__fs_utime()
1187 memset(&atr, 0, sizeof(atr)); in uv__fs_utime()
1188 atr.att_mtimechg = 1; in uv__fs_utime()
1189 atr.att_atimechg = 1; in uv__fs_utime()
1190 atr.att_mtime = req->mtime; in uv__fs_utime()
1191 atr.att_atime = req->atime; in uv__fs_utime()
1192 return __lchattr((char*) req->path, &atr, sizeof(atr)); in uv__fs_utime()