| /src/sys/stand/efiboot/ |
| efigop.c | 49 if (EFI_ERROR(status) || gop->Mode == NULL) { 72 efi_gop_printmode(UINT32 mode, EFI_GRAPHICS_OUTPUT_MODE_INFORMATION *info) 76 snprintf(buf, sizeof(buf), "%-5u: %ux%u %u", mode, 91 efi_gop_printmode(gop->Mode->Mode, gop->Mode->Info); 92 if (gop->Mode->FrameBufferBase != 0) { 94 (unsigned long)gop->Mode->FrameBufferBase, 95 (unsigned long)gop->Mode->FrameBufferSize); 111 for (UINT32 mode = 0; mode < gop->Mode->MaxMode; mode++) [all...] |
| efipxe.c | 77 if (pxe->Mode == NULL || 78 (!pxe->Mode->DhcpAckReceived && !pxe->Mode->PxeReplyReceived)) 86 if (net->Mode == NULL) 91 if (net->Mode->HwAddressSize == epi->addrsz && 92 memcmp(net->Mode->CurrentAddress.Addr, epi->mac.Addr, 93 net->Mode->HwAddressSize) == 0) { 108 epi->addrsz = net->Mode->HwAddressSize; 109 memcpy(epi->mac.Addr, net->Mode->CurrentAddress.Addr, epi->addrsz);
|
| efinet.c | 88 dump_mode(EFI_SIMPLE_NETWORK_MODE *mode) 92 printf("State = %x\n", mode->State); 93 printf("HwAddressSize = %u\n", mode->HwAddressSize); 94 printf("MediaHeaderSize = %u\n", mode->MediaHeaderSize); 95 printf("MaxPacketSize = %u\n", mode->MaxPacketSize); 96 printf("NvRamSize = %u\n", mode->NvRamSize); 97 printf("NvRamAccessSize = %u\n", mode->NvRamAccessSize); 98 printf("ReceiveFilterMask = %x\n", mode->ReceiveFilterMask); 99 printf("ReceiveFilterSetting = %u\n", mode->ReceiveFilterSetting); 100 printf("MaxMCastFilterCount = %u\n", mode->MaxMCastFilterCount) [all...] |
| /src/sys/external/bsd/compiler_rt/dist/include/xray/ |
| xray_log_interface.h | 18 /// compiler-rt/xray. The "flight data recorder" (FDR) mode implementation uses 24 /// // We choose the mode which we'd like to install, and check whether this 25 /// // has succeeded. Each mode will have their own set of flags they will 31 /// // the currently selected mode. 36 /// // To do this, we provide the string flags configuration for the mode. 80 /// auto MyBufferProcessor = +[](const char* mode, XRayBuffer buffer) { 81 /// // Check the "mode" to see if it's something we know how to handle... 145 /// associating a mode to a particular logging implementation through 198 /// DEPRECATED: Use the mode registration workflow instead with 219 /// This function registers a logging implementation against a "mode" [all...] |
| /src/sys/arch/i386/stand/efiboot/ |
| efipxe.c | 77 if (pxe->Mode == NULL || 78 (!pxe->Mode->DhcpAckReceived && !pxe->Mode->PxeReplyReceived)) 86 if (net->Mode == NULL) 91 if (net->Mode->HwAddressSize == epi->addrsz && 92 memcmp(net->Mode->CurrentAddress.Addr, epi->mac.Addr, 93 net->Mode->HwAddressSize) == 0) { 108 epi->addrsz = net->Mode->HwAddressSize; 109 memcpy(epi->mac.Addr, net->Mode->CurrentAddress.Addr, epi->addrsz);
|
| efinet.c | 88 dump_mode(EFI_SIMPLE_NETWORK_MODE *mode) 92 printf("State = %x\n", mode->State); 93 printf("HwAddressSize = %u\n", mode->HwAddressSize); 94 printf("MediaHeaderSize = %u\n", mode->MediaHeaderSize); 95 printf("MaxPacketSize = %u\n", mode->MaxPacketSize); 96 printf("NvRamSize = %u\n", mode->NvRamSize); 97 printf("NvRamAccessSize = %u\n", mode->NvRamAccessSize); 98 printf("ReceiveFilterMask = %x\n", mode->ReceiveFilterMask); 99 printf("ReceiveFilterSetting = %u\n", mode->ReceiveFilterSetting); 100 printf("MaxMCastFilterCount = %u\n", mode->MaxMCastFilterCount) [all...] |
| eficons.c | 492 /* If a mode has not been selected, choose a default */ 500 if (EFI_ERROR(status) || efi_gop->Mode->Mode != bestmode) { 515 fb.physaddr = efi_gop->Mode->FrameBufferBase; 579 curmode = ST->ConOut->Mode->Mode; 580 for (i = 0; i < ST->ConOut->Mode->MaxMode; i++) { 596 char mode[32]; local 598 for (i = 0; i < ST->ConOut->Mode->MaxMode; i++) { 603 snprintf(mode, sizeof(mode), "%" PRIuMAX "x%" PRIuMAX 706 char mode[32]; local [all...] |
| efimemory.c | 207 ST->ConOut->Mode->Mode, &cols, &rows); 380 ST->ConOut->Mode->Mode, &cols, &rows);
|
| /src/sys/external/bsd/compiler_rt/dist/lib/xray/ |
| xray_log_interface.cc | 36 // We use a linked list of Mode to XRayLogImpl mappings. This is a linked list 41 const char *Mode; 65 __xray_log_register_mode(const char *Mode, 72 // First, look for whether the mode already has a registered implementation. 74 if (!internal_strcmp(Mode, it->Mode)) 79 NewModeImpl->Mode = internal_strdup(Mode); 86 __xray_log_select_mode(const char *Mode) XRAY_NEVER_INSTRUMENT { 89 if (!internal_strcmp(Mode, it->Mode)) [all...] |
| /src/sys/external/bsd/gnu-efi/dist/apps/ |
| lfbgrid.c | 65 if (gop->Mode) { 66 imax = gop->Mode->MaxMode; 68 Print(L"gop->Mode is NULL\n"); 80 gop->Mode ? gop->Mode->Mode : 0); 91 if (CompareMem(info, gop->Mode->Info, sizeof (*info))) 96 if (BufferSize == gop->Mode->FrameBufferSize) { 99 CopySize = BufferSize < gop->Mode->FrameBufferSize ? 100 BufferSize : gop->Mode->FrameBufferSize [all...] |
| modelist.c | 14 if (gop->Mode) { 15 imax = gop->Mode->MaxMode; 18 Print(L"gop->Mode is NULL\n"); 31 gop->Mode ? gop->Mode->Mode : 0); 42 (gop->Mode && 43 CompareMem(info,gop->Mode->Info,sizeof(*info)) == 0
|
| bltgrid.c | 40 if (gop->Mode) { 41 imax = gop->Mode->MaxMode; 43 Print(L"gop->Mode is NULL\n"); 55 gop->Mode ? gop->Mode->Mode : 0); 66 if (CompareMem(info, gop->Mode->Info, sizeof (*info))) 92 Print(L"Never found the active video mode?\n");
|
| /src/sys/external/bsd/acpica/dist/hardware/ |
| hwacpi.c | 3 * Module Name: hwacpi - ACPI Hardware Initialization/Mode Interface 57 * PARAMETERS: Mode - SYS_MODE_ACPI or SYS_MODE_LEGACY 61 * DESCRIPTION: Transitions the system into the requested mode. 67 UINT32 Mode) 77 /* If the Hardware Reduced flag is set, machine is always in acpi mode */ 86 * system does not support mode transition. 90 ACPI_ERROR ((AE_INFO, "No SMI_CMD in FADT, mode transition failed")); 97 * As old systems may have used zero for mode transition, 104 "No ACPI mode transition supported in this system " 109 switch (Mode) [all...] |
| /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
| sanitizer_unwind_win.cc | 63 stack_frame.AddrPC.Mode = AddrModeFlat; 64 stack_frame.AddrFrame.Mode = AddrModeFlat; 65 stack_frame.AddrStack.Mode = AddrModeFlat;
|
| /src/sys/external/bsd/gnu-efi/dist/inc/ |
| efipoint.h | 66 EFI_SIMPLE_POINTER_MODE *Mode;
114 EFI_ABSOLUTE_POINTER_MODE *Mode;
|
| efiser.h | 131 SERIAL_IO_MODE *Mode;
|
| /src/sys/arch/ia64/stand/efi/libefi/ |
| efinet.c | 69 dump_mode(EFI_SIMPLE_NETWORK_MODE *mode) 73 printf("State = %x\n", mode->State); 74 printf("HwAddressSize = %u\n", mode->HwAddressSize); 75 printf("MediaHeaderSize = %u\n", mode->MediaHeaderSize); 76 printf("MaxPacketSize = %u\n", mode->MaxPacketSize); 77 printf("NvRamSize = %u\n", mode->NvRamSize); 78 printf("NvRamAccessSize = %u\n", mode->NvRamAccessSize); 79 printf("ReceiveFilterMask = %x\n", mode->ReceiveFilterMask); 80 printf("ReceiveFilterSetting = %u\n", mode->ReceiveFilterSetting); 81 printf("MaxMCastFilterCount = %u\n", mode->MaxMCastFilterCount) [all...] |
| /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/ |
| FuzzerUtilPosix.cpp | 133 FILE *OpenProcessPipe(const char *Command, const char *Mode) { 134 return popen(Command, Mode);
|
| FuzzerIOPosix.cpp | 86 FILE* OpenFile(int Fd, const char* Mode) { 87 return fdopen(Fd, Mode);
|
| FuzzerUtilWindows.cpp | 151 FILE *OpenProcessPipe(const char *Command, const char *Mode) { 152 return _popen(Command, Mode);
|
| FuzzerIO.h | 73 FILE* OpenFile(int Fd, const char *Mode);
|
| FuzzerUtil.h | 60 FILE *OpenProcessPipe(const char *Command, const char *Mode);
|
| /src/sys/external/bsd/acpica/dist/compiler/ |
| aslfileio.c | 84 * Mode - Open mode for fopen 97 char *Mode) 105 File = fopen (Filename, Mode);
|
| /src/sys/external/bsd/acpica/dist/include/ |
| achware.h | 62 UINT32 Mode);
|
| /src/sys/external/bsd/gnu-efi/dist/inc/protocol/ |
| efidbg.h | 206 DEBUGPORT_16550_CONFIG_DATA *Mode;
|