Lines Matching refs:std_info

166 	STANDARD_INFORMATION *std_info;  in ntfs_inode_real_open()  local
203 std_info = (STANDARD_INFORMATION *)((u8 *)ctx->attr + in ntfs_inode_real_open()
205 ni->flags = std_info->file_attributes; in ntfs_inode_real_open()
206 ni->creation_time = std_info->creation_time; in ntfs_inode_real_open()
207 ni->last_data_change_time = std_info->last_data_change_time; in ntfs_inode_real_open()
208 ni->last_mft_change_time = std_info->last_mft_change_time; in ntfs_inode_real_open()
209 ni->last_access_time = std_info->last_access_time; in ntfs_inode_real_open()
214 ni->owner_id = std_info->owner_id; in ntfs_inode_real_open()
215 ni->security_id = std_info->security_id; in ntfs_inode_real_open()
216 ni->quota_charged = std_info->quota_charged; in ntfs_inode_real_open()
217 ni->usn = std_info->usn; in ntfs_inode_real_open()
751 STANDARD_INFORMATION *std_info; in ntfs_inode_sync_standard_information() local
767 std_info = (STANDARD_INFORMATION *)((u8 *)ctx->attr + in ntfs_inode_sync_standard_information()
769 std_info->file_attributes = ni->flags; in ntfs_inode_sync_standard_information()
771 std_info->creation_time = ni->creation_time; in ntfs_inode_sync_standard_information()
772 std_info->last_data_change_time = ni->last_data_change_time; in ntfs_inode_sync_standard_information()
773 std_info->last_mft_change_time = ni->last_mft_change_time; in ntfs_inode_sync_standard_information()
774 std_info->last_access_time = ni->last_access_time; in ntfs_inode_sync_standard_information()
786 std_info->owner_id = ni->owner_id; in ntfs_inode_sync_standard_information()
787 std_info->security_id = ni->security_id; in ntfs_inode_sync_standard_information()
788 std_info->quota_charged = ni->quota_charged; in ntfs_inode_sync_standard_information()
789 std_info->usn = ni->usn; in ntfs_inode_sync_standard_information()
1476 STANDARD_INFORMATION *std_info; in ntfs_inode_get_times() local
1488 std_info = (STANDARD_INFORMATION *)((u8 *)ctx->attr + in ntfs_inode_get_times()
1492 times[0] = sle64_to_cpu(std_info->creation_time); in ntfs_inode_get_times()
1495 times[1] = sle64_to_cpu(std_info->last_data_change_time); in ntfs_inode_get_times()
1499 times[2] = sle64_to_cpu(std_info->last_access_time); in ntfs_inode_get_times()
1503 times[3] = sle64_to_cpu(std_info->last_mft_change_time); in ntfs_inode_get_times()
1535 STANDARD_INFORMATION *std_info; in ntfs_inode_set_times() local
1557 std_info = (STANDARD_INFORMATION *)((u8 *)ctx->attr + in ntfs_inode_set_times()
1568 std_info->creation_time = cpu_to_sle64(times[0]); in ntfs_inode_set_times()
1570 = std_info->creation_time; in ntfs_inode_set_times()
1572 std_info->last_data_change_time = cpu_to_sle64(times[1]); in ntfs_inode_set_times()
1574 = std_info->last_data_change_time; in ntfs_inode_set_times()
1577 std_info->last_access_time = cpu_to_sle64(times[2]); in ntfs_inode_set_times()
1579 = std_info->last_access_time; in ntfs_inode_set_times()
1581 std_info->last_mft_change_time = now; in ntfs_inode_set_times()