Home
last modified time | relevance | path

Searched refs:Interface (Results 1 – 21 of 21) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Tools/Network/
DSwitch.cs41 if(ifaces.Any(x => x.Interface == iface)) in AttachTo()
48 Interface = iface, in AttachTo()
67 var descriptor = ifaces.SingleOrDefault(x => x.Interface == iface); in DetachFrom()
88 var descriptor = ifaces.SingleOrDefault(x => x.Interface == iface); in EnablePromiscuousMode()
102 var descriptor = ifaces.SingleOrDefault(x => x.Interface == iface); in DisablePromiscuousMode()
149 … ? ifaces.Where(x => (x.PromiscuousMode && x.Interface != sender) || x.Interface == destIface) in ForwardToReceiver()
150 : ifaces.Where(x => x.Interface != sender); in ForwardToReceiver()
160 … this.Log(LogLevel.Noisy, "Forwarding frame to interface {0}", iface.Interface.MAC); in ForwardToReceiver()
164 iface.Interface.ReceiveFrame(frame.Clone()); in ForwardToReceiver()
168 … iface.Machine.HandleTimeDomainEvent(iface.Interface.ReceiveFrame, frame.Clone(), vts, () => in ForwardToReceiver()
[all …]
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/USBDeprecated/
DUSBCommunicationClass.cs76 Interface = 0x24, enumerator
179 base.Type = (DescriptorType) CommunicationClassDescriptorType.Interface; in HeaderFunctionalDescriptor()
200 base.Type = (DescriptorType) CommunicationClassDescriptorType.Interface; in UnionFunctionalDescriptor()
224 base.Type = (DescriptorType) CommunicationClassDescriptorType.Interface; in CountrySelectionFunctionalDescriptor()
DDescriptorType.cs17 Interface = 4, enumerator
DUSBPacket.cs15 Interface = 1, enumerator
DUSBEthernetControlModelDevicesSubclass.cs145 base.Type = (DescriptorType) CommunicationClassDescriptorType.Interface; in EthernetNetworkingFuncionalDescriptor()
DUSBDescriptor.cs220 Type = DescriptorType.Interface; in InterfaceUSBDescriptor()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/USB/MSC/
DInterface.cs13 public class Interface : USBInterface class
15 public Interface(IUSBDevice device, in Interface() method in Antmicro.Renode.Core.USB.MSC.Interface
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/USB/CDC/
DInterface.cs14 public class Interface : USBInterface class
16 public Interface(IUSBDevice device, in Interface() method in Antmicro.Renode.Core.USB.CDC.Interface
DFunctionalDescriptor.cs47 Interface = 0x24, enumerator
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/USB/
DPacketRecipient.cs12 Interface, enumerator
DDescriptorType.cs16 Interface = 4, enumerator
DUSBInterface.cs22 string description = null) : base(9, (byte)DescriptorType.Interface) in USBInterface()
DUSBDeviceCore.cs120 case PacketRecipient.Interface: in HandleSetupPacket()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/
DConvertibleAttribute.cs11 [AttributeUsage(AttributeTargets.Interface | AttributeTargets.Class | AttributeTargets.Struct)]
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/UserInterface/
DIconAttribute.cs12 [AttributeUsage(AttributeTargets.Interface | AttributeTargets.Class)]
DControllerMaskAttribute.cs12 [AttributeUsage(AttributeTargets.Interface | AttributeTargets.Class)]
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/USB/HID/
DInterface.cs15 public class Interface : USBInterface class
17 public Interface(IUSBDevice device, in Interface() method in Antmicro.Renode.Core.USB.HID.Interface
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/USB/
DUSBMouse.cs58 c.WithInterface(new Core.USB.HID.Interface(this, 0, in USBMouse()
DUSBKeyboard.cs118 c.WithInterface(new Core.USB.HID.Interface(this, 0, in USBKeyboard()
DUSBPendrive.cs59 .WithConfiguration(configure: c => c.WithInterface<Core.USB.MSC.Interface>( in USBPendrive()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Utilities/USBIP/
DUSBIPServer.cs387 while(recursiveBytes[currentOffset + 1] != (byte)DescriptorType.Interface) in ReadConfigurationDescriptor()