Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Bus/
DBusAccess.cs26 accessMethods = new Dictionary<Type, Method>(); in BusAccess()
31 Method accessMethod; in BusAccess()
59 private static bool TryGetMethodFromType(Type type, out Method method) in TryGetMethodFromType()
61 foreach(var member in typeof(Method).GetMembers()) in TryGetMethodFromType()
71 method = (Method)Enum.Parse(typeof(Method), member.Name); in TryGetMethodFromType()
76 method = Method.Byte; in TryGetMethodFromType()
85 public static Method GetMethodFromSignature(Type t) in GetMethodFromSignature()
97 private static readonly Dictionary<Type, Method> accessMethods;
115 public enum Method enum in Antmicro.Renode.Peripherals.Bus.BusAccess
DPeripheralAccessMethods.cs55 …ic void SetMethod(MethodInfo i, object obj, BusAccess.Operation operation, BusAccess.Method method) in SetMethod()
59 case BusAccess.Method.Byte: in SetMethod()
62 case BusAccess.Method.Word: in SetMethod()
65 case BusAccess.Method.DoubleWord: in SetMethod()
68 case BusAccess.Method.QuadWord: in SetMethod()
DSystemBusGenerated.tt195 …pam.<#=operation#><#=name#> = new BusAccess.<#=name#><#=operation#>Method(((<#=operation#>HookWrap…
199 …pam.<#=operation#><#=name#> = new BusAccess.<#=name#><#=operation#>Method(new <#=operation#>HookWr…
DSystemBus.cs1326 …var customAccessMethods = new Dictionary<Tuple<BusAccess.Method, BusAccess.Operation>, MethodInfo>… in FillAccessMethodsWithTaggedMethods()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/
DExtensionOnObjectAttribute.cs12 [AttributeUsage(AttributeTargets.Method)]
DMisc.cs1881 Method = method; in MethodWithAttribute()
1885 public MethodInfo Method { get; } property in Antmicro.Renode.Utilities.T
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/Binding/
DExportAttribute.cs12 [AttributeUsage(AttributeTargets.Method)]
DNativeBinder.cs203 … var delegateTarget = generatedDelegate.Method.IsStatic ? null : generatedDelegate; in ResolveCallsToNative()
206 … result = Delegate.CreateDelegate(field.FieldType, delegateTarget, generatedDelegate.Method); in ResolveCallsToNative()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/GDB/
DExecuteAttribute.cs10 [AttributeUsage(AttributeTargets.Method)]
DCommandsManager.cs95 …and = commandDescriptor == null ? null: GetOrCreateCommand(commandDescriptor.Method.DeclaringType); in TryGetCommand()
350 Method = method; in CommandDescriptor()
355 public MethodInfo Method { get; private set; } property in Antmicro.Renode.Utilities.GDB.CommandsManager.CommandDescriptor
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/UserInterface/
DHideInMonitorAttribute.cs12 …[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Method | Att…
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/UserInterface/Commands/
DCommandAttributes.cs14 [AttributeUsage(AttributeTargets.Method)]
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Foreign/
DRecordEntryBase.cs28 …ng.Format("[RecordEntry: Handler={0}, Name={1}, Timestamp={2}]", Handler.Method.Name, Name, Timest… in ToString()
DPlayer.cs67 … var result = Delegate.CreateDelegate(nullifiedHandler.GetType(), target, nullifiedHandler.Method); in ResolveHandler()
DRecorder.cs93 var result = (T)(object)Delegate.CreateDelegate(typeof(T), null, handler.Method); in GetNullifiedHandler()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Network/
DAtCommandModemParsing.cs126 .Select(ma => ma.Method) in GetArgumentParsers()
138 [AttributeUsage(AttributeTargets.Method)]
DAtCommandModem.cs383 … .SelectMany(ma => ma.Attribute.Types, (ma, type) => new { ma.Attribute.Command, type, ma.Method }) in GetCommandMethods()
385 …ictionary(g => g.Key, g => g.DistinctBy(h => h.type).ToDictionary(ma => ma.type, ma => ma.Method)); in GetCommandMethods()
422 [AttributeUsage(AttributeTargets.Method)]
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Core/
DEmulationManager.cs144 …TypeException && serializer.Settings.SerializationMethod == Migrant.Customization.Method.Generated) in Save()
301 …ger.Instance.Get("general", "serialization-mode", Antmicro.Migrant.Customization.Method.Generated); in EmulationManager()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Tests/UnitTests/
DTimeSourceTests.cs759 peripheralMock.Method(i); in ShouldRecordAndPlayEvents()
985 public void Method(int counter) in Method() method in UnitTests.TimeSourceTests.PeripheralMock