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

Function Ioctl

profiling/common/src/NetworkSockets.cpp:78–89  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

76}
77
78int Ioctl(Socket s, unsigned long int cmd, void* arg)
79{
80#if defined(__unix__) || defined(__APPLE__)
81 ARM_PIPE_NO_CONVERSION_WARN_BEGIN
82 return ioctl(s, static_cast<int>(cmd), arg);
83 ARM_PIPE_NO_CONVERSION_WARN_END
84#elif defined(_MSC_VER) || defined(__MINGW32__)
85 ARM_PIPE_NO_CONVERSION_WARN_BEGIN
86 return ioctlsocket(s, cmd, static_cast<u_long*>(arg));
87 ARM_PIPE_NO_CONVERSION_WARN_END
88#endif
89}
90
91
92int Poll(PollFd* fds, nfds_t numFds, int timeout)

Callers 2

ReadPacketMethod · 0.85
WaitForPacketMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected