Home | History | Annotate | Download | only in UefiShellLevel2CommandsLib

Lines Matching defs:Daylight

295   @param[in] Daylight       The value to set for Daylight.

305 IN CONST UINT8 Daylight
317 if (Daylight != 0xFF &&((Daylight & (EFI_TIME_IN_DAYLIGHT|EFI_TIME_ADJUST_DAYLIGHT)) != Daylight)) {
377 if (Daylight != 0xFF) {
378 TheTime.Daylight = Daylight;
409 UINT8 Daylight;
528 switch (TheTime.Daylight) {
542 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_GEN_UEFI_FUNC_ERROR), gShellLevel2HiiHandle, L"time", L"gRT->GetTime", L"TheTime.Daylight", TheTime.Daylight);
592 Daylight = (UINT8)ShellStrToUintn(TempLocation);
599 Daylight = 0xff; //make it invalid = will not use
601 if (Daylight != 0 && Daylight != 1 && Daylight != 3) {
609 Daylight = 0xFF;
612 ShellStatus = CheckAndSetTime(ShellCommandLineGetRawValue(Package, 1), Tz, Daylight);