HomeSort by relevance Sort by last modified time
    Searched defs:AsyncUDPSocket (Results 1 - 4 of 4) sorted by null

  /external/chromium/third_party/libjingle/source/talk/base/
asyncudpsocket.h 39 class AsyncUDPSocket : public AsyncPacketSocket {
43 static AsyncUDPSocket* Create(SocketFactory* factory,
45 explicit AsyncUDPSocket(AsyncSocket* socket);
46 virtual ~AsyncUDPSocket();
asyncudpsocket.cc 32 #include "talk/base/asyncudpsocket.h"
39 AsyncUDPSocket* AsyncUDPSocket::Create(SocketFactory* factory,
48 return new AsyncUDPSocket(socket.release());
51 AsyncUDPSocket::AsyncUDPSocket(AsyncSocket* socket)
58 socket_->SignalReadEvent.connect(this, &AsyncUDPSocket::OnReadEvent);
61 AsyncUDPSocket::~AsyncUDPSocket() {
65 SocketAddress AsyncUDPSocket::GetLocalAddress(bool* allocated) const
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
asyncudpsocket.h 39 class AsyncUDPSocket : public AsyncPacketSocket {
41 // Binds |socket| and creates AsyncUDPSocket for it. Takes ownership
44 static AsyncUDPSocket* Create(AsyncSocket* socket,
48 static AsyncUDPSocket* Create(SocketFactory* factory,
50 explicit AsyncUDPSocket(AsyncSocket* socket);
51 virtual ~AsyncUDPSocket();
asyncudpsocket.cc 28 #include "talk/base/asyncudpsocket.h"
35 AsyncUDPSocket* AsyncUDPSocket::Create(
43 return new AsyncUDPSocket(owned_socket.release());
46 AsyncUDPSocket* AsyncUDPSocket::Create(SocketFactory* factory,
55 AsyncUDPSocket::AsyncUDPSocket(AsyncSocket* socket)
62 socket_->SignalReadEvent.connect(this, &AsyncUDPSocket::OnReadEvent);
63 socket_->SignalWriteEvent.connect(this, &AsyncUDPSocket::OnWriteEvent)
    [all...]

Completed in 1467 milliseconds