HomeSort by relevance Sort by last modified time
    Searched defs:IpInstance (Results 1 - 11 of 11) sorted by null

  /device/linaro/bootloader/edk2/NetworkPkg/Ip6Dxe/
Ip6Option.c 201 IP6_PROTOCOL *IpInstance;
220 IpInstance = NET_LIST_USER_STRUCT_S (Entry, IP6_PROTOCOL, Link, IP6_PROTOCOL_SIGNATURE);
221 if (IpInstance->State == IP6_STATE_CONFIGED) {
222 if (IpInstance->ConfigData.DefaultProtocol == NextHeader) {
Ip6Driver.c 639 IP6_PROTOCOL *IpInstance;
648 IpInstance = NET_LIST_USER_STRUCT_S (Entry, IP6_PROTOCOL, Link, IP6_PROTOCOL_SIGNATURE);
653 if (!NetIsInHandleBuffer (IpInstance->Handle, NumberOfChildren, ChildHandleBuffer)) {
657 return ServiceBinding->DestroyChild (ServiceBinding, IpInstance->Handle);
786 IP6_PROTOCOL *IpInstance;
801 IpInstance = AllocatePool (sizeof (IP6_PROTOCOL));
803 if (IpInstance == NULL) {
807 Ip6InitProtocol (IpSb, IpInstance);
815 &IpInstance->Ip6Proto,
822 IpInstance->Handle = *ChildHandle;
    [all...]
Ip6If.h 33 // IpInstance can be NULL which means that it is the IP6 driver
36 // informational packets. IpInstance is used as a tag in
51 // receive request is send to MNP. IpInstance is always NULL.
69 IP6_PROTOCOL *IpInstance;
161 Free the interface used by IpInstance. All the IP instance with
164 Because the IpInstance is optional, the caller must remove
165 IpInstance from the interface's instance list.
167 @param[in] Interface The interface used by the IpInstance.
168 @param[in] IpInstance The IP instance that free the interface. NULL if
175 IN IP6_PROTOCOL *IpInstance OPTIONAL
    [all...]
Ip6Impl.c 59 IP6_PROTOCOL *IpInstance;
71 IpInstance = IP6_INSTANCE_FROM_PROTOCOL (This);
72 IpSb = IpInstance->Service;
73 IpIf = IpInstance->Interface;
84 Ip6ModeData->IsStarted = (BOOLEAN) (IpInstance->State == IP6_STATE_CONFIGED);
86 CopyMem (&Ip6ModeData->ConfigData, &IpInstance->ConfigData, sizeof (EFI_IP6_CONFIG_DATA));
92 Ip6ModeData->GroupCount = IpInstance->GroupCount;
159 if (IpInstance->GroupCount != 0) {
161 IpInstance->GroupCount * sizeof (EFI_IPv6_ADDRESS),
162 IpInstance->GroupList
    [all...]
Ip6Impl.h 90 #define IP6_NO_MAPPING(IpInstance) (!(IpInstance)->Interface->Configured)
105 IP6_PROTOCOL *IpInstance;
129 IP6_PROTOCOL *IpInstance;
302 @param[in] IpInstance The IP6 child.
314 IN IP6_PROTOCOL *IpInstance,
322 @param[in, out] IpInstance The IP6 child instance.
328 IN OUT IP6_PROTOCOL *IpInstance
334 @param[in, out] IpInstance The IP6 child to clean up.
342 IN OUT IP6_PROTOCOL *IpInstance
    [all...]
Ip6Input.c     [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Ip4Dxe/
Ip4Driver.c 465 IP4_PROTOCOL *IpInstance;
474 IpInstance = NET_LIST_USER_STRUCT_S (Entry, IP4_PROTOCOL, Link, IP4_PROTOCOL_SIGNATURE);
479 if (!NetIsInHandleBuffer (IpInstance->Handle, NumberOfChildren, ChildHandleBuffer)) {
483 return ServiceBinding->DestroyChild (ServiceBinding, IpInstance->Handle);
765 IP4_PROTOCOL *IpInstance;
775 IpInstance = AllocatePool (sizeof (IP4_PROTOCOL));
777 if (IpInstance == NULL) {
781 Ip4InitProtocol (IpSb, IpInstance);
789 &IpInstance->Ip4Proto,
797 IpInstance->Handle = *ChildHandle;
    [all...]
Ip4If.h 32 @param[in] IpInstance The instance that sent or received the packet.
33 IpInstance can be NULL which means that it is the IP4 driver
36 responses, or IGMP packets. IpInstance is used as a tag in
49 IN IP4_PROTOCOL *IpInstance OPTIONAL,
59 /// receive request is send to MNP. IpInstance is always NULL.
66 IP4_PROTOCOL *IpInstance;
83 IP4_PROTOCOL *IpInstance;
231 Free the interface used by IpInstance. All the IP instance with
234 Because the IpInstance is optional, the caller must remove
235 IpInstance from the interface's instance list itself.
    [all...]
Ip4Impl.c 376 IP4_PROTOCOL *IpInstance;
388 IpInstance = IP4_INSTANCE_FROM_PROTOCOL (This);
389 IpSb = IpInstance->Service;
396 Ip4ModeData->IsStarted = (BOOLEAN)(IpInstance->State == IP4_STATE_CONFIGED);
397 CopyMem (&Ip4ModeData->ConfigData, &IpInstance->ConfigData, sizeof (Ip4ModeData->ConfigData));
400 Ip4ModeData->GroupCount = IpInstance->GroupCount;
401 Ip4ModeData->GroupTable = (EFI_IPv4_ADDRESS *) IpInstance->Groups;
420 Ip = HTONL (IpInstance->Interface->Ip);
423 Ip = HTONL (IpInstance->Interface->SubnetMask);
426 Ip4ModeData->IsConfigured = IpInstance->Interface->Configured;
    [all...]
Ip4Impl.h 94 IP4_PROTOCOL *IpInstance;
124 IP4_PROTOCOL *IpInstance;
238 #define IP4_NO_MAPPING(IpInstance) (!(IpInstance)->Interface->Configured)
270 @param IpInstance The IP4 child instance.
276 IN OUT IP4_PROTOCOL *IpInstance
282 @param[in] IpInstance The IP4 child to clean up.
290 IN IP4_PROTOCOL *IpInstance
296 @param[in] IpInstance The IP4 child.
308 IN IP4_PROTOCOL *IpInstance,
    [all...]
Ip4Input.c 964 @param[in] IpInstance The IP child to check
974 IN IP4_PROTOCOL *IpInstance,
985 Config = &IpInstance->ConfigData;
1047 if (!IpInstance->ConfigData.UseDefaultAddress && (IpInstance->Interface->Ip == 0)) {
1051 for (Index = 0; Index < IpInstance->GroupCount; Index++) {
1052 if (IpInstance->Groups[Index] == HTONL (Head->Dst)) {
1057 return (BOOLEAN)(Index < IpInstance->GroupCount);
1069 @param[in] IpInstance The IP4 child to enqueue the packet to
1081 IN IP4_PROTOCOL *IpInstance,
    [all...]

Completed in 247 milliseconds