Searched defs:host (Results 1 - 25 of 1032) sorted by last modified time

1234567891011>>

/external/wpa_supplicant_8/hostapd/src/wps/
H A Dwps_upnp.c310 char *host; local
331 host = scratch_mem;
332 path = os_strchr(host, '/');
334 *path++ = '\0'; /* null terminate host */
337 delim = os_strchr(host, ':');
339 *delim = '\0'; /* null terminate host name for now */
364 rerr = getaddrinfo(host, NULL /* fill in port ourselves */,
368 rerr, gai_strerror(rerr), host);
375 host_len = os_strlen(host);
394 os_memcpy(mem, host, host_le
[all...]
/external/wpa_supplicant_8/hs20/client/
H A Dosu_client.c2698 char *host = NULL; local
2703 host = get_hostname(ctx->server_url);
2719 if (host && os_strcasecmp(host, cert->dnsname[i]) == 0)
2724 if (host && !found) {
2726 host);
2728 host);
2729 os_free(host);
2733 os_free(host);
/external/wpa_supplicant_8/src/wps/
H A Dwps_upnp.c310 char *host; local
331 host = scratch_mem;
332 path = os_strchr(host, '/');
334 *path++ = '\0'; /* null terminate host */
337 delim = os_strchr(host, ':');
339 *delim = '\0'; /* null terminate host name for now */
364 rerr = getaddrinfo(host, NULL /* fill in port ourselves */,
368 rerr, gai_strerror(rerr), host);
375 host_len = os_strlen(host);
394 os_memcpy(mem, host, host_le
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/wps/
H A Dwps_upnp.c310 char *host; local
331 host = scratch_mem;
332 path = os_strchr(host, '/');
334 *path++ = '\0'; /* null terminate host */
337 delim = os_strchr(host, ':');
339 *delim = '\0'; /* null terminate host name for now */
364 rerr = getaddrinfo(host, NULL /* fill in port ourselves */,
368 rerr, gai_strerror(rerr), host);
375 host_len = os_strlen(host);
394 os_memcpy(mem, host, host_le
[all...]
/external/valgrind/main/tests/
H A Ds390x_features.c204 model_info *host, *from, *to, *p; local
242 host = get_host();
243 if (host == NULL) return 1; // unknown model
245 // printf("host = %s (%s)\n", host->cpuinfo_name, host->real_name);
284 if (p == host) return 0;
287 return 1; // host does not match CPU specification
/external/valgrind/main/coregrind/m_gdbserver/
H A Dremote-utils.c281 -from-vgdb-to-pid-by-user-on-host and -to-vgdb-from-pid-by-user-on-host
288 const HChar *user, *host; local
305 host = VG_(getenv)("HOST");
306 if (host == NULL) host = VG_(getenv)("HOSTNAME");
307 if (host == NULL) host = "???";
309 len = strlen(name) + strlen(user) + strlen(host) + 40;
322 pid, user, host);
[all...]
/external/valgrind/main/coregrind/
H A Dpub_core_transtab.h47 Addr host; member in struct:__anon32749
H A Dvgdb.c514 const HChar *user, *host; local
521 host = getenv("HOST");
522 if (host == NULL) host = getenv("HOSTNAME");
523 if (host == NULL) host = "???";
525 len = strlen(vgdb_prefix) + strlen(user) + strlen(host) + 40;
531 pid, user, host);
533 pid, user, host);
535 pid, user, host);
[all...]
/external/tcpdump/
H A Daddrtoname.c107 static struct hostent host; local
112 host.h_name = hostbuf;
125 strcpy(host.h_name, hname);
126 return &host;
/external/smack/asmack-master/lib/
H A Dhttpclient-4.1.3.jar ... CookieOrigin extends java.lang.Object { private final String host private final int port private final String path private final ...
/external/smack/asmack-master/static-src/custom/org/jivesoftware/smack/
H A DAndroidConnectionConfiguration.java26 * A DNS SRV lookup will be performed to find out the actual host address
47 public AndroidConnectionConfiguration(String host, int port, String name) { argument
48 super(host, port, name);
/external/smack/src/com/kenai/jbosh/
H A DBOSHClientConfig.java58 * Proxy host.
198 * @param host host or domain to be served by the remote server. Note
199 * that this is not necessarily the host name or domain name of the
206 final String host,
215 if (host == null) {
218 if (host.contains(":")) {
225 bRoute = protocol + ":" + host + ":" + port;
239 "Proxy host name cannot be null or empty"));
334 * @param cProxyHost proxy host
204 setRoute( final String protocol, final String host, final int port) argument
[all...]
/external/smack/src/org/jivesoftware/smack/
H A DAndroidConnectionConfiguration.java26 * A DNS SRV lookup will be performed to find out the actual host address
47 public AndroidConnectionConfiguration(String host, int port, String name) { argument
48 super(host, port, name);
H A DBOSHConfiguration.java60 * @param host the hostname or IP address of the connection manager
69 public BOSHConfiguration(boolean https, String host, int port, String filePath, String xmppDomain) { argument
70 super(host, port, xmppDomain);
81 * @param host the hostname or IP address of the connection manager
91 public BOSHConfiguration(boolean https, String host, int port, String filePath, ProxyInfo proxy, String xmppDomain) { argument
92 super(host, port, xmppDomain, proxy);
H A DBOSHConnection.java125 * @param host the hostname or IP address of the connection manager
134 public BOSHConnection(boolean https, String host, int port, String filePath, String xmppDomain) { argument
135 super(new BOSHConfiguration(https, host, port, filePath, xmppDomain));
H A DConnectionConfiguration.java48 * of the server. However, there are some servers like google where host would be
53 private String host; field in class:ConnectionConfiguration
100 * A DNS SRV lookup will be performed to find out the actual host address
106 // Perform DNS lookup to get host and port to use
121 * A DNS SRV lookup will be performed to find out the actual host address
128 // Perform DNS lookup to get host and port to use
134 * Creates a new ConnectionConfiguration using the specified host, port and
143 * @param host the host where the XMPP server is running.
147 public ConnectionConfiguration(String host, in argument
167 ConnectionConfiguration(String host, int port, String serviceName, ProxyInfo proxy) argument
179 ConnectionConfiguration(String host, int port) argument
192 ConnectionConfiguration(String host, int port, ProxyInfo proxy) argument
777 initHostAddresses(String host, int port) argument
[all...]
/external/smack/src/org/jivesoftware/smack/proxy/
H A DDirectSocketFactory.java43 public Socket createSocket(String host, int port) argument
47 InetAddress resolved[] = InetAddress.getAllByName(host);
52 public Socket createSocket(String host ,int port, InetAddress localHost,
56 return new Socket(host,port,localHost,localPort);
59 public Socket createSocket(InetAddress host, int port) argument
63 newSocket.connect(new InetSocketAddress(host,port));
H A DHTTPProxySocketFactory.java50 public Socket createSocket(String host, int port) argument
53 return httpProxifiedSocket(host, port);
56 public Socket createSocket(String host ,int port, InetAddress localHost,
60 return httpProxifiedSocket(host, port);
63 public Socket createSocket(InetAddress host, int port) argument
66 return httpProxifiedSocket(host.getHostAddress(), port);
77 private Socket httpProxifiedSocket(String host, int port) argument
83 String hostport = "CONNECT " + host + ":" + port;
H A DSocks4ProxySocketFactory.java43 public Socket createSocket(String host, int port) argument
46 return socks4ProxifiedSocket(host,port);
50 public Socket createSocket(String host ,int port, InetAddress localHost,
54 return socks4ProxifiedSocket(host,port);
57 public Socket createSocket(InetAddress host, int port) argument
60 return socks4ProxifiedSocket(host.getHostAddress(),port);
71 private Socket socks4ProxifiedSocket(String host, int port) argument
98 destination host, and userid, in the following format.
119 InetAddress addr=InetAddress.getByName(host);
145 server makes a connection to the specified port of the destination host
[all...]
H A DSocks5ProxySocketFactory.java43 public Socket createSocket(String host, int port) argument
46 return socks5ProxifiedSocket(host,port);
49 public Socket createSocket(String host ,int port, InetAddress localHost,
54 return socks5ProxifiedSocket(host,port);
58 public Socket createSocket(InetAddress host, int port) argument
62 return socks5ProxifiedSocket(host.getHostAddress(),port);
75 private Socket socks5ProxifiedSocket(String host, int port) argument
251 byte[] hostb=host.getBytes();
/external/smack/src/org/jivesoftware/smack/sasl/
H A DSASLAnonymous.java42 public void authenticate(String username, String host, CallbackHandler cbh) throws IOException { argument
46 public void authenticate(String username, String host, String password) throws IOException { argument
H A DSASLFacebookConnect.java67 public void authenticate(String apiKeyAndSessionKey, String host, String sessionSecret) argument
84 this.hostname = host;
88 sc = Sasl.createSaslClient(mechanisms, null, "xmpp", host, props, this);
92 public void authenticate(String username, String host, CallbackHandler cbh) argument
96 sc = Sasl.createSaslClient(mechanisms, null, "xmpp", host, props, cbh);
H A DSASLGSSAPIMechanism.java57 * @param host the hostname where the user account resides.
61 public void authenticate(String username, String host, CallbackHandler cbh) throws IOException, XMPPException { argument
65 sc = Sasl.createSaslClient(mechanisms, username, "xmpp", host, props, cbh);
76 * @param host the hostname where the user account resides.
80 public void authenticate(String username, String host, String password) throws IOException, XMPPException { argument
84 sc = Sasl.createSaslClient(mechanisms, username, "xmpp", host, props, this);
H A DSASLMechanism.java76 * @param host the hostname where the user account resides.
81 public void authenticate(String username, String host, String password) throws IOException, XMPPException { argument
88 this.hostname = host;
92 sc = Sasl.createSaslClient(mechanisms, username, "xmpp", host, props, this);
101 * @param host the hostname where the user account resides.
106 public void authenticate(String username, String host, CallbackHandler cbh) throws IOException, XMPPException { argument
109 sc = Sasl.createSaslClient(mechanisms, username, "xmpp", host, props, cbh);
/external/smack/src/org/jivesoftware/smackx/bytestreams/socks5/packet/
H A DBytestream.java100 * Adds a potential stream host that the remote user can connect to to receive the file.
102 * @param JID The JID of the stream host.
103 * @param address The internet address of the stream host.
104 * @return The added stream host.
111 * Adds a potential stream host that the remote user can connect to to receive the file.
113 * @param JID The JID of the stream host.
114 * @param address The internet address of the stream host.
115 * @param port The port on which the remote host is seeking connections.
116 * @return The added stream host.
119 StreamHost host
131 addStreamHost(final StreamHost host) argument
[all...]

Completed in 270 milliseconds

1234567891011>>