HomeSort by relevance Sort by last modified time
    Searched defs:hostname (Results 1 - 25 of 190) sorted by null

1 2 3 4 5 6 7 8

  /external/chromium_org/sync/util/
get_session_name_linux.cc 16 char hostname[HOST_NAME_MAX]; local
17 if (gethostname(hostname, HOST_NAME_MAX) == 0) // Success.
18 return hostname;
cryptographer.h 31 std::string hostname; member in struct:syncer::KeyParams
  /system/extras/tests/bionic/libc/common/
test_gethostname.c 36 char hostname[512]; local
39 ret = gethostname(hostname, sizeof(hostname));
45 printf("gethostname() returned '%s'\n", hostname);
test_gethostbyname.c 38 char* hostname = "localhost"; local
43 hostname = argv[1];
45 hent = gethostbyname(hostname);
47 printf("gethostbyname(%s) returned NULL !!\n", hostname);
50 printf( "gethostbyname(%s) returned:\n", hostname);
  /external/chromium/chrome/common/remoting/
chromoting_host_info.h 18 std::string hostname; member in struct:remoting::ChromotingHostInfo
  /external/chromium_org/chrome/browser/extensions/
ad_view_browsertest.cc 143 std::string hostname = url.host(); local
145 content::URLRequestPrepackagedInterceptor interceptor(scheme, hostname);
  /external/chromium_org/third_party/WebKit/Source/core/workers/
WorkerLocation.cpp 50 String WorkerLocation::hostname() const function in class:WebCore::WorkerLocation
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/channel/
X11ServerData.java 16 public String hostname; field in class:X11ServerData
  /external/openssh/
sshlogin.c 78 strlcpy(buf, li.hostname, bufsize);
90 char *time_string, hostname[MAXHOSTNAMELEN] = "", buf[512]; local
103 last_login_time = get_last_login_time(uid, user, hostname,
104 sizeof(hostname));
109 if (strcmp(hostname, "") == 0)
114 time_string, hostname);
  /device/generic/goldfish/opengl/tests/gles_android_wrapper/
