HomeSort by relevance Sort by last modified time
    Searched defs:host (Results 201 - 225 of 695) sorted by null

1 2 3 4 5 6 7 891011>>

  /prebuilts/ndk/9/platforms/android-4/arch-arm/usr/include/linux/mmc/
card.h 55 struct mmc_host *host; member in struct:mmc_card
99 #define mmc_card_release_host(c) mmc_release_host((c)->host)
  /prebuilts/ndk/9/platforms/android-5/arch-arm/usr/include/linux/mmc/
card.h 55 struct mmc_host *host; member in struct:mmc_card
99 #define mmc_card_release_host(c) mmc_release_host((c)->host)
  /prebuilts/ndk/9/platforms/android-8/arch-arm/usr/include/linux/mmc/
card.h 55 struct mmc_host *host; member in struct:mmc_card
99 #define mmc_card_release_host(c) mmc_release_host((c)->host)
  /prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/linux/mmc/
card.h 55 struct mmc_host *host; member in struct:mmc_card
99 #define mmc_card_release_host(c) mmc_release_host((c)->host)
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/linux/mmc/
card.h 55 struct mmc_host *host; member in struct:mmc_card
99 #define mmc_card_release_host(c) mmc_release_host((c)->host)
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/linux/mmc/
card.h 55 struct mmc_host *host; member in struct:mmc_card
99 #define mmc_card_release_host(c) mmc_release_host((c)->host)
  /system/netd/server/
MDnsSdListener.cpp 156 const char *domain, const char *host, int port, int txtLen, void *txtRecord) {
159 interfaceName, serviceName, serviceType, domain, host, port, txtLen);
173 serviceType, domain, host, port, txtLen, txtRecord, &MDnsSdListenerRegisterCallback,
430 char *host = NULL; // will use default hostname local
453 serviceType, domain, host, port, ptr - txtRecord, txtRecord);
  /cts/tests/tests/appwidget/src/android/appwidget/cts/
