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.cs19 return new Response(ReturnCode.CommandFailed, command, text: reason); in CommandFailed()
24 return new Response(ReturnCode.FatalError, text: reason); in FatalError()
29 return new Response(ReturnCode.InvalidCommand, command); in InvalidCommand()
34 return new Response(ReturnCode.SuccessWithoutData, command); in Success()
39 return new Response(ReturnCode.SuccessWithData, command, data); in Success()
44 return new Response(ReturnCode.SuccessWithData, command, text); in Success()
49 return new Response(ReturnCode.SuccessfulHandshake); in SuccessfulHandshake()
54 return new Response(ReturnCode.AsyncEvent, command, eventDescriptor, data.ToArray()); in Event()
57 private Response(ReturnCode returnCode) in Response()
62 private Response(ReturnCode returnCode, string text) in Response()
[all …]