Home | History | Annotate | Download | only in VirtualRealTimeClockLib

Lines Matching defs:Daylight

75   UINT8       Daylight = 0;

140 // Get the current daylight information from non-volatile storage
141 Size = sizeof (Daylight);
147 (VOID *)&Daylight
157 // The daylight variable does not exist in non-volatile storage, so create it.
158 Time->Daylight = 0;
165 (VOID *)&(Time->Daylight)
177 // Got the daylight information
178 Time->Daylight = Daylight;
181 if ((Time->Daylight & EFI_TIME_IN_DAYLIGHT) == EFI_TIME_IN_DAYLIGHT) {
247 // TODO: Automatic Daylight activation
250 if ((Time->Daylight & EFI_TIME_IN_DAYLIGHT) == EFI_TIME_IN_DAYLIGHT) {
281 // Save the current daylight information into non-volatile storage
286 sizeof(Time->Daylight),
287 (VOID *)&(Time->Daylight)