AppWidgetTest.java 158 // Create a host and start listening.
159 AppWidgetHost host = new AppWidgetHost(getInstrumentation().getTargetContext(), 0); local
160 host.deleteHost();
161 host.startListening();
164 final int appWidgetId = host.allocateAppWidgetId();
185 host.deleteAppWidgetId(appWidgetId);
188 host.deleteAppWidgetId(appWidgetId);
189 host.deleteHost();
211 // Create a host and start listening.
212 AppWidgetHost host = spy(new AppWidgetHost(getInstrumentation().getTargetContext(), 0)) local
326 AppWidgetHost host = spy(new AppWidgetHost( local
409 AppWidgetHost host = new AppWidgetHost( local
460 AppWidgetHost host = new AppWidgetHost( local
516 AppWidgetHost host = new AppWidgetHost( local
565 AppWidgetHost host = new AppWidgetHost( local
672 AppWidgetHost host = new AppWidgetHost( local
738 AppWidgetHost host = new AppWidgetHost( local
832 AppWidgetHost host = new AppWidgetHost( local
906 AppWidgetHost host = new AppWidgetHost( local
1002 AppWidgetHost host = new AppWidgetHost( local
1081 AppWidgetHost host = new AppWidgetHost( local
1195 final AppWidgetHost host = new AppWidgetHost(context, 0); local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.commons.httpclient_3.1.0.v201005080502.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.core.net_1.2.200.v20130430-1352.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.core.net_1.2.200.v20130430-1352.jar 
  /external/apache-harmony/x-net/src/test/api/java/org/apache/harmony/xnet/tests/javax/net/ssl/
SSLEngineTest.java 40 * SSLEngine object with null host and -1 port
52 * Test for <code>SSLEngine(String host, int port)</code> constructor
66 * Test for <code>SSLEngine(String host, int port)</code> constructor
69 String host = "new host"; local
71 SSLEngine e = new mySSLEngine(host, port);
72 assertEquals(e.getPeerHost(), host); local
92 String host = "new host"; local
96 SSLEngine e = new mySSLEngine(host, port)
120 String host = "new host"; local
153 String host = "new host"; local
183 String host = "new host"; local
199 String host = "new host"; local
224 String host = "new host"; local
252 String host = "new host"; local
314 String host = "new host"; local
331 String host = "new host"; local
372 String host = super.getPeerHost(); local
    [all...]
  /external/apache-http/android/src/android/net/http/
RequestQueue.java 47 * Requests, indexed by HttpHost (scheme, host, port)
153 ConnectionThread getThread(HttpHost host) {
158 if (connection != null && connection.mHost.equals(host)) {
166 public Connection getConnection(Context context, HttpHost host) {
167 host = RequestQueue.this.determineHost(host);
168 Connection con = mIdleCache.getConnection(host);
171 con = Connection.getConnection(mContext, host, mProxyHost,
260 String host = Proxy.getHost(mContext); local
261 if (HttpLog.LOGV) HttpLog.v("RequestQueue.setProxyConfig " + host);
371 HttpHost host = new HttpHost(uri.getHost(), uri.getPort(), uri.getScheme()); local
492 HttpHost host = request.mProxyHost == null ? request.mHost : request.mProxyHost; local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
LSSerializerImpl.java 1001 String host = url.getHost(); local
1275 String host = url.getHost(); local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
URI.java 30 * the various components (scheme, host, port, userinfo, path, query
39 * by an authority segment (comprised of user information, host, and
123 /** If specified, stores the host for this URI; otherwise null.
169 * accordingly - setting the scheme, userinfo, host,port, path, query
269 * @param p_userinfo the URI userinfo (cannot be specified if host
273 * be specified if host is null)
301 Utils.messages.createMessage(MsgKey.ER_NO_USERINFO_IF_NO_HOST, null)); //"Userinfo may not be specified if host is not specified!");
307 Utils.messages.createMessage(MsgKey.ER_NO_PORT_IF_NO_HOST, null)); //"Port may not be specified if host is not specified!");
430 // host to empty string
482 // if we found a host, then we've got a network path, so we're don
652 String host = null; local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/
URI.java 32 * the various components (scheme, host, port, userinfo, path, query
41 * by an authority segment (comprised of user information, host, and
120 /** If specified, stores the host for this URI; otherwise null.
166 * accordingly - setting the scheme, userinfo, host,port, path, query
266 * @param p_userinfo the URI userinfo (cannot be specified if host
270 * be specified if host is null)
298 XMLMessages.createXMLMessage(XMLErrorResources.ER_NO_USERINFO_IF_NO_HOST, null)); //"Userinfo may not be specified if host is not specified!");
304 XMLMessages.createXMLMessage(XMLErrorResources.ER_NO_PORT_IF_NO_HOST, null)); //"Port may not be specified if host is not specified!");
450 // host to empty string
502 // if we found a host, then we've got a network path, so we're don
672 String host = null; local
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
PKIXNameConstraintValidator.java 650 // on particular host
790 // email2 specifies a particular host
851 // email specifies a host
880 // email2 specifies a particular host
928 // email2 specifies a particular host
989 // email specifies a host
1018 // email2 specifies a particular host
1140 // email2 specifies a particular host
1410 String host = extractHostFromURL(uri); local
    [all...]
  /external/fio/engines/
rdma.c 82 char host[64]; member in struct:rdmaio_data
908 static int fio_rdmaio_setup_connect(struct thread_data *td, const char *host,
918 if (inet_aton(host, &rd->addr.sin_addr) != 1) {
921 hent = gethostbyname(host);
1054 char host[64], buf[128]; local
1078 strcpy(host, buf);
1079 if (!strlen(host))
1150 ret = fio_rdmaio_setup_connect(td, host, port);
1185 log_err("fio: bad rdma host/port/protocol: %s\n", td->o.filename);
  /external/fio/
gfio.h 133 char *host; member in struct:gui_entry
  /external/iproute2/lib/
utils.c 51 __u32 host = ~mask; local
54 if ((host & (host + 1)) != 0)
  /external/ipsec-tools/src/racoon/
isakmp_cfg.c 1591 static struct hostent *host = NULL; local
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/servlets/
ProxyServlet.java 84 * <li>HostHeader - Force the host header to a particular value
276 * Helper function to process a parameter value containing a list of new entries and initialize the specified host map.
281 * target host map
296 String host = idx > 0?entry.substring(0,idx):entry; local
299 host = host.trim();
300 PathMap pathMap = hostMap.get(host);
304 hostMap.put(host,pathMap);
318 * @param host
324 public boolean validateDestination(String host, String path
672 String host = ""; local
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/webapp/
WebInfConfiguration.java 244 * will be called "Jetty_"+host+"_"+port+"__"+context+"_"+virtualhost
597 * <code>"Jetty_"+host+"_"+port+"__"+resourceBase+"_"+context+"_"+virtualhost+base36_hashcode_of_whole_string</code>
599 * host and port uniquely identify the server
600 * context and virtual host uniquely identify the webapp
608 //get the host and the port from the first connector
616 //Get the host
617 String host = (connectors==null||connectors[0]==null?"":connectors[0].getHost()); local
618 if (host == null)
619 host = "0.0.0.0";
620 canonicalName.append(host);
    [all...]
  /external/libnfc-nci/src/nfa/include/
nfa_hci_api.h 51 #define NFA_HCI_HOST_LIST_EVT 0x09 /* Received list of Host from Host controller */
85 UINT8 dest_host; /* Peer host to which this pipe is connected */
112 UINT8 num_uicc_created_pipes; /* Number of pipes created by UICC host */
135 UINT8 source_gate; /* DH host gate to which the one end of pipe is attached */
136 UINT8 dest_host; /* Destination host whose gate is the other end of the pipe is attached to */
137 UINT8 dest_gate; /* Destination host gate to which the other end of pipe is attached */
164 tNFA_STATUS status; /* Status og get host list operation */
165 UINT8 num_hosts; /* Number of hosts in the host network */
166 UINT8 host[NFA_HCI_MAX_HOST_IN_NETWORK]; /* List of host in the host network * member in struct:__anon12826
    [all...]
  /external/libvncserver/x11vnc/
util.c 335 * utility to get the current host name
338 char host[MAXN]; local
340 if (gethostname(host, MAXN) == 0) {
341 host[MAXN-1] = '\0';
342 return strdup(host);

Completed in 1131 milliseconds

1 2 3 4 5 6 7 891011>>