HomeSort by relevance Sort by last modified time
    Searched full:gethostname (Results 26 - 50 of 593) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/net/dns/
dns_transaction.h 32 virtual const std::string& GetHostname() const = 0;
  /external/chromium_org/sync/util/
get_session_name.cc 40 session_name = internal::GetHostname();
  /external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/client/
defaults.cc 69 if (gethostname(computer_name, ARRAY_SIZE(computer_name)) != 0)
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
ConnectionPoolTest.java 76 httpAddress = new Address(httpServer.getHostName(), httpServer.getPort(), socketFactory, null,
78 httpSocketAddress = new InetSocketAddress(InetAddress.getByName(httpServer.getHostName()),
82 spdyAddress = new Address(spdyServer.getHostName(), spdyServer.getPort(), socketFactory,
85 spdySocketAddress = new InetSocketAddress(InetAddress.getByName(spdyServer.getHostName()),
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/tester/org/apache/http/
FakeHttpLayerTest.java 35 assertThat("example.com", equalTo(requestMatcherBuilder.getHostname()));
  /frameworks/base/core/java/android/net/http/
HttpConnection.java 56 Socket sock = new Socket(mHost.getHostName(), mHost.getPort());
HttpsConnection.java 178 (mProxyHost.getHostName(), mProxyHost.getPort());
259 proxySock, mHost.getHostName(), mHost.getPort(), true);
293 mHost.getHostName(), mHost.getPort());
311 doHandshakeAndValidateServerCertificates(this, sslSock, mHost.getHostName());
  /external/chromium_org/tools/gyp/pylib/gyp/
MSVSUserFile.py 9 import socket # for gethostname namespace
103 'RemoteMachine': socket.gethostname(),
  /external/okhttp/okhttp-apache/src/main/java/com/squareup/okhttp/apache/
OkApacheClient.java 51 return new HttpHost(address.getHostName(), address.getPort());
61 proxy = new Proxy(HTTP, new InetSocketAddress(host.getHostName(), host.getPort()));
  /packages/services/Mms/src/com/android/mms/service/http/
NetworkAwareClientConnectionOperator.java 125 ArrayList<InetAddress> addresses = resolveHostName(target.getHostName());
156 target.getHostName(),
  /libcore/support/src/test/java/tests/http/
MockWebServer.java 89 public String getHostName() {
90 return InetAddress.getLoopbackAddress().getHostName();
94 return new Proxy(Proxy.Type.HTTP, new InetSocketAddress(getHostName(), getPort()));
104 ? new URL("https://" + getHostName() + ":" + getPort() + path)
105 : new URL("http://" + getHostName() + ":" + getPort() + path);
  /external/apache-http/src/org/apache/http/impl/conn/
DefaultClientConnectionOperator.java 137 InetAddress[] addresses = InetAddress.getAllByName(target.getHostName());
166 target.getHostName(),
232 (conn.getSocket(), target.getHostName(), schm.resolvePort(target.getPort()), true);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/bits/
unistd.h 337 gethostname) __nonnull ((1));
341 __nonnull ((1)) __warnattr ("gethostname called with bigger buflen than "
345 __NTH (gethostname (char *__buf, size_t __buflen)) function
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/bits/
unistd.h 337 gethostname) __nonnull ((1));
341 __nonnull ((1)) __warnattr ("gethostname called with bigger buflen than "
345 __NTH (gethostname (char *__buf, size_t __buflen)) function
  /external/apache-http/src/org/apache/http/protocol/
RequestTargetHost.java 82 targethost = new HttpHost(address.getHostName(), port);
  /external/bison/darwin-lib/
unistd.h 26 are completely included before we replace gethostname. */
46 /* Get all possible declarations of gethostname(). */
103 NonStop Kernel declares gethostname in <netdb.h>, not in <unistd.h>. */
1048 # undef gethostname macro
1049 # define gethostname macro
1051 # undef gethostname macro
    [all...]
  /external/bison/linux-lib/
unistd.h 26 are completely included before we replace gethostname. */
46 /* Get all possible declarations of gethostname(). */
103 NonStop Kernel declares gethostname in <netdb.h>, not in <unistd.h>. */
1048 # undef gethostname macro
1049 # define gethostname macro
1051 # undef gethostname macro
    [all...]
  /external/chromium_org/remoting/tools/
native_messaging_host_test.py 45 return {'type': 'getHostName'}
  /external/llvm/lib/Support/
LockFileManager.cpp 65 gethostname(MyHostname, 255);
108 gethostname(hostname, 255);
  /external/nist-sip/java/gov/nist/core/
Host.java 152 public String getHostname() {
297 return this.getHostname().hashCode();
  /external/mockwebserver/src/main/java/com/google/mockwebserver/
MockWebServer.java 89 public String getHostName() {
91 return InetAddress.getLocalHost().getHostName();
98 return new Proxy(Proxy.Type.HTTP, new InetSocketAddress(getHostName(), getPort()));
109 ? new URL("https://" + getHostName() + ":" + getPort() + path)
110 : new URL("http://" + getHostName() + ":" + getPort() + path);
122 String hostName = getHostName();
  /external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/mockwebserver/
MockWebServer.java 120 public String getHostName() {
122 return InetAddress.getLocalHost().getHostName();
129 return new Proxy(Proxy.Type.HTTP, new InetSocketAddress(getHostName(), getPort()));
139 ? new URL("https://" + getHostName() + ":" + getPort() + path)
140 : new URL("http://" + getHostName() + ":" + getPort() + path);
152 String hostName = getHostName();
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
ServerSocketChannelTest.java 174 assertEquals(bindAddress.getHostName(), boundAddress.getHostName());
193 assertEquals(bindAddr.getHostName(), actualAddr.getHostName());
214 assertEquals(bindAddr.getHostName(), actualAddr.getHostName());
  /cts/tests/tests/net/src/android/net/cts/
DnsTest.java 210 String hostname = addr.getHostName();
217 String hostname = addr.getHostName();
229 String thisResult = new String("getHostName for " + numberOfAddrs + " took " +
  /external/chromium_org/remoting/webapp/
host_dispatcher.js 94 remoting.HostDispatcher.prototype.getHostName = function(onDone, onError) {
98 this.getHostName.bind(this, onDone, onError));
101 this.nativeMessagingHost_.getHostName(onDone, onError);

Completed in 1784 milliseconds

12 3 4 5 6 7 8 91011>>