Home
last modified time | relevance | path

Searched defs:key (Results 1 – 19 of 19) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/Collections/
DMultiValueDictionary.cs42 public void Add(TKey key, TValue value) in Add()
62 public void AddRange(TKey key, IEnumerable<TValue> values) in AddRange()
89 public bool Remove(TKey key) in Remove()
99 public bool Remove(TKey key, TValue value) in Remove()
125 public bool TryGetValue(TKey key, out IReadOnlyCollection<TValue> values) in TryGetValue()
147 public bool ContainsKey(TKey key) in ContainsKey()
157 public bool Contains(TKey key) in Contains()
162 public bool Contains(TKey key, TValue value) in Contains()
DSerializableWeakDictionary.cs25 public void Add(TKey key, TValue value) in Add()
41 public bool ContainsKey(TKey key) in ContainsKey()
49 public bool Remove(TKey key) in Remove()
67 public bool TryGetValue(TKey key, out TValue value) in TryGetValue()
213 public TValue GetOrCreateValue(TKey key, TValue value) in GetOrCreateValue()
DSerializableWeakKeyDictionary.cs21 public void Add(TKey key, TValue value) in Add()
30 public bool ContainsKey(TKey key) in ContainsKey()
42 public bool Remove(TKey key) in Remove()
55 public bool TryGetValue(TKey key, out TValue value) in TryGetValue()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/Crypto/
DAesProvider.cs14 public static AesProvider GetCbcMacProvider(byte[] key) in GetCbcMacProvider()
20 public static AesProvider GetEcbProvider(byte[] key) in GetEcbProvider()
26 public static AesProvider GetCbcProvider(byte[] key, byte[] iv) in GetCbcProvider()
31 public AesProvider(CipherMode mode, PaddingMode padding, byte[] key, byte[] iv = null) in AesProvider()
94 private readonly byte[] key; field in Antmicro.Renode.Utilities.Crypto.AesProvider
DPRESENTCipher.cs17 …static public ulong Scramble(ulong data, ulong key, int width = OriginalDataWidth, uint rounds = O… in Scramble()
39 …static public ulong Descramble(ulong data, ulong key, int width = OriginalDataWidth, uint rounds =… in Descramble()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Backends/Display/xInput/
DIInputHandler.cs15 void KeyPressed(int key); in KeyPressed()
16 void KeyReleased(int key); in KeyReleased()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/
DLRUCache.cs24 public bool TryGetValue(TKey key, out TVal value) in TryGetValue()
42 public void Add(TKey key, TVal value) in Add()
DMisc.cs576 …ic static TValue GetOrDefault<TKey, TValue>(this IReadOnlyDictionary<TKey, TValue> @this, TKey key) in GetOrDefault() argument
581 …etOrDefault<TKey, TValue>(this IReadOnlyDictionary<TKey, TValue> @this, TKey key, TValue defaultVa… in GetOrDefault() argument
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Config/
DSimpleJson.cs110 … public static void Add<K>(this HashSet<KeyValuePair<K, object>> hashSet, K key, object value) in Add() argument
115 public static bool ContainsKey<K>(this HashSet<KeyValuePair<K, object>> hashSet, K key) in ContainsKey() argument
125 public static bool Remove<K>(this HashSet<KeyValuePair<K, object>> hashSet, K key) in Remove() argument
130 public static bool RemoveFirst<K>(this HashSet<KeyValuePair<K, object>> hashSet, K key) in RemoveFirst() argument
136 …public static bool TryGetValue<K>(this HashSet<KeyValuePair<K, object>> hashSet, K key, out object… in TryGetValue() argument
148 public static object Get<K>(this HashSet<KeyValuePair<K, object>> hashSet, K key) in Get() argument
153 … public static void Set<K>(this HashSet<KeyValuePair<K, object>> hashSet, K key, object value) in Set() argument
213 public void Add(string key, object value) in Add()
225 public bool ContainsKey(string key) in ContainsKey()
244 public bool Remove(string key) in Remove()
[all …]
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Core/
DIGPIORedirector.cs22 public bool ContainsKey(int key) in ContainsKey()
27 public bool TryGetValue(int key, out IGPIO value) in TryGetValue()
DEmulation.cs157 public bool TryGetMachine(string key, out IMachine machine) in TryGetMachine()
/Renode-Infrastructure-v1.15.3-29f510e/src/UI/VideoAnalyzer/Handlers/
DIOHandler.cs84 public void KeyPressed(KeyScanCode key) in KeyPressed()
122 public void KeyReleased(KeyScanCode key) in KeyReleased()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/Crypto/
DAESServiceProvider.cs140 private byte[] Encrypt(byte[] key, byte[] iv, byte[] input) in Encrypt()
157 private byte[] Decrypt(byte[] key, byte[] iv, byte[] input) in Decrypt()
DSTM32H7_CRYPTO.cs326 abstract public void InitializeInitializationPhase(byte[] key, byte[] iv); in InitializeInitializationPhase()
369 public override void InitializeInitializationPhase(byte[] key, byte[] iv) in InitializeInitializationPhase()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/MemoryControllers/
DOpenTitan_ROMController.cs25 public OpenTitan_ROMController(MappedMemory rom, string nonce, string key) in OpenTitan_ROMController()
215 private ulong[] key; field in Antmicro.Renode.Peripherals.MemoryControllers.OpenTitan_ROMController
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Bus/
DSystemBus.cs2099 public void AddContextKey(IPeripheral key) in AddContextKey()
2113 public void RemoveContextKey(IPeripheral key) in RemoveContextKey()
2125 public TReadOnlyValue GetValue(IPeripheral key, ulong? initiatorState = null) in GetValue()
2162 public bool TryGetValue(IPeripheral key, ulong? initiatorState, out TValue value) in TryGetValue()
2192 …private bool TryGetValueForState(TValue cachedValue, IPeripheral key, ulong? initiatorState, out T… in TryGetValueForState()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/
DOpenTitan_AES.cs301 private readonly byte[] key; field in Antmicro.Renode.Peripherals.Miscellaneous.OpenTitan_AES
DOpenTitan_HMAC.cs262 private readonly byte[] key; field in Antmicro.Renode.Peripherals.Miscellaneous.OpenTitan_HMAC
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/SiLabs/
DEFR32xG2_RNGCTRL.cs198 private byte[] key = new byte[16]; field in Antmicro.Renode.Peripherals.Miscellaneous.SiLabs.EFR32xG2_RNGCTRL