Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/USB/
DDescriptorProvider.cs18 subdescriptors = new List<IEnumerable<IProvidesDescriptor>>(); in DescriptorProvider()
41 foreach(var sds in subdescriptors) in GetDescriptor()
54 …public int RecursiveDescriptorLength => DescriptorLength + subdescriptors.Sum(sds => sds.Sum(sd =>…
60subdescriptors.Insert(index ?? subdescriptors.Count , new IProvidesDescriptor[] { subdescriptor }); in RegisterSubdescriptor()
63 …protected void RegisterSubdescriptors(IEnumerable<IProvidesDescriptor> subdescriptors, int? index … in RegisterSubdescriptors() argument
65 this.subdescriptors.Insert(index ?? this.subdescriptors.Count , subdescriptors); in RegisterSubdescriptors()
68 private readonly List<IEnumerable<IProvidesDescriptor>> subdescriptors; field in Antmicro.Renode.Core.USB.DescriptorProvider