/packages/apps/Email/src/com/android/email/activity/setup/ |
SecurityRequiredDialogFragment.java | 43 private final static String ARGS_HOST_NAME = "SecurityRequiredDialog.HostName"; 57 public static SecurityRequiredDialogFragment newInstance(String hostName) { 60 arguments.putString(ARGS_HOST_NAME, hostName); 69 final String hostName = arguments.getString(ARGS_HOST_NAME); 77 R.string.account_setup_security_policies_required_fmt, hostName))
|
/external/llvm/lib/Support/ |
LockFileManager.cpp | 44 StringRef Hostname; 46 std::tie(Hostname, PIDStr) = getToken(MB->getBuffer(), " "); 50 auto Owner = std::make_pair(std::string(Hostname), PID); 60 bool LockFileManager::processStillExecuting(StringRef Hostname, int PID) { 67 if (MyHostname == Hostname && getsid(PID) == -1 && errno == ESRCH) 105 char hostname[256]; local 106 hostname[255] = 0; 107 hostname[0] = 0; 108 gethostname(hostname, 255); 109 Out << hostname << ' ' << getpid() [all...] |
/external/dnsmasq/src/ |
lease.c | 158 lease_set_hostname(lease, config->hostname, 1); 203 ourprintf(&err, "%s ", lease->hostname ? lease->hostname : "*"); 256 if (!(daemon->options & OPT_DHCP_FQDN) && lease->hostname) 257 cache_add_dhcp_entry(lease->hostname, &lease->addr, lease->expires); 274 if (lease->hostname) 428 free(lease->hostname); 431 lease->old_hostname = lease->hostname; 433 lease->hostname = lease->fqdn = NULL; 441 if (lease->hostname && name && hostname_isequal(lease->hostname, name) [all...] |
/external/chromium_org/net/socket/ |
socks5_client_socket_unittest.cc | 39 const std::string& hostname, 89 const std::string& hostname, 109 HostResolver::RequestInfo(HostPortPair(hostname, port)))); 186 const std::string hostname = "my-host-name"; local 195 request.push_back(hostname.size()); 196 request.append(hostname); 211 hostname, 80, NULL); 236 // the transport socket first) because the hostname is too long. 243 const std::string hostname = "www.google.com"; local 269 hostname, 80, &net_log_) [all...] |
/external/dnsmasq/contrib/dynamic-dnsmasq/ |
dynamic-dnsmasq.pl | 30 # port 9020, and include the hostname, user and pass, and it should 53 die "Usage: $0 ADD USER PASS HOSTNAME\n" unless @ARGV == 4; 75 print "user $key, hostname $domain, ip $ip\n"; 118 unless ( defined $cgi{'hostname'} ) { 126 if ( authorize($user, $pass, $cgi{'hostname'}, $cgi{'myip'}) == 0 ) { 142 my ($user, $pass, $hostname) = @_; 144 $X->put($user, join("\t", ($pass, $hostname))); 150 my ($user, $pass, $hostname) = @_; 161 my $hostname = shift; 165 if ( defined $h{$user} and ($spass eq $pass) and ($shost eq $hostname) ) { [all...] |
/external/chromium_org/net/dns/ |
host_resolver_impl_unittest.cc | 57 ResolveKey(const std::string& hostname, AddressFamily address_family) 58 : hostname(hostname), address_family(address_family) {} 61 (address_family == other.address_family && hostname < other.hostname); 63 std::string hostname; member in struct:net::__anon13226::MockHostResolverProc::ResolveKey 104 void AddRule(const std::string& hostname, AddressFamily family, 107 rules_[ResolveKey(hostname, family)] = result; 110 void AddRule(const std::string& hostname, AddressFamily family, 115 AddRule(hostname, family, result) 711 std::string hostname = "a_"; local 865 std::string hostname = req->info().hostname(); local 962 std::string hostname; local 1632 std::string hostname = base::StringPrintf("nx_%u", i); local 1666 std::string hostname = (i % 2) == 0 ? base::StringPrintf("nx_%u", i) local [all...] |
dns_test_util.cc | 41 const std::string& hostname, 45 hostname_(hostname), 50 // Find the relevant rule which matches |qtype| and prefix of |hostname|. 54 (hostname.size() >= prefix.size()) && 55 (hostname.compare(0, prefix.size(), prefix) == 0)) { 172 const std::string& hostname, 177 new MockTransaction(rules_, hostname, qtype, callback);
|
/external/chromium_org/net/quic/test_tools/ |
crypto_test_utils_openssl.cc | 117 const string& hostname, 120 channel_id_key->reset(new TestChannelIDKey(HostnameToKey(hostname))); 125 static EVP_PKEY* HostnameToKey(const string& hostname) { 126 // In order to generate a deterministic key for a given hostname the 127 // hostname is hashed with SHA-256 and the resulting digest is treated as a 134 SHA256_Update(&sha256, hostname.data(), hostname.size());
|
/external/smack/src/org/xbill/DNS/ |
SimpleResolver.java | 46 SimpleResolver(String hostname) throws UnknownHostException { 47 if (hostname == null) { 48 hostname = ResolverConfig.getCurrentConfig().server(); 49 if (hostname == null) 50 hostname = defaultResolver; 53 if (hostname.equals("0")) 56 addr = InetAddress.getByName(hostname); 83 setDefaultResolver(String hostname) { 84 defaultResolver = hostname;
|
/external/chromium_org/chrome/browser/policy/cloud/ |
test_request_interceptor.h | 28 // Intercepts all requests to the given hostname while in scope, and allows 38 // Will intercept request to |hostname| made over HTTP. 40 const std::string& hostname,
|
/external/chromium_org/components/password_manager/core/browser/ |
psl_matching_helper.h | 38 // websites that do not have a single hostname for entering credentials. It 42 // the only hostname we should be accepting credentials on for any domain 45 // For owners of domains where a single hostname is always used when your
|
/external/chromium_org/native_client_sdk/src/examples/api/socket/ |
index.html | 21 <code>--allow-nacl-socket-api=<hostname></code> command line 23 First set a server address in the form of 'hostname:port', then push the 38 <input type="text" id="hostname" size="25"
|
/external/chromium_org/sync/util/ |
nigori.h | 37 // Initialize the client with the given |hostname|, |username| and |password|. 38 bool InitByDerivation(const std::string& hostname, 48 // Derives a secure lookup name from |type| and |name|. If |hostname|,
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
DOMURLUtilsReadOnly.h | 58 static String hostname(const KURL& url) { return url.host(); } function in class:WebCore::DOMURLUtilsReadOnly 59 String hostname() { return hostname(url()); } function in class:WebCore::DOMURLUtilsReadOnly
|
/external/chromium_org/third_party/WebKit/Source/platform/network/ |
ProxyServer.h | 54 ProxyServer(Type type, const String& hostName, int port) 56 , m_hostName(hostName) 62 const String& hostName() const { return m_hostName; }
|
/external/libpcap/Win32/Src/ |
gai_strerror.c | 51 "Address family for hostname not supported", /* 1 */ 57 "No address associated with hostname", /* 7 */ 58 "hostname nor servname provided, or not known", /* EAI_NONAME */
|
/external/lldb/test/pexpect-2.4/examples/ |
bd_serv.py | 7 --hostname : sets the remote host name to open an ssh connection to. 140 optlist, args = getopt.getopt(sys.argv[1:], 'h?d', ['help','h','?', 'hostname=', 'username=', 'password=', 'port=', 'watch']) 151 hostname = "127.0.0.1" 162 if '--hostname' in options: 163 hostname = options['--hostname'] 168 print "Login for %s@%s:%s" % (username, hostname, port) 183 child.login (hostname, username, password) 289 username:password@hostname:port. All fields are options expcet hostname. [all...] |
/external/llvm/utils/bugpoint/ |
RemoteRunSafely.sh | 11 # RemoteRunSafely.sh <hostname> [-l <login_name>] [-p <port>] 15 # <hostname> is the remote host to execute the program, 25 echo "./RemoteRunSafely.sh <hostname> [-l <login_name>] [-p <port>] " \
|
/packages/apps/Email/src/com/android/email/mail/transport/ |
MailTransport.java | 120 // After the socket connects to an SSL server, confirm that the hostname is as expected 148 * NOTE: No explicit hostname verification is required here, because it's handled automatically 178 * Verify the hostname of the certificate used by the other end of a 179 * connected socket. You MUST call this if you did not supply a hostname 181 * redundantly if the hostname has already been verified. 183 * <p>Wildcard certificates are allowed to verify any matching hostname, 188 * @param hostname The expected hostname of the remote server 192 private static void verifyHostname(Socket socket, String hostname) throws IOException { 206 if (!HOSTNAME_VERIFIER.verify(hostname, session)) [all...] |
/device/generic/goldfish/opengl/shared/OpenglCodecCommon/ |
TcpStream.h | 27 int connect(const char* hostname, unsigned short port);
|
/external/android-clat/ |
clatd.conf | 13 # hostname to use to lookup plat subnet. must contain only A records
|
/external/chromium_org/chrome/android/shell/java/src/org/chromium/chrome/shell/ |
ChromeShellPKCS11AuthenticationManager.java | 24 public String getClientCertificateAlias(String hostName, int port) {
|
/external/chromium_org/chrome/common/net/ |
predictor_common.h | 20 // Each element of this vector is a hostname that needs to be looked up.
|
/external/chromium_org/net/quic/crypto/ |
crypto_utils.cc | 49 // TODO(rtenneti): Support RFC2396 hostname. 52 // would consider valid. By far the most common hostname character NOT 62 string CryptoUtils::NormalizeHostname(const char* hostname) { 64 string host(CanonicalizeHost(hostname, &host_info));
|
proof_source_chromium.h | 26 virtual bool GetProof(const std::string& hostname,
|