Lines Matching refs:This

4 This program and the accompanying materials
32 UDPv4 Protocol instance into user-supplied buffers. This function is used
36 @param[in] This Pointer to the EFI_UDP4_PROTOCOL instance.
45 @retval EFI_INVALID_PARAMETER This is NULL.
51 IN EFI_UDP4_PROTOCOL *This,
63 if (This == NULL) {
67 Instance = UDP4_INSTANCE_DATA_FROM_THIS (This);
104 received by this instance. This instance can be also reset by calling Configure()
110 @param[in] This Pointer to the EFI_UDP4_PROTOCOL instance.
131 IN EFI_UDP4_PROTOCOL *This,
146 if (This == NULL) {
150 Instance = UDP4_INSTANCE_DATA_FROM_THIS (This);
301 @param[in] This Pointer to the EFI_UDP4_PROTOCOL instance.
312 - This is NULL.
326 IN EFI_UDP4_PROTOCOL *This,
337 if ((This == NULL) || (JoinFlag && (MulticastAddress == NULL))) {
350 Instance = UDP4_INSTANCE_DATA_FROM_THIS (This);
376 // the matched instance. This copy of multicast IPs is used to avoid receive
416 @param[in] This Pointer to the EFI_UDP4_PROTOCOL instance.
429 @retval EFI_NOT_FOUND This route is not in the routing table.
436 IN EFI_UDP4_PROTOCOL *This,
446 if (This == NULL) {
450 Instance = UDP4_INSTANCE_DATA_FROM_THIS (This);
479 @param[in] This Pointer to the EFI_UDP4_PROTOCOL instance.
484 @retval EFI_NOT_STARTED This EFI UDPv4 Protocol instance has not been started.
502 IN EFI_UDP4_PROTOCOL *This,
521 if ((This == NULL) || (Token == NULL)) {
525 Instance = UDP4_INSTANCE_DATA_FROM_THIS (This);
702 This function is always asynchronous.
710 @param[in] This Pointer to the EFI_UDP4_PROTOCOL instance.
715 @retval EFI_NOT_STARTED This EFI UDPv4 Protocol instance has not been started.
730 IN EFI_UDP4_PROTOCOL *This,
738 if ((This == NULL) || (Token == NULL) || (Token->Event == NULL)) {
742 Instance = UDP4_INSTANCE_DATA_FROM_THIS (This);
808 @param[in] This Pointer to the EFI_UDP4_PROTOCOL instance.
817 @retval EFI_INVALID_PARAMETER This is NULL.
818 @retval EFI_NOT_STARTED This instance has not been started.
829 IN EFI_UDP4_PROTOCOL *This,
837 if (This == NULL) {
841 Instance = UDP4_INSTANCE_DATA_FROM_THIS (This);
881 @param[in] This Pointer to the EFI_UDP4_PROTOCOL instance.
884 @retval EFI_INVALID_PARAMETER This is NULL.
892 IN EFI_UDP4_PROTOCOL *This
898 if (This == NULL) {
902 Instance = UDP4_INSTANCE_DATA_FROM_THIS (This);