Searched refs:fnoi (Results 1 – 2 of 2) sorted by relevance
/reactos/drivers/filesystems/btrfs/ |
H A D | fastio.c | 211 TRACE("(%p, %u, %p, %p, %p)\n", FileObject, Wait, fnoi, IoStatus, DeviceObject); in _Function_class_() 213 RtlZeroMemory(fnoi, sizeof(FILE_NETWORK_OPEN_INFORMATION)); in _Function_class_() 235 fnoi->CreationTime = fnoi->LastAccessTime = fnoi->LastWriteTime = fnoi->ChangeTime = time; in _Function_class_() 250 fnoi->CreationTime.QuadPart = unix_time_to_win(&ii->otime); in _Function_class_() 251 fnoi->LastAccessTime.QuadPart = unix_time_to_win(&ii->st_atime); in _Function_class_() 252 fnoi->LastWriteTime.QuadPart = unix_time_to_win(&ii->st_mtime); in _Function_class_() 253 fnoi->ChangeTime.QuadPart = unix_time_to_win(&ii->st_ctime); in _Function_class_() 257 fnoi->AllocationSize.QuadPart = fnoi->EndOfFile.QuadPart = fcb->adsdata.Length; in _Function_class_() 260 fnoi->AllocationSize.QuadPart = fcb_alloc_size(fcb); in _Function_class_() 261 fnoi->EndOfFile.QuadPart = S_ISDIR(fcb->inode_item.st_mode) ? 0 : fcb->inode_item.st_size; in _Function_class_() [all …]
|
H A D | fileinfo.c | 4148 RtlZeroMemory(fnoi, sizeof(FILE_NETWORK_OPEN_INFORMATION)); 4166 fnoi->CreationTime = fnoi->LastAccessTime = fnoi->LastWriteTime = fnoi->ChangeTime = time; 4168 fnoi->CreationTime.QuadPart = unix_time_to_win(&ii->otime); 4169 fnoi->LastAccessTime.QuadPart = unix_time_to_win(&ii->st_atime); 4170 fnoi->LastWriteTime.QuadPart = unix_time_to_win(&ii->st_mtime); 4171 fnoi->ChangeTime.QuadPart = unix_time_to_win(&ii->st_ctime); 4175 fnoi->AllocationSize.QuadPart = fnoi->EndOfFile.QuadPart = fcb->adsdata.Length; 4178 fnoi->AllocationSize.QuadPart = fcb_alloc_size(fcb); 4180 fnoi->FileAttributes = fcb->atts == 0 ? FILE_ATTRIBUTE_NORMAL : fcb->atts; 5215 FILE_NETWORK_OPEN_INFORMATION* fnoi = Irp->AssociatedIrp.SystemBuffer; local [all …]
|