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 667 IP6_PROTOCOL *IpInstance;
676 IpInstance = NET_LIST_USER_STRUCT_S (Entry, IP6_PROTOCOL, Link, IP6_PROTOCOL_SIGNATURE);
681 if (!NetIsInHandleBuffer (IpInstance->Handle, NumberOfChildren, ChildHandleBuffer)) {
685 return ServiceBinding->DestroyChild (ServiceBinding, IpInstance->Handle);
812 IP6_PROTOCOL *IpInstance;
827 IpInstance = AllocatePool (sizeof (IP6_PROTOCOL));
829 if (IpInstance == NULL) {
833 Ip6InitProtocol (IpSb, IpInstance);
841 &IpInstance->Ip6Proto,
848 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 92 #define IP6_NO_MAPPING(IpInstance) (!(IpInstance)->Interface->Configured)
107 IP6_PROTOCOL *IpInstance;
131 IP6_PROTOCOL *IpInstance;
304 @param[in] IpInstance The IP6 child.
316 IN IP6_PROTOCOL *IpInstance,
324 @param[in, out] IpInstance The IP6 child instance.
330 IN OUT IP6_PROTOCOL *IpInstance
336 @param[in, out] IpInstance The IP6 child to clean up.
344 IN OUT IP6_PROTOCOL *IpInstance
    [all...]
Ip6Input.c     [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Ip4Dxe/
Ip4Driver.c 478 IP4_PROTOCOL *IpInstance;
487 IpInstance = NET_LIST_USER_STRUCT_S (Entry, IP4_PROTOCOL, Link, IP4_PROTOCOL_SIGNATURE);
492 if (!NetIsInHandleBuffer (IpInstance->Handle, NumberOfChildren, ChildHandleBuffer)) {
496 return ServiceBinding->DestroyChild (ServiceBinding, IpInstance->Handle);
816 IP4_PROTOCOL *IpInstance;
826 IpInstance = AllocatePool (sizeof (IP4_PROTOCOL));
828 if (IpInstance == NULL) {
832 Ip4InitProtocol (IpSb, IpInstance);
840 &IpInstance->Ip4Proto,
848 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 96 IP4_PROTOCOL *IpInstance;
126 IP4_PROTOCOL *IpInstance;
240 #define IP4_NO_MAPPING(IpInstance) (!(IpInstance)->Interface->Configured)
272 @param IpInstance The IP4 child instance.
278 IN OUT IP4_PROTOCOL *IpInstance
284 @param[in] IpInstance The IP4 child to clean up.
292 IN IP4_PROTOCOL *IpInstance
298 @param[in] IpInstance The IP4 child.
310 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 80 milliseconds