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

1 2 3 4 5 6 7 8 910

  /external/jcommander/src/test/java/com/beust/jcommander/args/
ArgsI18N1.java 26 String hostName;
ArgsI18N2.java 29 String hostName;
ArgsI18N2New.java 30 String hostName;
  /external/conscrypt/openjdk-integ-tests/src/test/java/libcore/javax/net/ssl/
SNIHostNameTest.java 41 SNIHostName hostName = new SNIHostName(idnEncoded);
42 assertEquals("xn--ihqwcrb4cv8a8dqg056pqjye", hostName.getAsciiName());
43 assertEquals(StandardConstants.SNI_HOST_NAME, hostName.getType());
44 assertEquals(Arrays.toString(idnEncoded), Arrays.toString(hostName.getEncoded()));
  /libcore/luni/src/test/java/libcore/javax/net/ssl/
SNIHostNameTest.java 35 SNIHostName hostName = new SNIHostName(idnEncoded);
36 assertEquals("xn--ihqwcrb4cv8a8dqg056pqjye", hostName.getAsciiName());
37 assertEquals(StandardConstants.SNI_HOST_NAME, hostName.getType());
38 assertEquals(Arrays.toString(idnEncoded), Arrays.toString(hostName.getEncoded()));
  /external/apache-http/src/org/apache/http/client/protocol/
RequestAddCookies.java 139 String hostName = targetHost.getHostName();
146 hostName,
  /external/mdnsresponder/mDNSWindows/DNSServiceBrowser/Windows/Sources/
ChooserDialog.h 46 std::string hostName;
ChooserDialog.cpp 816 std::string hostName;
834 hostName = p->hostName;
866 UTF8StringToStringObject( hostName.c_str(), s );
    [all...]
  /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))
