| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/ |
| D | PtyUnixStream.cs | 21 public class PtyUnixStream : Stream 51 Stream.Flush(); in Flush() 56 return Stream.ReadAsync(buffer, offset, count, cancellationToken); in ReadAsync() 61 return Stream.Read(buffer, offset, count); in Read() 66 return Stream.Seek(offset, origin); in Seek() 71 Stream.SetLength(value); in SetLength() 76 Stream.Write(buffer, offset, count); in Write() 79 public override bool CanRead { get { return Stream.CanRead; } } 81 public override bool CanSeek { get { return Stream.CanSeek; } } 83 public override bool CanWrite { get { return Stream.CanWrite; } } [all …]
|
| D | IBlobProvider.cs | 21 public Stream Stream { get; set; } property
|
| D | BlobManager.cs | 22 public void Load(Stream stream, string streamName) in Load() 56 public void Save(Stream stream) in Save() 64 writer.CopyFrom(descriptor.Stream, descriptor.Size); in Save()
|
| D | SocketServerProvider.cs | 36 …ager.Instance.AcquireSocket(null ,AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp,… in Start() 98 public event Action<Stream> ConnectionAccepted; 102 private void WriterThreadBody(Stream stream) in WriterThreadBody() 134 private void ReaderThreadBody(Stream stream) in ReaderThreadBody()
|
| D | SafeBinaryReader.cs | 24 public SafeBinaryReader(Stream stream) : base(stream) in SafeBinaryReader() 160 private SafeBinaryReader(Stream stream, long length) : this(stream) in SafeBinaryReader()
|
| D | RawImageData.cs | 28 public Stream ToPng() in ToPng()
|
| D | AssemblyHelper.cs | 96 private static string ExtractAssemblyToFile(Stream stream, string fileName) in ExtractAssemblyToFile()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Storage/ |
| D | DataStorage.cs | 17 …public static Stream Create(string imageFile, long? size = null, bool persistent = false, byte pad… in Create() 23 …public static Stream CreateFromFile(string imageFile, long? size = null, bool persistent = false, … in CreateFromFile() 40 public static Stream Create(long size, byte paddingByte = 0) in Create() 46 public static Stream CreateInTemporaryFile(long size, byte paddingByte = 0) in CreateInTemporaryFile() 51 public static Stream CreateInMemory(int size, byte paddingByte = 0) in CreateInMemory()
|
| D | SerializableStreamView.cs | 15 public class SerializableStreamView : Stream, ISpeciallySerializable 31 …public SerializableStreamView(Stream stream, long? length = null, byte paddingByte = 0, long offse… in SerializableStreamView() 202 private Stream underlyingStream;
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/UserInterface/ |
| D | CommandInteractionEater.cs | 40 public Stream GetRawInputStream() in GetRawInputStream() 110 public Stream GetRawInputStream() in GetRawInputStream() 148 public Stream GetRawInputStream() in GetRawInputStream()
|
| D | InlineImage.cs | 21 public static string Encode(Stream image) in Encode()
|
| D | StreamToEventConverter.cs | 13 public class StreamToEventConverter : Stream
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/DMA/ |
| D | STM32DMA.cs | 22 streams = new Stream[NumberOfStreams]; in STM32DMA() 25 streams[i] = new Stream(this, i); in STM32DMA() 170 private readonly Stream[] streams; 187 private class Stream class in Antmicro.Renode.Peripherals.DMA.STM32DMA 189 public Stream(STM32DMA parent, int streamNo) in Stream() method in Antmicro.Renode.Peripherals.DMA.STM32DMA.Stream
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Cores/Common/ |
| D | RegisterEnumParser.cs | 13 public RegistersEnumParser(Stream stream) : this(stream, new string[0]) in RegistersEnumParser() 17 public RegistersEnumParser(Stream stream, IEnumerable<string> defines) in RegistersEnumParser() 65 private void Parse(Stream stream) in Parse()
|
| D | RegisterEnumParserContent.tt | 21 public RegistersEnumParser(Stream stream) : this(stream, new string[0]) 25 public RegistersEnumParser(Stream stream, IEnumerable<string> defines) 73 private void Parse(Stream stream)
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/ |
| D | IMachine.cs | 69 bool AttachConnectionAcceptedListenerToGdbStub(int port, Action<System.IO.Stream> listener); in AttachConnectionAcceptedListenerToGdbStub() 70 … bool DetachConnectionAcceptedListenerFromGdbStub(int port, Action<System.IO.Stream> listener); in DetachConnectionAcceptedListenerFromGdbStub()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CPU/ExecutionTracer/ |
| D | TraceWriter.cs | 98 protected readonly Stream stream;
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Analog/ |
| D | SAM4S_ADC.cs | 36 foreach(var it in channelStream.Select((Stream, Index) => new { Stream, Index })) in Reset() 38 it.Stream?.Dispose(); in Reset()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/UserInterface/Commands/ |
| D | DisplayImageCommand.cs | 79 private static bool CheckFormat(Stream file) in CheckFormat()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Core/ |
| D | EmulationManager.cs | 101 ? (Stream) new GZipStream(fstream, CompressionMode.Decompress) in Load() 102 : (Stream) fstream) in Load()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Sensor/ |
| D | SensorSamplesPacket.cs | 33 using(Stream stream = new FileStream(path, FileMode.Open, FileAccess.Read)) in ParseFile()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/ATAPI/ |
| D | CDROM.cs | 120 private readonly Stream dataBackend;
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CPU/GuestProfiling/ProtoBuf/ |
| D | PerfettoTraceWriter.cs | 121 public void FlushBuffer(Stream fileStream) in FlushBuffer()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Tests/UnitTests/ |
| D | RegisterEnumParserTests.cs | 149 private static Stream GetStreamWitString(string text) in GetStreamWitString()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Storage/ |
| D | VirtIOBlockDevice.cs | 151 private Stream storage;
|