HomeSort by relevance Sort by last modified time
    Searched refs:CreateAsyncSocket (Results 1 - 25 of 75) sorted by null

1 2 3

  /external/chromium_org/third_party/libjingle/source/talk/base/
socketfactory.h 44 // (and CreateAsyncSocket(int) when all callers are changed.
49 virtual AsyncSocket* CreateAsyncSocket(int type) = 0;
50 virtual AsyncSocket* CreateAsyncSocket(int family, int type) = 0;
nullsocketserver.h 61 virtual talk_base::AsyncSocket* CreateAsyncSocket(int type) {
66 virtual talk_base::AsyncSocket* CreateAsyncSocket(int family, int type) {
asynctcpsocket_unittest.cc 45 socket_(vss_->CreateAsyncSocket(SOCK_STREAM)),
asyncudpsocket_unittest.cc 45 socket_(vss_->CreateAsyncSocket(SOCK_DGRAM)),
macsocketserver.h 29 virtual AsyncSocket* CreateAsyncSocket(int type);
30 virtual AsyncSocket* CreateAsyncSocket(int family, int type);
physicalsocketserver.h 84 virtual AsyncSocket* CreateAsyncSocket(int type);
85 virtual AsyncSocket* CreateAsyncSocket(int family, int type);
sslsocketfactory.h 77 virtual AsyncSocket* CreateAsyncSocket(int type);
78 virtual AsyncSocket* CreateAsyncSocket(int family, int type);
testclient_unittest.cc 40 ->CreateAsyncSocket(loopback.family(), SOCK_DGRAM);
56 ->CreateAsyncSocket(loopback.family(), SOCK_STREAM);
natsocketfactory.h 62 virtual AsyncSocket* CreateAsyncSocket(int type);
63 virtual AsyncSocket* CreateAsyncSocket(int family, int type);
151 virtual AsyncSocket* CreateAsyncSocket(int type);
152 virtual AsyncSocket* CreateAsyncSocket(int family, int type);
sslsocketfactory.cc 126 AsyncSocket* SslSocketFactory::CreateAsyncSocket(int type) {
127 return CreateAsyncSocket(AF_INET, type);
130 AsyncSocket* SslSocketFactory::CreateAsyncSocket(int family, int type) {
142 AsyncSocket* socket = factory_->CreateAsyncSocket(family, type);
socket_unittest.cc 213 scoped_ptr<AsyncSocket> client(ss_->CreateAsyncSocket(loopback.family(),
221 ss_->CreateAsyncSocket(loopback.family(), SOCK_STREAM));
269 ss_->CreateAsyncSocket(loopback.family(), SOCK_STREAM));
274 ss_->CreateAsyncSocket(loopback.family(), SOCK_STREAM));
317 ss_->CreateAsyncSocket(loopback.family(), SOCK_STREAM));
322 ss_->CreateAsyncSocket(loopback.family(), SOCK_STREAM));
350 ss_->CreateAsyncSocket(loopback.family(), SOCK_STREAM));
355 ss_->CreateAsyncSocket(loopback.family(), SOCK_STREAM));
388 ss_->CreateAsyncSocket(loopback.family(), SOCK_STREAM));
394 ss_->CreateAsyncSocket(loopback.family(), SOCK_STREAM))
    [all...]
natsocketfactory.cc 337 AsyncSocket* NATSocketFactory::CreateAsyncSocket(int type) {
338 return CreateAsyncSocket(AF_INET, type);
341 AsyncSocket* NATSocketFactory::CreateAsyncSocket(int family, int type) {
348 return factory_->CreateAsyncSocket(family, type);
383 AsyncSocket* NATSocketServer::CreateAsyncSocket(int type) {
384 return CreateAsyncSocket(AF_INET, type);
387 AsyncSocket* NATSocketServer::CreateAsyncSocket(int family, int type) {
396 socket = nat->internal_factory()->CreateAsyncSocket(family, type);
400 socket = server_->CreateAsyncSocket(family, type);
  /external/chromium_org/third_party/webrtc/base/
socketfactory.h 27 // (and CreateAsyncSocket(int) when all callers are changed.
32 virtual AsyncSocket* CreateAsyncSocket(int type) = 0;
33 virtual AsyncSocket* CreateAsyncSocket(int family, int type) = 0;
nullsocketserver.h 44 virtual rtc::AsyncSocket* CreateAsyncSocket(int type) {
49 virtual rtc::AsyncSocket* CreateAsyncSocket(int family, int type) {
asynctcpsocket_unittest.cc 28 socket_(vss_->CreateAsyncSocket(SOCK_STREAM)),
asyncudpsocket_unittest.cc 28 socket_(vss_->CreateAsyncSocket(SOCK_DGRAM)),
macsocketserver.h 35 virtual AsyncSocket* CreateAsyncSocket(int type);
36 virtual AsyncSocket* CreateAsyncSocket(int family, int type);
physicalsocketserver.h 67 virtual AsyncSocket* CreateAsyncSocket(int type);
68 virtual AsyncSocket* CreateAsyncSocket(int family, int type);
sslsocketfactory.h 60 virtual AsyncSocket* CreateAsyncSocket(int type);
61 virtual AsyncSocket* CreateAsyncSocket(int family, int type);
testclient_unittest.cc 23 ->CreateAsyncSocket(loopback.family(), SOCK_DGRAM);
39 ->CreateAsyncSocket(loopback.family(), SOCK_STREAM);
natsocketfactory.h 45 virtual AsyncSocket* CreateAsyncSocket(int type);
46 virtual AsyncSocket* CreateAsyncSocket(int family, int type);
134 virtual AsyncSocket* CreateAsyncSocket(int type);
135 virtual AsyncSocket* CreateAsyncSocket(int family, int type);
sslsocketfactory.cc 109 AsyncSocket* SslSocketFactory::CreateAsyncSocket(int type) {
110 return CreateAsyncSocket(AF_INET, type);
113 AsyncSocket* SslSocketFactory::CreateAsyncSocket(int family, int type) {
125 AsyncSocket* socket = factory_->CreateAsyncSocket(family, type);
socket_unittest.cc 196 scoped_ptr<AsyncSocket> client(ss_->CreateAsyncSocket(loopback.family(),
204 ss_->CreateAsyncSocket(loopback.family(), SOCK_STREAM));
252 ss_->CreateAsyncSocket(loopback.family(), SOCK_STREAM));
257 ss_->CreateAsyncSocket(loopback.family(), SOCK_STREAM));
300 ss_->CreateAsyncSocket(loopback.family(), SOCK_STREAM));
305 ss_->CreateAsyncSocket(loopback.family(), SOCK_STREAM));
333 ss_->CreateAsyncSocket(loopback.family(), SOCK_STREAM));
338 ss_->CreateAsyncSocket(loopback.family(), SOCK_STREAM));
371 ss_->CreateAsyncSocket(loopback.family(), SOCK_STREAM));
377 ss_->CreateAsyncSocket(loopback.family(), SOCK_STREAM))
    [all...]
natsocketfactory.cc 320 AsyncSocket* NATSocketFactory::CreateAsyncSocket(int type) {
321 return CreateAsyncSocket(AF_INET, type);
324 AsyncSocket* NATSocketFactory::CreateAsyncSocket(int family, int type) {
331 return factory_->CreateAsyncSocket(family, type);
366 AsyncSocket* NATSocketServer::CreateAsyncSocket(int type) {
367 return CreateAsyncSocket(AF_INET, type);
370 AsyncSocket* NATSocketServer::CreateAsyncSocket(int family, int type) {
379 socket = nat->internal_factory()->CreateAsyncSocket(family, type);
383 socket = server_->CreateAsyncSocket(family, type);
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
teststunserver.h 42 : socket_(thread->socketserver()->CreateAsyncSocket(addr.family(),

Completed in 847 milliseconds

1 2 3