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

  /external/chromium_org/third_party/libjingle/source/talk/base/
macasyncsocket.cc 5 // MacAsyncSocket is a kind of AsyncSocket. It does not support the SOCK_DGRAM
15 #include "talk/base/macasyncsocket.h"
26 MacAsyncSocket::MacAsyncSocket(MacBaseSocketServer* ss, int family)
39 MacAsyncSocket::~MacAsyncSocket() {
45 SocketAddress MacAsyncSocket::GetLocalAddress() const {
63 SocketAddress MacAsyncSocket::GetRemoteAddress() const {
78 int MacAsyncSocket::Bind(const SocketAddress& address) {
86 void MacAsyncSocket::OnResolveResult(SignalThread* thread)
    [all...]
macasyncsocket.h 4 // MacAsyncSocket is a kind of AsyncSocket. It only creates sockets
22 class MacAsyncSocket : public AsyncSocket, public sigslot::has_slots<> {
24 MacAsyncSocket(MacBaseSocketServer* ss, int family);
25 virtual ~MacAsyncSocket();
40 virtual MacAsyncSocket* Accept(SocketAddress* out_addr);
59 MacAsyncSocket(MacBaseSocketServer* ss, int family, int native_socket);
86 DISALLOW_EVIL_CONSTRUCTORS(MacAsyncSocket);
macsocketserver.h 18 class MacAsyncSocket;
35 void RegisterSocket(MacAsyncSocket* socket);
36 void UnregisterSocket(MacAsyncSocket* socket);
43 const std::set<MacAsyncSocket*>& sockets() {
52 std::set<MacAsyncSocket*> sockets_;
macsocketserver.cc 7 #include "talk/base/macasyncsocket.h"
31 MacAsyncSocket* socket = new MacAsyncSocket(this, family);
39 void MacBaseSocketServer::RegisterSocket(MacAsyncSocket* s) {
43 void MacBaseSocketServer::UnregisterSocket(MacAsyncSocket* s) {
89 for (std::set<MacAsyncSocket*>::iterator it = sockets().begin();

Completed in 154 milliseconds