Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/
DELFUtils.cs15 public static IELF LoadELF(ReadFilePath fileName) in LoadELF() method in Antmicro.Renode.Utilities.ELFUtils
DSharedLibraries.cs122 using(var elf = ELFUtils.LoadELF(path)) in GetAllSymbols()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Bus/
DSymbolLookup.cs43 public void LoadELF(IELF elf, bool useVirtualAddress = false, ulong? textAddress = null) in LoadELF() method in Antmicro.Renode.Core.SymbolLookup
47 LoadELF(elf32, useVirtualAddress, textAddress); in LoadELF()
51 LoadELF(elf64, useVirtualAddress, textAddress); in LoadELF()
184 …private void LoadELF<T>(ELF<T> elf, bool useVirtualAddress = false, ulong? textAddress = null) whe…
DIBusController.cs185 using(var elf = ELFUtils.LoadELF(fileName)) in LoadSymbolsFrom()
DSystemBus.cs707 GetOrCreateLookup(context).LoadELF(elf, useVirtualAddress, textAddress); in LoadSymbolsFrom()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/
DOpenTitan_BigNumberAccelerator.cs79 public void LoadELF(string filePath) in LoadELF() method in Antmicro.Renode.Peripherals.Miscellaneous.OpenTitan_BigNumberAccelerator
81 using(var elf = ELFUtils.LoadELF(filePath)) in LoadELF()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Core/Extensions/
DFileLoaderExtensions.cs371 …public static void LoadELF(this IBusController loader, ReadFilePath fileName, bool useVirtualAddre… in LoadELF() method in Antmicro.Renode.Core.Extensions.FileLoaderExtensions
379 using(var elf = ELFUtils.LoadELF(fileName)) in LoadELF()