Searched defs:Configure (Results 1 - 17 of 17) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Include/Protocol/
H A DEbcSimpleDebugger.h101 @retval EFI_SUCCESS Configure EBC debug.
119 EBC_DEBUGGER_CONFIGURE Configure; member in struct:_EFI_EBC_SIMPLE_DEBUGGER_PROTOCOL
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Network/Ip4ConfigDxe/
H A DIp4NvData.h40 UINT8 Configure; ///< NIC configure status member in struct:__anon11213
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Include/Protocol/
H A DArp.h178 the one given by Configure() if the entry to be
372 EFI_ARP_CONFIGURE Configure; member in struct:_EFI_ARP_PROTOCOL
H A DFtp4.h240 EFI_FTP4_PROTOCOL.Configure.
328 The Configure() function will configure the connected FTP session with the
330 be reset by calling Configure() with FtpConfigData set to NULL.
513 EFI_FTP4_CONFIGURE Configure; member in struct:_EFI_FTP4_PROTOCOL
H A DManagedNetwork.h360 EFI_MANAGED_NETWORK_CONFIGURE Configure; member in struct:_EFI_MANAGED_NETWORK_PROTOCOL
H A DUdp6.h328 The Configure() function is used to do the following:
334 This instance can be also reset by calling Configure() with UdpConfigData set to NULL.
338 With different parameters in UdpConfigData, Configure() can be used to bind this instance to specified
438 when DestinationAddress is configured as non-zero when doing Configure()
441 DestinationAddress is unspecified when doing Configure() for this
561 EFI_UDP6_CONFIGURE Configure; member in struct:_EFI_UDP6_PROTOCOL
H A DUdp4.h154 The Configure() function is used to do the following:
159 received by this instance. This instance can be also reset by calling Configure()
162 With different parameters in UdpConfigData, Configure() can be used to bind
425 EFI_UDP4_CONFIGURE Configure; member in struct:_EFI_UDP4_PROTOCOL
H A DDhcp4.h222 EFI_DHCP4_PROTOCOL.Configure().
302 /// ignored by the driver. OptionList can be freed after EFI_DHCP4_PROTOCOL.Configure()
444 The Configure() function is used to initialize, change, or reset the operational
457 The driver can transfer into these states by calling Configure() with a non-NULL
461 When Configure() is called successfully while Dhcp4CfgData is set to NULL, the
511 by EFI_DHCP4_PROTOCOL.Configure() will be called and the user can take this
526 state. EFI_DHCP4_PROTOCOL. Configure() needs to be called.
574 state. EFI_DHCP4_PROTOCOL.Configure() needs to
599 EFI_DHCP4_PROTOCOL.Configure() function to 0.0.0.0 when the driver is in
623 into the Dhcp4Stopped state. EFI_DHCP4_PROTOCOL.Configure() need
767 EFI_DHCP4_CONFIGURE Configure; member in struct:_EFI_DHCP4_PROTOCOL
[all...]
H A DDhcp6.h308 @param[in] Context Pointer to the context that is initialized by EFI_DHCP6_PROTOCOL.Configure().
349 /// can be freed after EFI_DHCP6_PROTOCOL.Configure() returns. Ignored if
381 /// buffer can be freed after EFI_DHCP6_PROTOCOL.Configure() returns.
436 The Configure() function is used to initialize or clean up the configuration data of the EFI
438 - When Dhcp6CfgData is not NULL and Configure() is called successfully, the
441 - When Dhcp6CfgData is NULL and Configure() is called successfully, the configuration
484 callback function set by EFI_DHCP6_PROTOCOL.Configure() will be called and the user can take
773 EFI_DHCP6_CONFIGURE Configure; member in struct:_EFI_DHCP6_PROTOCOL
H A DIp4.h294 The Configure() function is used to set, change, or reset the operational
301 filter settings with the Configure() function.
305 driver. While set to TRUE, Configure() will trigger the EFI_IP4_CONFIG_PROTOCOL
592 EFI_IP4_CONFIGURE Configure; member in struct:_EFI_IP4_PROTOCOL
H A DMtftp4.h315 EFI_MTFTP4_PROTOCOL.Configure() function are used.
517 EFI_MTFTP4_CONFIGURE Configure; member in struct:_EFI_MTFTP4_PROTOCOL
H A DMtftp6.h281 /// was set by the EFI_MTFTP6_PROTOCOL.Configure() function will be used.
286 /// that was set by the EFI_MTFTP6_PROTOCOL.Configure() function.
292 /// theEFI_MTFTP6_PROTOCOL.Configure() function will be used.
298 /// the EFI_MTFTP6_PROTOCOL.Configure() function will be used.
489 The Configure() function is used to set and change the configuration data for this EFI
491 Configure() with MtftpConfigData set to NULL. Whenever the instance is reset, any
535 default parameters that were set in the EFI_MTFTP6_PROTOCOL.Configure()
811 EFI_MTFTP6_CONFIGURE Configure; member in struct:_EFI_MTFTP6_PROTOCOL
H A DTcp4.h267 calling Configure() with NULL to reset it.
272 executing Configure().
474 - Configure() has been called with
555 EFI_TCP4_CONFIGURE Configure; member in struct:_EFI_TCP4_PROTOCOL
H A DTcp6.h512 The Configure() function does the following:
548 calling Configure() with NULL to reset it.
552 executing Configure().
848 EFI_TCP6_CONFIGURE Configure; member in struct:_EFI_TCP6_PROTOCOL
H A DIp6.h583 The Configure() function is used to set, change, or reset the operational parameters and filter
589 Configure() function.
804 non-zero when doing Configure() for this EFI IPv6 protocol instance.
806 when doing Configure() for this EFI IPv6 protocol instance.
938 EFI_IP6_CONFIGURE Configure; member in struct:_EFI_IP6_PROTOCOL
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Library/DxeUdpIoLib/
H A DDxeUdpIoLib.c563 a UDP instance) configures the UDP child by calling Configure function prototype.
569 @param[in] Configure The function to configure the created UDP child.
571 @param[in] Context The opaque parameter for the Configure funtion.
581 IN UDP_IO_CONFIG Configure,
589 ASSERT (Configure != NULL);
638 if (EFI_ERROR (Configure (UdpIo, Context))) {
680 if (EFI_ERROR (Configure (UdpIo, Context))) {
887 UdpIo->Protocol.Udp4->Configure (UdpIo->Protocol.Udp4, NULL);
894 UdpIo->Protocol.Udp6->Configure (UdpIo->Protocol.Udp6, NULL);
578 UdpIoCreateIo( IN EFI_HANDLE Controller, IN EFI_HANDLE ImageHandle, IN UDP_IO_CONFIG Configure, IN UINT8 UdpVersion, IN VOID *Context ) argument
/vbox/src/VBox/Devices/EFI/Firmware/OptionRomPkg/UndiRuntimeDxe/
H A DE100b.c507 Configure ( function
888 Configure (AdapterInfo);
3541 if ((ret_val = Configure (AdapterInfo)) != 0) {

Completed in 89 milliseconds