Home | History | Annotate | Download | only in WinNtSimpleFileSystemDxe

Lines Matching full:createtime

1647     WinNtSystemTimeToEfiTime (&SystemTime, &TimeZone, &Info->CreateTime);

2021 Info->CreateTime.Year = SystemTime.wYear;
2022 Info->CreateTime.Month = (UINT8) SystemTime.wMonth;
2023 Info->CreateTime.Day = (UINT8) SystemTime.wDay;
2024 Info->CreateTime.Hour = (UINT8) SystemTime.wHour;
2025 Info->CreateTime.Minute = (UINT8) SystemTime.wMinute;
2026 Info->CreateTime.Second = (UINT8) SystemTime.wSecond;
2524 if (!IsZero (&NewFileInfo->CreateTime, sizeof (EFI_TIME)) &&
2525 CompareMem (&NewFileInfo->CreateTime, &OldFileInfo->CreateTime, sizeof (EFI_TIME))
2731 NewCreationSystemTime.wYear = NewFileInfo->CreateTime.Year;
2732 NewCreationSystemTime.wMonth = NewFileInfo->CreateTime.Month;
2733 NewCreationSystemTime.wDay = NewFileInfo->CreateTime.Day;
2734 NewCreationSystemTime.wHour = NewFileInfo->CreateTime.Hour;
2735 NewCreationSystemTime.wMinute = NewFileInfo->CreateTime.Minute;
2736 NewCreationSystemTime.wSecond = NewFileInfo->CreateTime.Second;