Searched defs:server (Results 101 - 125 of 237) sorted by relevance

12345678910

/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
H A Drelayserver.h47 // Relays traffic between connections to the server that are "bound" together.
52 // Creates a server, which will use this thread to post messages to itself.
62 // Updates the set of sockets that the server uses to talk to "internal"
67 // Updates the set of sockets that the server uses to talk to "external"
69 // know that these addresses represent a relay server.
79 // Removes this server socket from the list.
104 // Called when a packet is received by the server on one of its sockets.
141 // Accept connections on this server socket.
148 // Maintains information about a connection to the server. Each connection is
202 RelayServer* server, cons
206 RelayServer* server() { return server_; } function in class:cricket::RelayServerBinding
[all...]
/external/chromium_org/third_party/libjingle/source/talk/xmpp/
H A Dxmppclientsettings.h95 void set_server(const rtc::SocketAddress& server) { argument
96 server_ = server;
106 const rtc::SocketAddress& server() const { return server_; } function in class:buzz::XmppClientSettings
/external/chromium_org/third_party/skia/experimental/Networking/
H A DSkSockets.cpp316 hostent* server = gethostbyname(hostname); local
317 if (server) {
319 memcpy((char*)&fServerAddr.sin_addr.s_addr, (char*)server->h_addr,
320 server->h_length);
356 SkDebugf("Succesfully reached server\n");
/external/chromium_org/third_party/skia/experimental/nanomsg/
H A Dpicture_demo.cpp127 static void server(const char* dataEndpoint, const char* controlEndpoint, SkCanvas* canvas) { function
171 // Sending anything (including this 0-byte message) will tell server() to stop.
176 DEFINE_string2(png, w, "", ".png to write (as server)");
177 DEFINE_bool(stop, false, "If true, tell server to stop and write its canvas out as a .png.");
199 server(FLAGS_data[0], FLAGS_control[0], &canvas);
/external/chromium_org/third_party/webrtc/base/
H A Dfirewallsocketserver.cc24 FirewallSocket(FirewallSocketServer* server, AsyncSocket* socket, int type) argument
25 : AsyncSocketAdapter(socket), server_(server), type_(type) {
105 FirewallSocketServer::FirewallSocketServer(SocketServer* server, argument
108 : server_(server), manager_(manager),
211 void FirewallManager::AddServer(FirewallSocketServer* server) { argument
213 servers_.push_back(server);
216 void FirewallManager::RemoveServer(FirewallSocketServer* server) { argument
218 servers_.erase(std::remove(servers_.begin(), servers_.end(), server),
H A Dfirewallsocketserver.h22 // This SocketServer shim simulates a rule-based firewall server.
29 FirewallSocketServer(SocketServer * server,
35 void set_socketserver(SocketServer* server) { argument
41 server_ = server;
105 void AddServer(FirewallSocketServer * server);
106 void RemoveServer(FirewallSocketServer * server);
H A Dhttpclient.h76 // an http response is received. In these cases, the http server may have
99 // reset clears the server, request, and response structures. It will also
104 const SocketAddress& server() const { return server_; } function in class:rtc::HttpClient
H A Dhttpserver.cc120 HttpServer::Connection::Connection(int connection_id, HttpServer* server) argument
121 : connection_id_(connection_id), server_(server),
280 void HttpListenServer::OnConnectionClosed(HttpServer* server, argument
H A Dmacsocketserver.cc128 MacCFSocketServer* server = static_cast<MacCFSocketServer*>(info); local
129 ASSERT(NULL != server);
130 server->OnWakeUpCallback();
/external/deqp/execserver/
H A DxsExecutionServer.cpp141 ExecutionRequestHandler::ExecutionRequestHandler (ExecutionServer* server, de::Socket* socket) argument
142 : ConnectionHandler (server, socket)
143 , m_execServer (server)
/external/deqp/framework/platform/android/
H A DtcuAndroidExecService.cpp305 ConnectionHandler::ConnectionHandler (JavaVM* vm, xs::ExecutionServer* server, de::Socket* socket) argument
306 : xs::ExecutionRequestHandler (server, socket)
/external/guava/guava/src/com/google/common/net/
H A DInetAddresses.java673 private final Inet4Address server; field in class:InetAddresses.TeredoInfo
681 * <p>Both server and client can be {@code null}, in which case the
689 public TeredoInfo(@Nullable Inet4Address server, argument
697 if (server != null) {
698 this.server = server;
700 this.server = ANY4;
714 return server;
759 Inet4Address server = getInet4Address(copyOfRange(bytes, 4, 8));
773 return new TeredoInfo(server, clien
[all...]
/external/mtpd/
H A Dmtpd.c261 void create_socket(int family, int type, char *server, char *port) argument
272 log_print(INFO, "Connecting to %s port %s via %s", server, port, interface);
274 error = getaddrinfo(server, port, &hints, &records);
/external/nist-sip/java/gov/nist/javax/sip/message/
H A DMessageFactoryImpl.java70 private static ServerHeader server; field in class:MessageFactoryImpl
442 if (server != null) {
443 sipResponse.setHeader(server);
476 if (server != null) {
477 sipResponse.setHeader(server);
509 if (server != null) {
510 sipResponse.setHeader(server);
790 public void setDefaultServerHeader(ServerHeader server) { argument
791 MessageFactoryImpl.server = server;
[all...]
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
H A DHttpOverSpdyTest.java80 protected final MockWebServer server = new MockWebServer(); field in class:HttpOverSpdyTest
81 protected final String hostName = server.getHostName();
87 server.useHttps(sslContext.getSocketFactory(), false);
98 server.shutdown();
103 server.enqueue(response);
104 server.play();
106 connection = client.open(server.getUrl("/foo"));
111 RecordedRequest request = server.takeRequest();
114 assertContains(request.getHeaders(), hostHeader + ": " + hostName + ":" + server.getPort());
118 server
[all...]
/external/skia/experimental/Networking/
H A DSkSockets.cpp316 hostent* server = gethostbyname(hostname); local
317 if (server) {
319 memcpy((char*)&fServerAddr.sin_addr.s_addr, (char*)server->h_addr,
320 server->h_length);
356 SkDebugf("Succesfully reached server\n");
/external/skia/experimental/nanomsg/
H A Dpicture_demo.cpp127 static void server(const char* dataEndpoint, const char* controlEndpoint, SkCanvas* canvas) { function
171 // Sending anything (including this 0-byte message) will tell server() to stop.
176 DEFINE_string2(png, w, "", ".png to write (as server)");
177 DEFINE_bool(stop, false, "If true, tell server to stop and write its canvas out as a .png.");
199 server(FLAGS_data[0], FLAGS_control[0], &canvas);
/external/chromium_org/net/http/
H A Dhttp_server_properties_impl.cc78 // If we already have a valid canonical server, we're done.
84 // Now attempt to find a server which matches this origin and set it as
206 const HostPortPair& server) {
209 AlternateProtocolMap::const_iterator it = alternate_protocol_map_.Get(server);
215 return GetCanonicalHost(server) != canonical_host_to_origin_map_.end();
219 const HostPortPair& server) {
224 if (EndsWith(server.host(), canoncial_suffixes_[i], false)) {
233 const HostPortPair& server) {
234 DCHECK(HasAlternateProtocol(server));
237 AlternateProtocolMap::iterator it = alternate_protocol_map_.Get(server);
205 HasAlternateProtocol( const HostPortPair& server) argument
218 GetCanonicalSuffix( const HostPortPair& server) argument
232 GetAlternateProtocol( const HostPortPair& server) argument
251 SetAlternateProtocol( const HostPortPair& server, uint16 alternate_port, AlternateProtocol alternate_protocol, double alternate_probability) argument
307 SetBrokenAlternateProtocol( const HostPortPair& server) argument
338 WasAlternateProtocolRecentlyBroken( const HostPortPair& server) argument
343 ConfirmAlternateProtocol( const HostPortPair& server) argument
348 ClearAlternateProtocol( const HostPortPair& server) argument
477 RemoveCanonicalHost( const HostPortPair& server) argument
[all...]
/external/chromium_org/sync/engine/net/
H A Dserver_connection_manager.cc109 LOG(ERROR) << "Mismatched content lengths, server claimed " <<
178 const string& server,
182 : sync_server_(server),
237 // This could happen in case like server outage/bug. E.g. token returned by
238 // first request is considered invalid by sync server and because
239 // of token server's caching policy, etc, same token is returned on second
328 // Returns the current server parameters in server_url and port.
177 ServerConnectionManager( const string& server, int port, bool use_ssl, CancelationSignal* cancelation_signal) argument
H A Dserver_connection_manager.h68 // the server.
70 // TODO(idana): the server no longer returns RETRY so we should remove this
125 // Use this class to interact with the sync server.
165 void GetServerParams(std::string* server, argument
168 server->assign(scm_->sync_server_);
181 ServerConnectionManager(const std::string& server,
205 // Returns the current server parameters in server_url, port and use_ssl.
213 // communication with the server.
216 // Closes any active network connections to the sync server.
270 // The sync_server_ is the server tha
[all...]
/external/chromium_org/third_party/libjingle/source/talk/examples/call/
H A Dcall_main.cc222 DEFINE_string(s, "talk.google.com", "The connection server to use.");
226 DEFINE_bool(testserver, false, "Use test server.");
277 std::string server = FLAG_s; local
375 int colon = server.find(':');
377 host = server;
380 host = server.substr(0, colon);
381 port = atoi(server.substr(colon + 1).c_str());
487 Print(("Logging in to " + server + " as " + jid.Str() + "\n").c_str());
/external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/client/
H A Dconductor.cc102 webrtc::PeerConnectionInterface::IceServer server; local
103 server.uri = GetPeerConnectionString();
104 servers.push_back(server);
304 void Conductor::StartLogin(const std::string& server, int port) { argument
307 server_ = server;
308 client_->Connect(server, port, GetPeerName());
421 // This way we can be sure that messages are sent to the server
H A Dpeer_connection_client.cc46 // Delay between server connection retries, in milliseconds
110 void PeerConnectionClient::Connect(const std::string& server, int port, argument
112 ASSERT(!server.empty());
122 if (server.empty() || client_name.empty()) {
130 server_address_.SetIP(server);
343 LOG(LS_ERROR) << "No content length field specified by the server.";
357 // First response. Let's store our server assigned ID.
479 LOG(LS_ERROR) << "Received error from server";
/external/chromium_org/tools/android/forwarder/
H A Dforwarder.cc94 : server(a_server),
97 Server* server; member in struct:__anon16410::ForwarderThreadInfo
193 Server* server = thread_info->server; local
196 ForwarderInfo* info = server->GetForwarderInfo(index);
250 server->DisposeForwarderInfo(index);
254 // Listens to a server socket. On incoming request, forward it to the host.
257 Server* server = reinterpret_cast<Server*>(arg); local
259 int forwarder_index = server->GetFreeForwarderIndex();
267 int socket = HANDLE_EINTR(accept(server
[all...]
/external/dnsmasq/contrib/wrt/
H A Ddhcp_release.c17 to tell the local DHCP server to delete a particular lease.
250 struct in_addr server, lease; local
276 a DHCP server */
286 server = find_interface(lease, nl, if_nametoindex(argv[1]));
305 *(p++) = sizeof(server);
306 memcpy(p, &server, sizeof(server));
307 p += sizeof(server);
321 dest.sin_addr = server;

Completed in 1571 milliseconds

12345678910