Lines Matching refs:modenum
563 INT32 modenum; in command_text() local
571 modenum = efi_find_text_mode(arg); in command_text()
572 if (modenum == -1) { in command_text()
577 modenum = strtoul(arg, NULL, 0); in command_text()
580 status = uefi_call_wrapper(ST->ConOut->SetMode, 2, ST->ConOut, modenum); in command_text()
687 INT32 modenum; in command_gop() local
700 modenum = efi_find_gop_mode(arg); in command_gop()
701 if (modenum == -1) { in command_gop()
706 modenum = strtoul(arg, NULL, 0); in command_gop()
709 status = uefi_call_wrapper(efi_gop->SetMode, 2, efi_gop, modenum); in command_gop()
710 if (!EFI_ERROR(status) && efi_gop->Mode->Mode == modenum) { in command_gop()
711 efi_gop_mode = modenum; in command_gop()