Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/UserInterface/Commands/
DLogLevelCommand.cs67 …3L)] DecimalIntegerToken level, LiteralToken emulationElementOrBackendName, BooleanToken recursive) in Run() argument
69 … RunInner(writer, (LogLevel)level.Value, emulationElementOrBackendName.Value, recursive.Value); in Run()
73 … 3L)] DecimalIntegerToken level, StringToken emulationElementOrBackendName, BooleanToken recursive) in Run() argument
75 … RunInner(writer, (LogLevel)level.Value, emulationElementOrBackendName.Value, recursive.Value); in Run()
91 …", "Error")] StringToken level, LiteralToken emulationElementOrBackendName, BooleanToken recursive) in Run() argument
93 …unInner(writer, LogLevel.Parse(level.Value), emulationElementOrBackendName.Value, recursive.Value); in Run()
97 …g", "Error")] StringToken level, StringToken emulationElementOrBackendName, BooleanToken recursive) in Run() argument
99 …unInner(writer, LogLevel.Parse(level.Value), emulationElementOrBackendName.Value, recursive.Value); in Run()
115 …erToken level, LiteralToken backendName, LiteralToken emulationElementName, BooleanToken recursive) in Run() argument
117 …ner(writer, (LogLevel)level.Value, backendName.Value, emulationElementName.Value, recursive.Value); in Run()
[all …]
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/USB/
DDescriptorProvider.cs26 public BitStream GetDescriptor(bool recursive, BitStream buffer = null) in GetDescriptor() argument
39 if(recursive) in GetDescriptor()
DIProvidesDescriptor.cs13 BitStream GetDescriptor(bool recursive, BitStream buffer = null); in GetDescriptor() argument
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/USB/CDC/
DFunctionalDescriptor.cs22 public BitStream GetDescriptor(bool recursive, BitStream buffer = null) in GetDescriptor() argument
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/USB/HID/
DReportDescriptor.cs25 public BitStream GetDescriptor(bool recursive, BitStream buffer = null) in GetDescriptor() argument
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/
DTypeManager.cs103 public void Scan(string path, bool recursive = false) in Scan() argument
111 ScanInner(path, recursive); in Scan()
268 private void ScanInner(string path, bool recursive) in ScanInner() argument
280 if(recursive) in ScanInner()
284 ScanInner(subdir, recursive); in ScanInner()
DMisc.cs100 public static IEnumerable<MethodInfo> GetAllMethods(this Type t, bool recursive = true) in GetAllMethods() argument
106 if(recursive) in GetAllMethods()
120 public static IEnumerable<FieldInfo> GetAllFields(this Type t, bool recursive = true) in GetAllFields() argument
126 if(recursive) in GetAllFields()
133 public static IEnumerable<Type> GetAllNestedTypes(this Type t, bool recursive = true) in GetAllNestedTypes() argument
139 if(recursive) in GetAllNestedTypes()