orca-sim
|
Classes | |
class | GdbProcessorBase |
struct | GdbProcessorState |
Defines a generic state model for use within processor models. More... | |
class | RspServer |
class | UdpAsyncServer |
This class implements an asynchonous udp server. More... | |
Enumerations | |
enum | UdpAsyncError { UdpAsyncError::SOCKET_OPEN, UdpAsyncError::SOCKET_BIND, UdpAsyncError::SELECT_ERR, UdpAsyncError::TIMEOUT_EXCEEDED } |
Functions | |
int | strhti (char *buffer, int length) |
String-to-int. More... | |
int | strfind (char *buffer, char find, int limit) |
String find. More... | |
void | hexstr (char *output, char *input, uint32_t integers) |
String to hex. More... | |
uint32_t | endswap (uint32_t value) |
Endianess Swap. More... | |
|
strong |
Enumerator | |
---|---|
SOCKET_OPEN | |
SOCKET_BIND | |
SELECT_ERR | |
TIMEOUT_EXCEEDED |
Definition at line 46 of file UdpAsyncServer.hpp.
uint32_t orcasim::gdbrsp::endswap | ( | uint32_t | value | ) |
Endianess Swap.
Definition at line 77 of file DataConvertionHelper.cpp.
void orcasim::gdbrsp::hexstr | ( | char * | output, |
char * | input, | ||
uint32_t | integers | ||
) |
String to hex.
Definition at line 61 of file DataConvertionHelper.cpp.
int orcasim::gdbrsp::strfind | ( | char * | buffer, |
char | find, | ||
int | limit | ||
) |
String find.
Definition at line 53 of file DataConvertionHelper.cpp.
int orcasim::gdbrsp::strhti | ( | char * | buffer, |
int | length | ||
) |