AccountCheckSettingsFragment.java 100 * @param hostName Passed back from the MessagingException
102 void onCheckSettingsSecurityRequired(String hostName);
233 String hostName = ex.getMessage();
234 if (hostName != null) {
235 hostName = hostName.trim();
237 getCallbackTarget().onCheckSettingsSecurityRequired(hostName);
AccountSetupIncomingFragment.java 392 final String hostname = recvAuth.mAddress; local
393 if (hostname != null) {
394 mServerView.setText(hostname);
536 final String hostName =
539 sendAuth.setConnection(sendAuth.mProtocol, hostName, sendAuth.mPort, sendAuth.mFlags);
  /frameworks/base/core/java/org/apache/http/conn/ssl/
AbstractVerifier.java 153 // establish the socket to the hostname in the certificate.
154 String hostName = host.trim().toLowerCase(Locale.ENGLISH);
177 match = hostName.endsWith(cn.substring(1));
181 match = countDots(hostName) == countDots(cn);
184 match = hostName.equals(cn);
191 throw new SSLException("hostname in certificate didn't match: <" + host + "> !=" + buf);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
SocketTransportWrapper.java 58 * parsed as "hostname:port" or "port", if it contains
64 String hostName = null;
73 hostName = address.substring(0, i);
83 if (hostName != null) {
84 hostAddr = InetAddress.getByName(hostName);
92 if (hostName != null) {
99 // is to use the address instead of the hostname.
151 String hostName = null;
159 hostName = address.substring(0, i);
175 transportSocket = new Socket(hostName, port)
    [all...]
  /external/ltp/testcases/network/sockets/
ltpClient.c 67 int ltp_run_ping_tests(char *hostName);
68 int ltp_run_traceroute_tests(char *hostName);
72 int network_listener(char *hostname, int pid);
73 void ltp_traceroute(struct sockaddr_in *rawTraceAddr, char *hostName, int pid);
96 char hostName[MAX_MSG_LEN],
106 ("usage :<server-hostname> <trace-hostName> <data1> ... <dataN> \n");
111 strncpy(hostName, argv[1], MAX_MSG_LEN);
115 hostEntry = gethostbyname(hostName);
118 printf("%s: unknown host passed'%s' \n", progName, hostName);
    [all...]
  /external/mdnsresponder/mDNSWindows/DLLX/
DNSSD.cpp 299 STDMETHODIMP CDNSSD::GetAddrInfo(DNSSDFlags flags, ULONG ifIndex, DNSSDAddressFamily addressFamily, BSTR hostName, IGetAddrInfoListener *listener, IDNSSDService **service)
312 ok = BSTRToUTF8( hostName, hostNameUTF8 );
622 CComBSTR hostName;
630 ok = UTF8ToBSTR( hostNameUTF8, hostName );
654 listener->ServiceResolved( service, ( DNSSDFlags ) flags, ifIndex, fullName, hostName, port, record );
803 CComBSTR hostName;
811 ok = UTF8ToBSTR( hostNameUTF8, hostName );
836 listener->GetAddrInfoReply( service, ( DNSSDFlags ) flags, ifIndex, hostName, addressFamily, address, ttl );
DNSSDService.cpp 1082 STDMETHODIMP CDNSSDService::GetAddrInfo(DNSSDFlags flags, ULONG ifIndex, DNSSDAddressFamily addressFamily, BSTR hostName, IDNSSDEventManager *eventManager, IDNSSDService **service)
1112 ok = BSTRToUTF8( hostName, hostNameUTF8 );
1564 CComBSTR hostName;
1580 ok = UTF8ToBSTR( hostNameUTF8, hostName );
1620 eventManager->Fire_ServiceResolved( service, ( DNSSDFlags ) flags, ifIndex, fullName, hostName, ntohs( port ), record );
1817 CComBSTR hostName;
1833 ok = UTF8ToBSTR( hostNameUTF8, hostName );
1883 eventManager->Fire_AddressFound( service, ( DNSSDFlags ) flags, ifIndex, hostName, addressFamily, address, ttl );
  /frameworks/base/services/core/java/com/android/server/pm/
InstantAppResolver.java 152 final String hostName = intent.getData().getHost();
153 final InstantAppDigest digest = new InstantAppDigest(hostName, 5 /*maxDigests*/);
212 shaPrefix, token, hostName, callback, callbackHandler, startTime);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
InetAddressThreadTest.java 86 String hostName = ia.getHostName();
91 // may not include a domain suffix on the hostname
92 if (!hostName.startsWith(correctName)) {
97 + hostName
  /packages/services/Telephony/src/com/android/services/telephony/
ConferenceParticipantConnection.java 184 // In this case, hostName will be anonymous.invalid and there is an extra parameter for
200 String hostName = numberParts[1];
202 // If the hostname portion of the SIP URI is the invalid host string, presentation is
204 if (hostName.equals(ANONYMOUS_INVALID_HOST)) {
  /libcore/ojluni/src/main/java/java/net/
InetAddress.java 187 * Reserve the original application specified hostname.
189 * The original hostname is useful for domain-based endpoint
195 * Oracle JSSE provider is using this original hostname, via
204 InetAddressHolder(String hostName, int address, int family) {
205 this.originalHostName = hostName;
206 this.hostName = hostName;
211 void init(String hostName, int family) {
212 this.originalHostName = hostName;
213 this.hostName = hostName
    [all...]
  /external/apache-http/android/src/android/net/http/
RequestQueue.java 424 String hostName = entry.getKey().getHostName();
425 StringBuilder line = new StringBuilder("p" + count++ + " " + hostName + " ");
  /external/mockwebserver/src/main/java/com/google/mockwebserver/
MockWebServer.java 138 String hostName = getHostName();
139 return hostName.contains(".") ? hostName : ".local";
  /external/okhttp/okhttp-urlconnection/src/main/java/com/squareup/okhttp/internal/huc/
HttpURLConnectionImpl.java 272 String hostName = url.getHost();
278 hostName = proxyAddress.getHostName();
281 return new SocketPermission(hostName + ":" + hostPort, "connect, resolve");
  /cts/common/util/tests/src/com/android/compatibility/common/util/
ResultHandlerTest.java 243 String hostName = "";
245 hostName = InetAddress.getLocalHost().getHostName();
249 hostName, OS_NAME, OS_VERSION, OS_ARCH, JAVA_VENDOR,
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/wifi/
WifiP2pManagerFacade.java 115 String hostName = null;
118 hostName = addr.getHostName();
121 msg.putString("groupOwnerHostName", hostName);

Completed in 847 milliseconds

1 2 3 4 5 6 7 8 910