ServerConnection.cpp 97 char *hostname; local
99 hostname = strdup(defaultServer);
101 hostname = strdup(s);
104 if (tcpStream->connect(hostname, CODEC_SERVER_PORT) < 0) {
105 ALOGE("couldn't connect to %s\n", hostname);
106 free(hostname);
110 LOGI("connecting to server %s\n", hostname);
111 free(hostname);
  /external/chromium/chrome/browser/sync/util/
cryptographer.h 24 std::string hostname; member in struct:browser_sync::KeyParams
  /external/chromium/third_party/libjingle/source/talk/base/
socketaddress.h 49 // the hostname will be immediately resolved to an IP (which may block for
53 SocketAddress(const std::string& hostname, int port);
64 // Determines if this is a nil address (empty hostname, any IP, null port)
73 // Changes the IP of this address to the given one, and clears the hostname.
76 // Changes the hostname of this address to the given one.
78 void SetIP(const std::string& hostname);
80 // Sets the IP address while retaining the hostname. Useful for bypassing
87 // Returns the hostname
88 const std::string& hostname() const { return hostname_; } function in class:talk_base::SocketAddress
102 // Returns hostname:por
    [all...]
  /external/chromium_org/net/cert/
mock_cert_verifier.cc 18 const std::string& hostname,
22 hostname(hostname),
30 std::string hostname; member in struct:net::MockCertVerifier::Rule
40 const std::string& hostname,
52 if (!MatchPattern(hostname, it->hostname))
  /external/chromium_org/third_party/libjingle/source/talk/base/
socketaddress.h 51 // literal IP string or a hostname to be resolved later.
52 SocketAddress(const std::string& hostname, int port);
67 // Determines if this is a nil address (empty hostname, any IP, null port)
76 // Changes the IP of this address to the given one, and clears the hostname
80 // Changes the IP of this address to the given one, and clears the hostname.
83 // Changes the hostname of this address to the given one.
85 void SetIP(const std::string& hostname);
87 // Sets the IP address while retaining the hostname. Useful for bypassing
92 // Sets the IP address while retaining the hostname. Useful for bypassing
99 // Returns the hostname
100 const std::string& hostname() const { return hostname_; } function in class:talk_base::SocketAddress
    [all...]
  /external/chromium_org/webkit/common/database/
database_identifier.h 33 std::string hostname() const { return hostname_; } function in class:webkit_database::DatabaseIdentifier
40 const std::string& hostname,
  /external/ganymed-ssh2/examples/
PortForwarding.java 26 String hostname = "127.0.0.1"; local
36 Connection conn = new Connection(hostname);
Basic.java 18 String hostname = "127.0.0.1"; local
26 Connection conn = new Connection(hostname);
PublicKeyAuthentication.java 19 String hostname = "127.0.0.1"; local
29 Connection conn = new Connection(hostname);
StdoutAndStderr.java 18 String hostname = "127.0.0.1"; local
26 Connection conn = new Connection(hostname);
UsingKnownHosts.java 22 String hostname = "somehost"; local
37 Connection conn = new Connection(hostname);
  /external/chromium/net/base/
host_cache.h 24 // Stores the latest address list that was looked up for a hostname.
42 Key(const std::string& hostname, AddressFamily address_family,
44 : hostname(hostname),
50 // |hostname| under assumption that integer comparisons are faster than
54 other.hostname == hostname);
59 // |hostname| under assumption that integer comparisons are faster than
65 return hostname < other.hostname;
68 std::string hostname; member in struct:net::HostCache::Key
    [all...]
host_cache_unittest.cc 22 // Builds a key for |hostname|, defaulting the address family to unspecified.
23 HostCache::Key Key(const std::string& hostname) {
24 return HostCache::Key(hostname, ADDRESS_FAMILY_UNSPECIFIED, 0);
182 std::string hostname = base::StringPrintf("valid%d", i); local
183 cache.Set(Key(hostname), OK, AddressList(), now);
189 std::string hostname = base::StringPrintf("expired%d", i); local
191 cache.Set(Key(hostname), OK, AddressList(), t);
197 std::string hostname = base::StringPrintf("negative%d", i); local
198 cache.Set(Key(hostname), ERR_NAME_NOT_RESOLVED, AddressList(), now);
272 // Tests that the same hostname can be duplicated in the cache, so long a
    [all...]
  /external/chromium/net/url_request/
url_request_filter.cc 32 const std::string& hostname, URLRequest::ProtocolFactory* factory) {
33 hostname_handler_map_[make_pair(scheme, hostname)] = factory;
52 const std::string& hostname) {
54 hostname_handler_map_.find(make_pair(scheme, hostname));
75 // Check to see if this URL is masked by a hostname handler.
124 // Check the hostname map first.
125 const std::string& hostname = request->url().host(); local
128 hostname_handler_map_.find(make_pair(scheme, hostname));
133 // Not in the hostname map, check the url map.
  /external/chromium_org/net/dns/
host_cache.h 25 // Stores the latest address list that was looked up for a hostname.
42 Key(const std::string& hostname, AddressFamily address_family,
44 : hostname(hostname),
50 // |hostname| under assumption that integer comparisons are faster than
56 return hostname < other.hostname;
59 std::string hostname; member in struct:net::HostCache::Key
115 // Map from hostname (presumably in lowercase canonicalized format) to
  /external/llvm/lib/Support/
LockFileManager.cpp 44 StringRef Hostname;
46 tie(Hostname, PIDStr) = getToken(MB->getBuffer(), " ");
50 return std::make_pair(std::string(Hostname), PID);
57 bool LockFileManager::processStillExecuting(StringRef Hostname, int PID) {
64 if (MyHostname == Hostname && getsid(PID) == -1 && errno == ESRCH)
100 char hostname[256]; local
101 hostname[255] = 0;
102 hostname[0] = 0;
103 gethostname(hostname, 255);
104 Out << hostname << ' ' << getpid()
    [all...]

Completed in 249 milliseconds

1 2 3 4 5 6 7 8