Searched defs:Command (Results 1 - 25 of 99) sorted by relevance

1234

/device/linaro/bootloader/edk2/MdeModulePkg/Library/BaseIpmiLibNull/
H A DBaseIpmiLibNull.c24 @param[in] Command IPMI Command.
25 @param[in] RequestData Command Request Data.
26 @param[in] RequestDataSize Size of Command Request Data.
27 @param[out] ResponseData Command Response Data. The completion code is the first byte of response data.
28 @param[in, out] ResponseDataSize Size of Command Response Data.
42 IN UINT8 Command,
40 IpmiSubmitCommand( IN UINT8 NetFunction, IN UINT8 Command, IN UINT8 *RequestData, IN UINT32 RequestDataSize, OUT UINT8 *ResponseData, IN OUT UINT32 *ResponseDataSize ) argument
/device/linaro/bootloader/edk2/MdeModulePkg/Library/DxeIpmiLibIpmiProtocol/
H A DDxeIpmiLibIpmiProtocol.c26 @param[in] Command IPMI Command.
27 @param[in] RequestData Command Request Data.
28 @param[in] RequestDataSize Size of Command Request Data.
29 @param[out] ResponseData Command Response Data. The completion code is the first byte of response data.
30 @param[in, out] ResponseDataSize Size of Command Response Data.
44 IN UINT8 Command,
71 Command,
42 IpmiSubmitCommand( IN UINT8 NetFunction, IN UINT8 Command, IN UINT8 *RequestData, IN UINT32 RequestDataSize, OUT UINT8 *ResponseData, IN OUT UINT32 *ResponseDataSize ) argument
/device/linaro/bootloader/edk2/MdeModulePkg/Library/PeiIpmiLibIpmiPpi/
H A DPeiIpmiLibIpmiPpi.c26 @param[in] Command IPMI Command.
27 @param[in] RequestData Command Request Data.
28 @param[in] RequestDataSize Size of Command Request Data.
29 @param[out] ResponseData Command Response Data. The completion code is the first byte of response data.
30 @param[in, out] ResponseDataSize Size of Command Response Data.
44 IN UINT8 Command,
71 Command,
42 IpmiSubmitCommand( IN UINT8 NetFunction, IN UINT8 Command, IN UINT8 *RequestData, IN UINT32 RequestDataSize, OUT UINT8 *ResponseData, IN OUT UINT32 *ResponseDataSize ) argument
/device/linaro/bootloader/edk2/MdeModulePkg/Library/SmmIpmiLibSmmIpmiProtocol/
H A DSmmIpmiLibSmmIpmiProtocol.c27 @param[in] Command IPMI Command.
28 @param[in] RequestData Command Request Data.
29 @param[in] RequestDataSize Size of Command Request Data.
30 @param[out] ResponseData Command Response Data. The completion code is the first byte of response data.
31 @param[in, out] ResponseDataSize Size of Command Response Data.
45 IN UINT8 Command,
72 Command,
43 IpmiSubmitCommand( IN UINT8 NetFunction, IN UINT8 Command, IN UINT8 *RequestData, IN UINT32 RequestDataSize, OUT UINT8 *ResponseData, IN OUT UINT32 *ResponseDataSize ) argument
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/command/
H A Dclean.py10 from distutils.core import Command namespace
14 class clean(Command):
H A Dinstall_data.py11 from distutils.core import Command namespace
14 class install_data(Command):
H A Dinstall_egg_info.py7 from distutils.cmd import Command namespace
11 class install_egg_info(Command):
H A Dinstall_headers.py8 from distutils.core import Command namespace
12 class install_headers(Command):
H A Dinstall_scripts.py11 from distutils.core import Command namespace
15 class install_scripts (Command):
H A Dbdist.py11 from distutils.core import Command namespace
27 class bdist(Command):
H A Dbdist_dumb.py14 from distutils.core import Command namespace
19 class bdist_dumb (Command):
H A Dbuild.py10 from distutils.core import Command namespace
17 class build(Command):
H A Dbuild_clib.py20 from distutils.core import Command namespace
30 class build_clib(Command):
H A Dbuild_scripts.py9 from distutils.core import Command namespace
17 class build_scripts (Command):
H A Dbdist_rpm.py12 from distutils.core import Command namespace
19 class bdist_rpm (Command):
H A Dbdist_wininst.py14 from distutils.core import Command namespace
20 class bdist_wininst (Command):
H A Dcheck.py7 from distutils.core import Command namespace
34 class check(Command):
60 return Command.warn(self, msg)
H A Dinstall_lib.py11 from distutils.core import Command namespace
21 class install_lib(Command):
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/
H A Dconfig.py9 from distutils.cmd import Command namespace
21 class PyPIRCCommand(Command):
H A Dcore.py5 indirectly provides the Distribution and Command classes, although they are
21 from distutils.cmd import Command namespace
/device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/PciBusDxe/
H A DPciCommand.c21 @param Command Operator command.
32 IN UINT16 Command,
61 OldCommand = (UINT16) (OldCommand | Command);
63 OldCommand = (UINT16) (OldCommand & ~(Command));
65 OldCommand = Command;
30 PciOperateRegister( IN PCI_IO_DEVICE *PciIoDevice, IN UINT16 Command, IN UINT8 Offset, IN UINT8 Operation, OUT UINT16 *PtrCommand ) argument
/device/linaro/bootloader/edk2/QuarkSocPkg/QuarkNorthCluster/QNCInit/Dxe/
H A DQNCSmbusExec.c28 @param Command This command is transmitted by the SMBus host controller to the
61 IN EFI_SMBUS_DEVICE_COMMAND Command,
80 if (PecCheck || Command != 0) {
86 if (Command != 0) {
134 @param Command This command is transmitted by the SMBus host controller to the
175 IN EFI_SMBUS_DEVICE_COMMAND Command,
189 Command,
198 SmbusAddress = SMBUS_LIB_ADDRESS (SlaveAddress.SmbusDeviceAddress, Command, *Length, PecCheck);
59 QncSmbusExecCheckParameters( IN EFI_SMBUS_DEVICE_ADDRESS SlaveAddress, IN EFI_SMBUS_DEVICE_COMMAND Command, IN EFI_SMBUS_OPERATION Operation, IN BOOLEAN PecCheck, IN OUT UINTN *Length, IN OUT VOID *Buffer ) argument
173 Execute( IN EFI_SMBUS_DEVICE_ADDRESS SlaveAddress, IN EFI_SMBUS_DEVICE_COMMAND Command, IN EFI_SMBUS_OPERATION Operation, IN BOOLEAN PecCheck, IN OUT UINTN *Length, IN OUT VOID *Buffer ) argument
/device/linaro/bootloader/edk2/EmbeddedPkg/Include/Protocol/
H A DEblAddCommand.h43 EBL_COMMMAND Command; member in struct:__anon5097
/device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/UhciDxe/
H A DUhciReg.c270 UINT16 Command; local
272 Command = 0;
279 &Command
/device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellLevel3CommandsLib/
H A DAlias.c34 CONST CHAR16 *Command; local
57 Command = gEfiShellProtocol->GetAlias(Alias, &Volatile);
61 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_ALIAS_OUTPUT), gShellLevel3HiiHandle, !Volatile?L' ':L'*', Alias, Command);

Completed in 1139 milliseconds

1234