| 64 | } |
| 65 | |
| 66 | bool SocketProfilingConnection::IsOpen() const |
| 67 | { |
| 68 | #if !defined(ARMNN_DISABLE_SOCKETS) |
| 69 | return m_Socket[0].fd > 0; |
| 70 | #else |
| 71 | return false; |
| 72 | #endif |
| 73 | } |
| 74 | |
| 75 | void SocketProfilingConnection::Close() |
| 76 | { |
no outgoing calls
no test coverage detected