Searched refs:server (Results 101 - 125 of 550) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/platform/mediastream/
H A DRTCConfiguration.h78 void appendServer(RTCIceServer* server) { m_servers.append(server); } argument
80 RTCIceServer* server(size_t index) { return m_servers[index].get(); } function in class:blink::FINAL
/external/chromium_org/third_party/libjingle/source/talk/examples/relayserver/
H A Drelayserver_main.cc71 cricket::RelayServer server(pthMain);
72 server.AddInternalSocket(int_socket.get());
73 server.AddExternalSocket(ext_socket.get());
/external/chromium_org/third_party/webrtc/base/
H A Dtestclient_unittest.cc37 TestEchoServer server(main, loopback);
42 socket, loopback, server.address());
50 EXPECT_EQ(from, server.address());
67 // Tests whether the TestClient can connect to a server and exchange data.
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 Dwin32socketserver_unittest.cc19 Win32SocketServer server(NULL);
21 server.Wait(1000, true);
27 Win32SocketServer server(NULL);
28 SocketServerScope scope(&server);
30 server.Pump();
H A Dvirtualsocket_unittest.cc208 // Create server
209 AsyncSocket* server = ss_->CreateAsyncSocket(initial_addr.family(), local
211 sink.Monitor(server);
212 EXPECT_NE(0, server->Listen(5)); // Bind required
213 EXPECT_EQ(0, server->Bind(initial_addr));
214 EXPECT_EQ(server->GetLocalAddress().family(), initial_addr.family());
215 EXPECT_EQ(0, server->Listen(5));
216 EXPECT_EQ(server->GetState(), AsyncSocket::CS_CONNECTING);
218 // No pending server connections
219 EXPECT_FALSE(sink.Check(server, testin
275 AsyncSocket* server = ss_->CreateAsyncSocket(initial_addr.family(), local
707 AsyncSocket* server = ss_->CreateAsyncSocket(server_addr.family(), local
[all...]
/external/nanohttpd/samples/src/main/java/fi/iki/elonen/
H A DTempFilesServer.java14 TempFilesServer server = new TempFilesServer();
15 server.setTempFileManagerFactory(new ExampleManagerFactory());
16 ServerRunner.executeInstance(server);
/external/chromium_org/chrome/browser/chromeos/
H A Dproxy_cros_settings_parser.cc59 return proxy.server.is_valid() ?
60 new base::StringValue(proxy.server.host_port_pair().host()) :
65 return proxy.server.is_valid()
66 ? new base::FundamentalValue(proxy.server.host_port_pair().port())
77 // Check if host is a valid URL or a string of valid format <server>::<port>.
81 if (host_port_pair.host().empty()) // See if host is <server>::<port>.
83 if (host_port_pair.host().empty()) // Host is not URL or <server>::<port>.
95 if (proxy.server.is_valid())
96 port = proxy.server.host_port_pair().port();
105 if (proxy.server
[all...]
/external/chromium_org/tools/usb_gadget/
H A Dkeyboard_gadget.py165 """Registers web request handlers with the application server."""
172 server.SwitchGadget(KeyboardGadget())
181 server.gadget.KeyDown(code)
182 server.gadget.KeyUp(code)
185 server.gadget.ModifierDown(hid_constants.ModifierKey.L_SHIFT)
186 server.gadget.KeyDown(code)
187 server.gadget.KeyUp(code)
188 server.gadget.ModifierUp(hid_constants.ModifierKey.L_SHIFT)
194 server.gadget.KeyDown(code)
195 server
197 import server namespace
[all...]
H A Dmouse_gadget.py123 """Registers web request handlers with the application server."""
131 server.SwitchGadget(gadget)
143 server.gadget.ButtonDown(button)
144 server.gadget.ButtonUp(button)
151 server.gadget.Move(x, y)
153 import server namespace
154 server.app.add_handlers('.*$', [
/external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-php/lib/lightopenid/
H A Dopenid.php36 * If the server supports only SREG or OpenID 1.1, these are automaticaly
37 * mapped to SREG names, so that user doesn't have to know anything about the server.
53 protected $server, $version, $trustRoot, $aliases, $identifier_select = false
208 # Found an XRDS document, now let's find the server, and optionally delegate.
216 if ($m[2] == 'server') $this->identifier_select = true;
218 preg_match('#<URI.*?>(.*)</URI>#', $content, $server);
220 if (empty($server)) {
223 # Does the server advertise support for either AX or SREG?
228 $server = $server[ variable
232 $this->server = $server; variable
250 $server = $server[1]; variable
254 $this->server = $server; variable
279 $server = $this->htmlTag($content, 'link', 'rel', 'openid2.provider', 'href'); variable
285 $server = $this->htmlTag($content, 'link', 'rel', 'openid.server', 'href'); variable
296 $this->server = $server; variable
462 $server = $this->discover($this->data['openid_identity']); variable
[all...]
/external/clang/tools/scan-view/
H A DScanView.py19 # Various patterns matched or replaced by server.
86 def __init__(self, report, reporter, parameters, server):
89 self.server = server
98 if self.server.options.debug:
103 if self.server.options.debug:
237 if self.server.options.debug:
245 path = os.path.join(self.server.root, 'report-%s.html'%report)
254 path = posixpath.join(self.server.root, 'index.html')
305 reporter = self.server
[all...]
/external/smack/src/org/xbill/DNS/tests/
H A Dxfrin.java14 "[-s server] [-p port] [-f] zone");
23 String server = null;
42 server = args[++arg];
60 if (server == null) {
68 server = ns[0].rdataToString();
69 System.out.println("sending to server '" + server + "'");
74 server, port, key);
76 xfrin = ZoneTransferIn.newAXFR(zname, server, port, key);
/external/chromium_org/net/http/
H A Dhttp_server_properties_manager.cc138 const net::HostPortPair& server) {
140 return http_server_properties_impl_->SupportsSpdy(server);
144 const net::HostPortPair& server,
148 http_server_properties_impl_->SetSupportsSpdy(server, support_spdy);
153 const net::HostPortPair& server) {
155 return http_server_properties_impl_->HasAlternateProtocol(server);
160 const net::HostPortPair& server) {
162 return http_server_properties_impl_->GetAlternateProtocol(server);
166 const net::HostPortPair& server,
172 server, alternate_por
137 SupportsSpdy( const net::HostPortPair& server) argument
143 SetSupportsSpdy( const net::HostPortPair& server, bool support_spdy) argument
152 HasAlternateProtocol( const net::HostPortPair& server) argument
159 GetAlternateProtocol( const net::HostPortPair& server) argument
165 SetAlternateProtocol( const net::HostPortPair& server, uint16 alternate_port, AlternateProtocol alternate_protocol, double alternate_probability) argument
176 SetBrokenAlternateProtocol( const net::HostPortPair& server) argument
183 WasAlternateProtocolRecentlyBroken( const net::HostPortPair& server) argument
190 ConfirmAlternateProtocol( const net::HostPortPair& server) argument
197 ClearAlternateProtocol( const net::HostPortPair& server) argument
382 net::HostPortPair server = net::HostPortPair::FromString(server_str); local
615 const net::HostPortPair& server = it->first; local
686 net::HostPortPair server = net::HostPortPair::FromString(s); local
702 const net::HostPortPair& server = map_it->first; local
718 const net::HostPortPair& server = map_it->first; local
737 const net::HostPortPair& server = map_it->first; local
754 const net::HostPortPair& server = map_it->first; local
[all...]
/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/nanohttpd/
H A DREADME.md3 *NanoHttpd* is a light-weight HTTP server designed for embedding in other applications.
32 * File server supports directory listing, ```index.html``` and ```index.htm```.
33 * File server supports partial content (streaming).
34 * File server supports ETags.
35 * File server does the 301 redirection trick for directories without ```/```.
36 * File server supports simple skipping for files (continue download).
37 * File server serves also very long files without memory overhead.
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
H A Dtest_endtoend.py51 # Special message that tells the echo server to start closing handshake
54 # If you want to use external server to run end to end tests, set following
145 # Don't send close message on channel id 1 so that server-initiated
157 """An end-to-end test that launches pywebsocket standalone server as a
159 checks if the server behaves correctly by exchanging opening handshake and
180 # TODO(toyoshim): Eliminate launching a standalone server on using
181 # external server.
221 server = self._run_server()
223 # TODO(tyoshino): add some logic to poll the server until it
233 self._kill_process(server
[all...]
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/proxy_configuration/test/
H A Dproxy_form_controller_test.js343 var server = this.controller_.singleProxy;
344 this.assertNull(server);
346 server = this.controller_.httpProxy;
347 this.assertEqual('http', server.scheme);
348 this.assertEqual('http.example.com', server.host);
349 this.assertEqual(1, server.port);
351 server = this.controller_.httpsProxy;
352 this.assertEqual('https', server.scheme);
353 this.assertEqual('https.example.com', server.host);
354 this.assertEqual(2, server
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/irc/
H A Dirclib.py35 * Handles multiple simultaneous IRC server connections.
36 * Handles server PONGing transparently.
37 * Messages to the IRC server are done by calling methods on an IRC
39 * Messages from an IRC server triggers events, which can be caught
41 * Reading from and writing to IRC server sockets are normally done
49 * A kind of simple, single-server, object-oriented IRC client class
55 * Data is not written asynchronously to the server, i.e. the write()
82 # send data asynchronously to the server (and DCC connections)
87 # connection.quit() only sends QUIT to the server.
88 # ERROR from the server trigger
164 def server(self): member in class:IRC
[all...]
/external/conscrypt/src/test/java/org/conscrypt/
H A DTrustManagerImplTest.java75 // chain3 should be server/intermediate/root
80 X509Certificate server = chain3[0];
81 X509Certificate[] chain2 = new X509Certificate[] { server, intermediate };
82 X509Certificate[] chain1 = new X509Certificate[] { server };
91 assertValid(chain3, trustManager(server));
92 assertValid(chain2, trustManager(server));
93 assertValid(chain1, trustManager(server));
108 // chain3 should be server/intermediate/root
113 X509Certificate server = chain3[0];
115 X509Certificate[] chain4 = new X509Certificate[] { server, intermediat
[all...]
/external/okhttp/samples/static-server/src/main/java/com/squareup/okhttp/sample/
H A DSampleServer.java32 MockWebServer server = new MockWebServer();
33 server.useHttps(sslContext.getSocketFactory(), false);
34 server.setDispatcher(this);
35 server.play(port);
113 SampleServer server = new SampleServer(sslContext, root, port);
114 server.run();
/external/qemu/telephony/
H A Dsimulator.c166 SysChannel server = _server; local
170 printf( "connection accepted for server channel, getting handler socket\n" );
171 handler = sys_channel_create_tcp_handler( server );
183 SysChannel server; local
188 server = sys_channel_create_tcp_server( port );
191 sys_channel_on( server, SYS_EVENT_READ, accept_func, server );
/external/chromium_org/chrome/browser/net/spdyproxy/
H A Ddata_reduction_proxy_chrome_configurator_unittest.cc36 std::string server; local
40 dict->GetString("server", &server);
41 ASSERT_EQ(expected_server, server);
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dpreview.py10 # There are two modes: server- and render- mode. The default is server, in which
21 # and for profiling the server. For example,
29 # Copy all the files necessary to run the server. These are cleaned up when the
30 # server quits.
45 # Sanitize path to guarantee that it stays within the server.
66 description='Runs a server to preview the extension documentation.',
69 help='port to run the server on')
72 'the server, e.g. apps/storage.html. The path may optionally end '
117 server variable in class:_RequestHandler
[all...]
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Dportallocatorfactory.cc61 stun_hosts.insert(stun_it->server);
74 turn[i].server, protocol, turn[i].secure));
80 LOG(LS_WARNING) << "Ignoring TURN server " << turn[i].server << ". "

Completed in 1108 milliseconds

1234567891011>>