Home
last modified time | relevance | path

Searched refs:EntryPoint (Results 1 – 12 of 12) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Backends/Display/xInput/
DXLibHelper.cs123 [DllImport("libX11", EntryPoint = "XChangeActivePointerGrab")]
126 [DllImport("libX11", EntryPoint = "XGrabPointer")]
129 [DllImport("libX11", EntryPoint = "XUngrabPointer")]
132 [DllImport("libX11", EntryPoint = "XGrabKeyboard")]
135 [DllImport("libX11", EntryPoint = "XUngrabKeyboard")]
138 [DllImport("libX11", EntryPoint = "XCreatePixmapFromBitmapData")]
141 [DllImport("libX11", EntryPoint = "XFreePixmap")]
144 [DllImport("libX11", EntryPoint = "XCreatePixmapCursor")]
147 [DllImport("libX11", EntryPoint = "XWhitePixel")]
150 [DllImport("libX11", EntryPoint = "XBlackPixel")]
[all …]
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/
DLibCWrapper.cs232 [DllImport("libc", EntryPoint = "open", SetLastError = true)]
235 [DllImport("libc", EntryPoint = "strcpy")]
238 [DllImport("libc", EntryPoint = "ioctl")]
241 [DllImport("libc", EntryPoint = "ioctl", SetLastError = true)]
244 [DllImport("libc", EntryPoint = "ioctl", SetLastError = true)]
247 [DllImport("libc", EntryPoint = "socket", SetLastError = true)]
250 [DllImport("libc", EntryPoint = "setsockopt", SetLastError = true)]
253 [DllImport("libc", EntryPoint = "bind", SetLastError = true)]
256 [DllImport("libc", EntryPoint = "close")]
259 [DllImport("libc", EntryPoint = "write", SetLastError = true)]
[all …]
DPtyUnixStream.cs209 [DllImport("libc", EntryPoint = "getpt")]
212 [DllImport("libc", EntryPoint = "grantpt")]
215 [DllImport("libc", EntryPoint = "unlockpt")]
218 [DllImport("libc", EntryPoint="ptsname")]
221 [DllImport("libc", EntryPoint = "cfmakeraw")]
224 [DllImport("libc", EntryPoint = "tcgetattr")]
227 [DllImport("libc", EntryPoint = "tcsetattr")]
231 [DllImport("libutil.so.1", EntryPoint = "openpty")]
233 [DllImport("util", EntryPoint = "openpty")]
DAssemblyHelper.cs109 [DllImport("__Internal", EntryPoint = "GetBundlesCount")]
112 [DllImport("__Internal", EntryPoint = "GetBundleName")]
115 [DllImport("__Internal", EntryPoint = "GetBundleDataSize")]
118 [DllImport("__Internal", EntryPoint = "GetBundleDataPointer")]
DSharedLibraries.cs176 [DllImport("kernel32", SetLastError=true, CharSet = CharSet.Ansi, EntryPoint="LoadLibrary")]
179 [DllImport("kernel32.dll", EntryPoint="GetProcAddress")]
182 [DllImport("kernel32.dll", EntryPoint="FreeLibrary")]
185 [DllImport("kernel32.dll", EntryPoint="GetLastError")]
DPosixFileLocker.cs58 [DllImport("libc", EntryPoint = "flock")]
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Cores/Sparc/
DSparc.cs74 this.Log(LogLevel.Info, "Setting Entry Point value to 0x{0:X}", this.EntryPoint); in OnGPIO()
75 TlibSetEntryPoint(this.EntryPoint); in OnGPIO()
148 public uint EntryPoint { get; private set; } property in Antmicro.Renode.Peripherals.CPU.Sparc
226 EntryPoint = value; in AfterPCSet()
228 … this.Log(LogLevel.Info, "Using PC value as Entry Point value : 0x{0:X}", EntryPoint); in AfterPCSet()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Bus/
DELFExtensions.cs34 return elf32.EntryPoint; in GetEntryPoint()
38 return elf64.EntryPoint; in GetEntryPoint()
DSymbolLookup.cs158 public SymbolAddress? EntryPoint property in Antmicro.Renode.Core.SymbolLookup
210 EntryPoint = elf.GetEntryPoint(); field
DSystemBus.cs776 uImage.EntryPoint, in LoadUImage()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CPU/
DBaseCPU.cs78 this.Log(LogLevel.Info, "Setting PC value to 0x{0:X}.", uImage.EntryPoint); in InitFromUImage()
79 SetPCFromEntryPoint(uImage.EntryPoint); in InitFromUImage()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Memory/
DMappedMemory.cs737 [DllImport("libc", EntryPoint = "memset")]