Lines Matching refs:This

6   This program and the accompanying materials
437 @param[in] This Protocol instance pointer.
442 @retval EFI_SUCCESS This driver supports this device.
443 @retval EFI_ALREADY_STARTED This driver is already running on this device.
444 @retval other This driver does not support this device.
450 IN EFI_DRIVER_BINDING_PROTOCOL *This,
465 This->DriverBindingHandle,
477 This->DriverBindingHandle,
497 This->DriverBindingHandle,
509 This->DriverBindingHandle,
526 @param[in] This Protocol instance pointer.
540 IN EFI_DRIVER_BINDING_PROTOCOL *This,
548 Tcp4Status = TcpCreateService (ControllerHandle, This->DriverBindingHandle, IP_VERSION_4);
553 Tcp6Status = TcpCreateService (ControllerHandle, This->DriverBindingHandle, IP_VERSION_6);
570 @param[in] This A pointer to the EFI_DRIVER_BINDING_PROTOCOL instance.
585 IN EFI_DRIVER_BINDING_PROTOCOL *This,
596 This->DriverBindingHandle,
603 This->DriverBindingHandle,
618 @param[in] This Pointer to the socket just created
621 @retval EFI_SUCCESS This protocol installed successfully.
627 IN SOCKET *This,
636 if (This->IpVersion == IP_VERSION_4) {
642 TcpServiceData = ((TCP_PROTO_DATA *) This->ProtoReserved)->TcpService;
652 This->SockHandle,
665 (VOID **) &This->ParentDevicePath,
667 This->SockHandle,
675 This->SockHandle
681 InsertTailList (&TcpServiceData->SocketList, &This->Link);
690 @param[in] This The TCP socket to be destroyed.
696 IN SOCKET *This,
703 if (This->IpVersion == IP_VERSION_4) {
709 TcpServiceData = ((TCP_PROTO_DATA *) This->ProtoReserved)->TcpService;
714 RemoveEntryList (&This->Link);
723 This->SockHandle
733 This->SockHandle
744 @param[in] This Pointer to the EFI_SERVICE_BINDING_PROTOCOL instance.
760 IN EFI_SERVICE_BINDING_PROTOCOL *This,
770 if (NULL == This || NULL == ChildHandle) {
777 TcpServiceData = TCP_SERVICE_FROM_THIS (This);
821 @param This Pointer to the EFI_SERVICE_BINDING_PROTOCOL instance.
835 IN EFI_SERVICE_BINDING_PROTOCOL *This,
844 if (NULL == This || NULL == ChildHandle) {