Home | History | Annotate | Download | only in HttpDxe

Lines Matching refs:Protocol

2   The header files of the driver binding and service binding protocol for HttpDxe driver.

39 #include <Protocol/DriverBinding.h>
40 #include <Protocol/ServiceBinding.h>
41 #include <Protocol/ComponentName2.h>
42 #include <Protocol/ComponentName.h>
47 #include <Protocol/HttpUtilities.h>
48 #include <Protocol/Tcp4.h>
49 #include <Protocol/Tcp6.h>
50 #include <Protocol/Dns4.h>
51 #include <Protocol/Dns6.h>
52 #include <Protocol/Ip4Config2.h>
53 #include <Protocol/Ip6Config.h>
54 #include <Protocol/Tls.h>
55 #include <Protocol/TlsConfig.h>
61 #include <Protocol/Http.h>
73 // Protocol instances
112 Because ControllerHandle may have been previously started by the same driver, if a protocol is
118 must support a protocol interface that supplies
163 must support a protocol interface that supplies
207 support a bus specific I/O protocol for the driver
240 Because ControllerHandle may have been previously started by the same driver, if a protocol is
246 must support a protocol interface that supplies
291 must support a protocol interface that supplies
336 support a bus specific I/O protocol for the driver
356 Creates a child handle and installs a protocol.
358 The CreateChild() function installs a protocol on ChildHandle.
360 If ChildHandle is not a pointer to NULL, then the protocol installs on the existing ChildHandle.
365 then the protocol is added to the existing UEFI handle.
367 @retval EFI_SUCCES The protocol was added to ChildHandle.
382 Destroys a child handle with a protocol installed on it.
384 The DestroyChild() function does the opposite of CreateChild(). It removes a protocol
385 that was installed by CreateChild() from ChildHandle. If the removed protocol is the
386 last protocol on ChildHandle, then ChildHandle is destroyed.
391 @retval EFI_SUCCES The protocol was removed from ChildHandle.
392 @retval EFI_UNSUPPORTED ChildHandle does not support the protocol that is being removed.