Searched refs:UdpSocketPosix (Results 1 – 5 of 5) sorted by relevance
/external/webrtc/webrtc/test/channel_transport/ |
D | udp_socket_posix.cc | 29 UdpSocketPosix::UdpSocketPosix(const int32_t id, UdpSocketManager* mgr, in UdpSocketPosix() function in webrtc::test::UdpSocketPosix 71 UdpSocketPosix::~UdpSocketPosix() in ~UdpSocketPosix() 94 bool UdpSocketPosix::SetCallback(CallbackObj obj, IncomingSocketCallback cb) in SetCallback() 116 bool UdpSocketPosix::SetSockopt(int32_t level, int32_t optname, in SetSockopt() 129 int32_t UdpSocketPosix::SetTOS(int32_t serviceType) in SetTOS() 138 bool UdpSocketPosix::Bind(const SocketAddress& name) in Bind() 150 int32_t UdpSocketPosix::SendTo(const int8_t* buf, size_t len, in SendTo() 165 SOCKET UdpSocketPosix::GetFd() { return _socket; } in GetFd() 167 bool UdpSocketPosix::ValidHandle() in ValidHandle() 172 bool UdpSocketPosix::SetQos(int32_t /*serviceType*/, in SetQos() [all …]
|
D | udp_socket_manager_posix.cc | 204 for (std::map<SOCKET, UdpSocketPosix*>::iterator it = in ~UdpSocketManagerPosixImpl() 250 for (std::map<SOCKET, UdpSocketPosix*>::iterator it = _socketMap.begin(); in Process() 277 for (std::map<SOCKET, UdpSocketPosix*>::iterator it = _socketMap.begin(); in Process() 298 UdpSocketPosix* sl = static_cast<UdpSocketPosix*>(s); in AddSocket() 317 UdpSocketPosix* addSocket = static_cast<UdpSocketPosix*>(*iter); in RemoveSocket() 319 unsigned int removeFD = static_cast<UdpSocketPosix*>(s)->GetFd(); in RemoveSocket() 330 if (_socketMap.find(static_cast<UdpSocketPosix*>(s)->GetFd()) != in RemoveSocket() 332 _removeList.push_back(static_cast<UdpSocketPosix*>(s)->GetFd()); in RemoveSocket() 346 UdpSocketPosix* deleteSocket = NULL; in UpdateSocketMap() 353 UdpSocketPosix* addSocket = static_cast<UdpSocketPosix*>(*iter); in UpdateSocketMap() [all …]
|
D | udp_socket_posix.h | 28 class UdpSocketPosix : public UdpSocketWrapper 31 UdpSocketPosix(const int32_t id, UdpSocketManager* mgr, 34 virtual ~UdpSocketPosix();
|
D | udp_socket_wrapper.cc | 103 s = new UdpSocketPosix(id, mgr, ipV6Enable); in CreateSocket() 106 UdpSocketPosix* sl = static_cast<UdpSocketPosix*>(s); in CreateSocket()
|
D | udp_socket_manager_posix.h | 31 class UdpSocketPosix; variable 83 std::map<SOCKET, UdpSocketPosix*> _socketMap;
|