MCPcopy Create free account
hub / github.com/ARM-software/armnn / Read

Function Read

profiling/common/src/NetworkSockets.cpp:69–76  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

67
68
69long Read(Socket s, void* buf, size_t len)
70{
71#if defined(__unix__) || defined(__APPLE__)
72 return read(s, buf, len);
73#elif defined(_MSC_VER) || defined(__MINGW32__)
74 return recv(s, static_cast<char*>(buf), static_cast<int>(len), 0);
75#endif
76}
77
78int Ioctl(Socket s, unsigned long int cmd, void* arg)
79{

Callers 3

ReceivePacketMethod · 0.85
ReadFromSocketMethod · 0.85
WaitForStreamMetaDataMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected