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

1 2 3

  /external/chromium_org/third_party/libjingle/source/talk/base/
socketfactory.h 43 // CreateSocket(int) and CreateSocket(int,int). Will remove CreateSocket(int)
45 virtual Socket* CreateSocket(int type) = 0;
46 virtual Socket* CreateSocket(int family, int type) = 0;
nullsocketserver.h 51 virtual talk_base::Socket* CreateSocket(int type) {
56 virtual talk_base::Socket* CreateSocket(int family, int type) {
macsocketserver.h 26 virtual Socket* CreateSocket(int type) { return NULL; }
27 virtual Socket* CreateSocket(int family, int type) { return NULL; }
physicalsocketserver.h 81 virtual Socket* CreateSocket(int type);
82 virtual Socket* CreateSocket(int family, int type);
sslsocketfactory.h 74 virtual Socket* CreateSocket(int type);
75 virtual Socket* CreateSocket(int family, int type);
natsocketfactory.h 60 virtual Socket* CreateSocket(int type);
61 virtual Socket* CreateSocket(int family, int type);
148 virtual Socket* CreateSocket(int type);
149 virtual Socket* CreateSocket(int family, int type);
sslsocketfactory.cc 118 Socket* SslSocketFactory::CreateSocket(int type) {
119 return CreateSocket(AF_INET, type);
122 Socket* SslSocketFactory::CreateSocket(int family, int type) {
123 return factory_->CreateSocket(family, type);
firewallsocketserver.h 61 // Settings to control whether CreateSocket or Socket::Listen succeed.
78 virtual Socket* CreateSocket(int type);
79 virtual Socket* CreateSocket(int family, int type);
win32socketserver.h 118 virtual Socket* CreateSocket(int type);
119 virtual Socket* CreateSocket(int family, int type);
natsocketfactory.cc 330 Socket* NATSocketFactory::CreateSocket(int type) {
331 return CreateSocket(AF_INET, type);
334 Socket* NATSocketFactory::CreateSocket(int family, int type) {
376 Socket* NATSocketServer::CreateSocket(int type) {
377 return CreateSocket(AF_INET, type);
380 Socket* NATSocketServer::CreateSocket(int family, int type) {
  /external/chromium/third_party/libjingle/source/talk/base/
socketfactory.h 42 virtual Socket* CreateSocket(int type) = 0;
sslsocketfactory.cc 117 Socket* SslSocketFactory::CreateSocket(int type) {
118 return factory_->CreateSocket(type);
physicalsocketserver.h 81 virtual Socket* CreateSocket(int type);
sslsocketfactory.h 73 virtual Socket* CreateSocket(int type);
  /external/chromium_org/net/base/
winsock_util.h 37 virtual SOCKET CreateSocket(int family, int type, int protocol) = 0;
winsock_util.cc 60 return g_socket_factory->CreateSocket(family, type, protocol);
  /external/chromium_org/ipc/
ipc_channel_factory.h 43 bool CreateSocket();
ipc_channel_factory.cc 16 CreateSocket();
23 bool ChannelFactory::CreateSocket() {
  /external/chromium_org/tools/android/forwarder2/
host_controller.h 70 scoped_ptr<Socket> CreateSocket();
host_controller.cc 102 scoped_ptr<Socket> host_server_data_socket(CreateSocket());
126 scoped_ptr<Socket> adb_data_socket(CreateSocket());
149 scoped_ptr<Socket> HostController::CreateSocket() {
  /external/chromium_org/jingle/notifier/base/
xmpp_connection.cc 26 buzz::AsyncSocket* CreateSocket(
70 CreateSocket(xmpp_client_settings,
  /external/chromium_org/v8/test/cctest/
test-sockets.cc 73 server_ = OS::CreateSocket();
125 Socket* client = OS::CreateSocket();
  /external/v8/test/cctest/
test-sockets.cc 48 server_ = OS::CreateSocket();
100 Socket* client = OS::CreateSocket();
  /external/chromium/net/socket/
tcp_client_socket_win.h 90 int CreateSocket(const struct addrinfo* ai);
  /external/chromium_org/cloud_print/gcp20/prototype/
dns_sd_server.h 58 bool CreateSocket();

Completed in 881 milliseconds

1 2 3