Searched defs:JoinFlag (Results 1 - 7 of 7) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Network/MnpDxe/
H A DMnpMain.c319 Management Protocol (IGMP) packets. If JoinFlag is FALSE and MacAddress is
323 @param[in] JoinFlag Set to TRUE to join this multicast group.
331 * JoinFlag is TRUE and MacAddress is NULL.
353 IN BOOLEAN JoinFlag,
366 if (This == NULL || (JoinFlag && (MacAddress == NULL))) {
422 if (JoinFlag && AddressExist) {
429 if (!JoinFlag && !AddressExist) {
450 Status = MnpGroupOp (Instance, JoinFlag, MacAddress, GroupCtrlBlk);
351 MnpGroups( IN EFI_MANAGED_NETWORK_PROTOCOL *This, IN BOOLEAN JoinFlag, IN EFI_MAC_ADDRESS *MacAddress OPTIONAL ) argument
H A DMnpConfig.c1607 @param[in] JoinFlag Set to TRUE to join a group. Set to TRUE to
1610 @param[in] CtrlBlk Pointer to the group control block if JoinFlag
1621 IN BOOLEAN JoinFlag,
1641 if (JoinFlag) {
1619 MnpGroupOp( IN OUT MNP_INSTANCE_DATA *Instance, IN BOOLEAN JoinFlag, IN EFI_MAC_ADDRESS *MacAddress OPTIONAL, IN MNP_GROUP_CONTROL_BLOCK *CtrlBlk OPTIONAL ) argument
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Network/Udp4Dxe/
H A DUdp4Main.c298 filtering. If the JoinFlag is FALSE and the MulticastAddress is NULL, then all
302 @param[in] JoinFlag Set to TRUE to join a multicast group. Set to FALSE to leave one
313 - JoinFlag is TRUE and MulticastAddress is NULL.
314 - JoinFlag is TRUE and *MulticastAddress is not
317 JoinFlag is TRUE).
318 @retval EFI_NOT_FOUND The group address is not in the group table (when JoinFlag is
327 IN BOOLEAN JoinFlag,
337 if ((This == NULL) || (JoinFlag && (MulticastAddress == NULL))) {
342 if (JoinFlag) {
367 Status = Ip->Groups (Ip, JoinFlag, MulticastAddres
325 Udp4Groups( IN EFI_UDP4_PROTOCOL *This, IN BOOLEAN JoinFlag, IN EFI_IPv4_ADDRESS *MulticastAddress OPTIONAL ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/Udp6Dxe/
H A DUdp6Main.c302 @param[in] JoinFlag Set to TRUE to join a multicast group. Set to
313 JoinFlag is TRUE and MulticastAddress is NULL.
314 JoinFlag is TRUE and *MulticastAddress is not a
317 (when JoinFlag is TRUE).
319 JoinFlag is FALSE).
327 IN BOOLEAN JoinFlag,
337 if ((This == NULL) || (JoinFlag && (MulticastAddress == NULL))) {
343 if (JoinFlag) {
366 Status = Ip->Groups (Ip, JoinFlag, MulticastAddress);
378 if (JoinFlag) {
325 Udp6Groups( IN EFI_UDP6_PROTOCOL *This, IN BOOLEAN JoinFlag, IN EFI_IPv6_ADDRESS *MulticastAddress OPTIONAL ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/Ip6Dxe/
H A DIp6Impl.c725 If JoinFlag is FALSE and GroupAddress is NULL, all joined groups will be left.
728 @param[in] JoinFlag Set to TRUE to join the multicast group session, and FALSE to leave.
735 - JoinFlag is TRUE and GroupAddress is NULL.
744 JoinFlag is TRUE).
745 @retval EFI_NOT_FOUND The group address is not in the group table (when JoinFlag is FALSE).
753 IN BOOLEAN JoinFlag,
762 if ((This == NULL) || (JoinFlag && GroupAddress == NULL)) {
784 Status = Ip6Groups (IpInstance, JoinFlag, GroupAddress);
751 EfiIp6Groups( IN EFI_IP6_PROTOCOL *This, IN BOOLEAN JoinFlag, IN EFI_IPv6_ADDRESS *GroupAddress OPTIONAL ) argument
H A DIp6Mld.c607 @param[in] JoinFlag TRUE to join the group, otherwise leave it.
621 IN BOOLEAN JoinFlag,
632 if (JoinFlag) {
619 Ip6Groups( IN IP6_PROTOCOL *IpInstance, IN BOOLEAN JoinFlag, IN EFI_IPv6_ADDRESS *GroupAddress OPTIONAL ) argument
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Network/Ip4Dxe/
H A DIp4Impl.c102 If JoinFlag is FALSE and GroupAddress is NULL, all joined groups will be left.
105 @param[in] JoinFlag Set to TRUE to join the multicast group session and FALSE to leave.
111 - JoinFlag is TRUE and GroupAddress is NULL.
120 JoinFlag is TRUE).
121 @retval EFI_NOT_FOUND The group address is not in the group table (when JoinFlag is FALSE).
129 IN BOOLEAN JoinFlag,
1292 @param[in] JoinFlag TRUE to join the group, otherwise leave it
1305 IN BOOLEAN JoinFlag,
1318 if (JoinFlag) {
1320 // When JoinFlag i
1303 Ip4Groups( IN IP4_PROTOCOL *IpInstance, IN BOOLEAN JoinFlag, IN EFI_IPv4_ADDRESS *GroupAddress OPTIONAL ) argument
1417 EfiIp4Groups( IN EFI_IP4_PROTOCOL *This, IN BOOLEAN JoinFlag, IN EFI_IPv4_ADDRESS *GroupAddress OPTIONAL ) argument
[all...]

Completed in 50 milliseconds