Home
last modified time | relevance | path

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

/Renode-v1.15.3-c57714d/src/Renode/Network/ExternalControl/
DResponse.cs57 private Response(ReturnCode returnCode) in Response() argument
58 : this(returnCode, null, null, null) in Response()
62 private Response(ReturnCode returnCode, string text) in Response() argument
63 : this(returnCode, null, text) in Response()
67 private Response(ReturnCode returnCode, Command? command, string text) in Response() argument
68 : this(returnCode, command, null, Encoding.ASCII.GetBytes(text)) in Response()
73 private Response(ReturnCode returnCode, Command? command, IEnumerable<byte> data) in Response() argument
74 : this(returnCode, command, null, data.ToArray()) in Response()
78 …private Response(ReturnCode returnCode, Command? command, int? eventDescriptor = null, byte[] data… in Response() argument
81 …DebugHelper.Assert(command != null || returnCode == ReturnCode.FatalError || returnCode == ReturnC… in Response()
[all …]