Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/UI/
DConsoleWindowBackendAnalyzer.cs108 …var attribute = type.GetCustomAttributes(false).OfType<ConsoleBackendAnalyzerProviderAttribute>().… in GetProviderName()
109 if(attribute != null) in GetProviderName()
111 return attribute.Name; in GetProviderName()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/GDB/
DCommand.cs208 var attribute = parameterInfo.GetCustomAttribute<ArgumentAttribute>(); in HandleArgumentNotResolved()
209 if(attribute == null) in HandleArgumentNotResolved()
222 …var separatorPosition = attribute.Separator == '\0' ? -1 : context.Packet.Data.DataAsString.IndexO… in HandleArgumentNotResolved()
227 switch(attribute.Encoding) in HandleArgumentNotResolved()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/Binding/
DNativeBinder.cs132 …var attribute = (ImportAttribute)field.GetCustomAttributes(false).Single(x => x is ImportAttribute… in EnsureWrappersType()
133 if(attribute.UseExceptionWrapper) in EnsureWrappersType()
191 …var attribute = (ImportAttribute)field.GetCustomAttributes(false).First(x => x is ImportAttribute); in ResolveCallsToNative()
192 … var cName = GetWrappedName(attribute.Name ?? GetCName(field.Name), attribute.UseExceptionWrapper); in ResolveCallsToNative()
210 if(!attribute.Optional) in ResolveCallsToNative()
216 if(attribute.UseExceptionWrapper && result != null) in ResolveCallsToNative()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/RESD/
DRESDStream.cs139 .Any(attribute => in FindCallback()
140 attribute.SampleType == sampleType && in FindCallback()
141 attribute.Status == status && in FindCallback()
142 attribute.ChannelId == channel && in FindCallback()
143 attribute.Domain == domain)); in FindCallback()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/UserInterface/
DMonitorCommands.cs144 …var attribute = candidateParametersWithoutArrayAndWriters[i].GetCustomAttributes(typeof(ValuesAttr… in RunCommand()
145 if(attribute.Any()) in RunCommand()
147 …if(!((ValuesAttribute)attribute[0]).Values.Contains(parametersWithoutLastArray[i].GetObjectValue()… in RunCommand()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/
DMisc.cs1879 public MethodWithAttribute(MethodInfo method, T attribute) in MethodWithAttribute() argument
1882 Attribute = attribute; in MethodWithAttribute()