Home
last modified time | relevance | path

Searched refs:Stream (Results 1 – 25 of 36) sorted by relevance

12

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/
DPtyUnixStream.cs21 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 …]
DIBlobProvider.cs21 public Stream Stream { get; set; } property
DBlobManager.cs22 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()
DSocketServerProvider.cs36 …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()
DSafeBinaryReader.cs24 public SafeBinaryReader(Stream stream) : base(stream) in SafeBinaryReader()
160 private SafeBinaryReader(Stream stream, long length) : this(stream) in SafeBinaryReader()
DRawImageData.cs28 public Stream ToPng() in ToPng()
DAssemblyHelper.cs96 private static string ExtractAssemblyToFile(Stream stream, string fileName) in ExtractAssemblyToFile()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Storage/
DDataStorage.cs17 …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()
DSerializableStreamView.cs15 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/
DCommandInteractionEater.cs40 public Stream GetRawInputStream() in GetRawInputStream()
110 public Stream GetRawInputStream() in GetRawInputStream()
148 public Stream GetRawInputStream() in GetRawInputStream()
DInlineImage.cs21 public static string Encode(Stream image) in Encode()
DStreamToEventConverter.cs13 public class StreamToEventConverter : Stream
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/DMA/
DSTM32DMA.cs22 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/
DRegisterEnumParser.cs13 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()
DRegisterEnumParserContent.tt21 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/
DIMachine.cs69 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/
DTraceWriter.cs98 protected readonly Stream stream;
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Analog/
DSAM4S_ADC.cs36 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/
DDisplayImageCommand.cs79 private static bool CheckFormat(Stream file) in CheckFormat()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Core/
DEmulationManager.cs101 ? (Stream) new GZipStream(fstream, CompressionMode.Decompress) in Load()
102 : (Stream) fstream) in Load()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Sensor/
DSensorSamplesPacket.cs33 using(Stream stream = new FileStream(path, FileMode.Open, FileAccess.Read)) in ParseFile()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/ATAPI/
DCDROM.cs120 private readonly Stream dataBackend;
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CPU/GuestProfiling/ProtoBuf/
DPerfettoTraceWriter.cs121 public void FlushBuffer(Stream fileStream) in FlushBuffer()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Tests/UnitTests/
DRegisterEnumParserTests.cs149 private static Stream GetStreamWitString(string text) in GetStreamWitString()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Storage/
DVirtIOBlockDevice.cs151 private Stream storage;

12