Home
last modified time | relevance | path

Searched refs:SocketDispatcher (Results 1 – 3 of 3) sorted by relevance

/external/webrtc/rtc_base/
Dphysical_socket_server.cc596 SocketDispatcher::SocketDispatcher(PhysicalSocketServer* ss) in SocketDispatcher() function in rtc::SocketDispatcher
607 SocketDispatcher::SocketDispatcher(SOCKET s, PhysicalSocketServer* ss) in SocketDispatcher() function in rtc::SocketDispatcher
618 SocketDispatcher::~SocketDispatcher() { in ~SocketDispatcher()
622 bool SocketDispatcher::Initialize() { in Initialize()
644 bool SocketDispatcher::Create(int type) { in Create()
648 bool SocketDispatcher::Create(int family, int type) { in Create()
666 WSAEVENT SocketDispatcher::GetWSAEvent() { in GetWSAEvent()
670 SOCKET SocketDispatcher::GetSocket() { in GetSocket()
674 bool SocketDispatcher::CheckSignalClose() { in CheckSignalClose()
688 int SocketDispatcher::next_id_ = 0;
[all …]
Dphysical_socket_server_unittest.cc43 class FakeSocketDispatcher : public SocketDispatcher {
46 : SocketDispatcher(ss) {} in FakeSocketDispatcher()
49 : SocketDispatcher(s, ss) {} in FakeSocketDispatcher()
67 SocketDispatcher* dispatcher = new FakeSocketDispatcher(this); in CreateAsyncSocket()
76 SocketDispatcher* dispatcher = new FakeSocketDispatcher(s, this); in WrapSocket()
141 return SocketDispatcher::DoAccept(socket, addr, addrlen); in DoAccept()
154 return SocketDispatcher::DoSend(socket, buf, len, flags); in DoSend()
169 return SocketDispatcher::DoSendTo(socket, buf, len, flags, dest_addr, in DoSendTo()
Dphysical_socket_server.h207 class SocketDispatcher : public Dispatcher, public PhysicalSocket {
209 explicit SocketDispatcher(PhysicalSocketServer* ss);
210 SocketDispatcher(SOCKET s, PhysicalSocketServer* ss);
211 ~SocketDispatcher() override;