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

1 2 3 4 5 6 7 8 91011

  /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/org/conscrypt/javax/net/ssl/
SNIHostNameTest.java 44 SNIHostName hostName = new SNIHostName(idnEncoded);
45 assertEquals("xn--ihqwcrb4cv8a8dqg056pqjye", hostName.getAsciiName());
46 assertEquals(StandardConstants.SNI_HOST_NAME, hostName.getType());
47 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 );
  /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)) {
  /test/vti/dashboard/src/main/java/com/android/vts/entity/
TestRunEntity.java 110 public static final String HOST_NAME = "hostName";
124 public final String hostName;
141 * @param hostName The name of host machine.
150 String testBuildId, String hostName, long passCount, long failCount,
158 this.hostName = hostName;
176 * @param hostName The name of host machine.
183 String testBuildId, String hostName, long passCount, long failCount,
185 this(parentKey, type, startTimestamp, endTimestamp, testBuildId, hostName, passCount,
197 testRunEntity.setProperty(HOST_NAME, this.hostName.toLowerCase())
    [all...]
  /libcore/ojluni/src/main/java/java/net/
InetAddress.java 205 * Reserve the original application specified hostname.
207 * The original hostname is useful for domain-based endpoint
213 * Oracle JSSE provider is using this original hostname, via
222 InetAddressHolder(String hostName, int address, int family) {
223 this.originalHostName = hostName;
224 this.hostName = hostName;
229 void init(String hostName, int family) {
230 this.originalHostName = hostName;
231 this.hostName = hostName
    [all...]
  /test/vti/dashboard/src/main/java/com/android/vts/api/
TestDataForDevServlet.java 91 private String hostName;
270 testRun.endTimestamp, testRun.testBuildId, testRun.hostName,
  /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");
  /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);
  /prebuilts/gradle-plugin/com/android/tools/devicelib/26.0.0/
devicelib-26.0.0.jar 

Completed in 1435 milliseconds

1 2 3 4 5 6 7 8 91011