Lines Matching refs:This

5 This program and the accompanying materials
25 @param[in] This Pointer to the EFI_MANAGED_NETWORK_PROTOCOL instance.
29 @param[out] SnpModeData Pointer to storage for SNP operational parameters. This
34 @retval EFI_INVALID_PARAMETER This is NULL.
37 @retval EFI_NOT_STARTED This MNP child driver instance has not been
46 IN EFI_MANAGED_NETWORK_PROTOCOL *This,
57 if (This == NULL) {
61 Instance = MNP_INSTANCE_DATA_FROM_THIS (This);
120 @param[in] This Pointer to the EFI_MANAGED_NETWORK_PROTOCOL instance.
131 * This is NULL.
153 IN EFI_MANAGED_NETWORK_PROTOCOL *This,
161 if ((This == NULL) ||
169 Instance = MNP_INSTANCE_DATA_FROM_THIS (This);
194 Translates an IP multicast address to a hardware (MAC) multicast address. This
198 (MAC) multicast address. This function may be implemented by calling the
202 @param[in] This Pointer to the EFI_MANAGED_NETWORK_PROTOCOL instance.
211 * This is NULL.
216 @retval EFI_NOT_STARTED This MNP child driver instance has not been
226 IN EFI_MANAGED_NETWORK_PROTOCOL *This,
238 if ((This == NULL) || (IpAddress == NULL) || (MacAddress == NULL)) {
253 Instance = MNP_INSTANCE_DATA_FROM_THIS (This);
314 Enables and disables receive filters for multicast address. This function may
322 @param[in] This Pointer to the EFI_MANAGED_NETWORK_PROTOCOL instance.
330 * This is NULL.
336 @retval EFI_NOT_STARTED This MNP child driver instance has not been
352 IN EFI_MANAGED_NETWORK_PROTOCOL *This,
366 if (This == NULL || (JoinFlag && (MacAddress == NULL))) {
368 // This is NULL, or it's a join operation but MacAddress is NULL.
373 Instance = MNP_INSTANCE_DATA_FROM_THIS (This);
462 queue. This function is always asynchronous.
473 @param[in] This Pointer to the EFI_MANAGED_NETWORK_PROTOCOL instance.
479 @retval EFI_NOT_STARTED This MNP child driver instance has not been
483 * This is NULL.
516 IN EFI_MANAGED_NETWORK_PROTOCOL *This,
527 if ((This == NULL) || (Token == NULL)) {
531 Instance = MNP_INSTANCE_DATA_FROM_THIS (This);
573 queue. This function is always asynchronous.
579 @param[in] This Pointer to the EFI_MANAGED_NETWORK_PROTOCOL instance.
586 @retval EFI_NOT_STARTED This MNP child driver instance has not been
590 * This is NULL.
607 IN EFI_MANAGED_NETWORK_PROTOCOL *This,
615 if ((This == NULL) || (Token == NULL) || (Token->Event == NULL)) {
619 Instance = MNP_INSTANCE_DATA_FROM_THIS (This);
668 @param[in] This Pointer to the EFI_MANAGED_NETWORK_PROTOCOL instance.
678 @retval EFI_NOT_STARTED This MNP child driver instance has not been
680 @retval EFI_INVALID_PARAMETER This is NULL.
690 IN EFI_MANAGED_NETWORK_PROTOCOL *This,
698 if (This == NULL) {
702 Instance = MNP_INSTANCE_DATA_FROM_THIS (This);
742 @param[in] This Pointer to the EFI_MANAGED_NETWORK_PROTOCOL instance.
745 @retval EFI_NOT_STARTED This MNP child driver instance has not been
759 IN EFI_MANAGED_NETWORK_PROTOCOL *This
766 if (This == NULL) {
770 Instance = MNP_INSTANCE_DATA_FROM_THIS (This);