HomeSort by relevance Sort by last modified time
    Searched refs:host (Results 251 - 275 of 1440) sorted by null

<<11121314151617181920>>

  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/mmc/
host.h 70 void (*request)(struct mmc_host *host, struct mmc_request *req);
71 void (*set_ios)(struct mmc_host *host, struct mmc_ios *ios);
72 int (*get_ro)(struct mmc_host *host);
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/mmc/
host.h 70 void (*request)(struct mmc_host *host, struct mmc_request *req);
71 void (*set_ios)(struct mmc_host *host, struct mmc_ios *ios);
72 int (*get_ro)(struct mmc_host *host);
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/mmc/
host.h 70 void (*request)(struct mmc_host *host, struct mmc_request *req);
71 void (*set_ios)(struct mmc_host *host, struct mmc_ios *ios);
72 int (*get_ro)(struct mmc_host *host);
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/mmc/
host.h 70 void (*request)(struct mmc_host *host, struct mmc_request *req);
71 void (*set_ios)(struct mmc_host *host, struct mmc_ios *ios);
72 int (*get_ro)(struct mmc_host *host);
  /prebuilt/ndk/android-ndk-r5/platforms/android-3/arch-arm/usr/include/linux/mmc/
host.h 70 void (*request)(struct mmc_host *host, struct mmc_request *req);
71 void (*set_ios)(struct mmc_host *host, struct mmc_ios *ios);
72 int (*get_ro)(struct mmc_host *host);
  /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-arm/usr/include/linux/mmc/
host.h 70 void (*request)(struct mmc_host *host, struct mmc_request *req);
71 void (*set_ios)(struct mmc_host *host, struct mmc_ios *ios);
72 int (*get_ro)(struct mmc_host *host);
  /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-x86/usr/include/linux/mmc/
host.h 70 void (*request)(struct mmc_host *host, struct mmc_request *req);
71 void (*set_ios)(struct mmc_host *host, struct mmc_ios *ios);
72 int (*get_ro)(struct mmc_host *host);
  /sdk/eclipse/scripts/
create_adt_symlinks.sh 42 HOST=`uname`
43 if [ "$HOST" == "Linux" ]; then
45 ln -svf $BACK/out/host/linux-x86/framework/$LIB.jar "$DEST/"
52 elif [ "$HOST" == "Darwin" ]; then
54 ln -svf $BACK/out/host/darwin-x86/framework/$LIB.jar "$DEST/"
61 elif [ "${HOST:0:6}" == "CYGWIN" ]; then
63 cp -vf out/host/windows-x86/framework/$LIB.jar "$DEST/"
69 echo "Unsupported platform ($HOST). Nothing done."
  /bionic/libc/netbsd/
gethnamaddr.c 192 rs->host.h_name = NULL;
235 rs->host.h_name = bp;
238 qname = rs->host.h_name;
242 rs->host.h_aliases = rs->host_aliases;
245 rs->host.h_addr_list = rs->h_addr_ptrs;
297 rs->host.h_name = bp;
352 rs->host.h_name = bp;
367 rs->host.h_name = bp;
375 map_v4v6_hostent(&rs->host, &bp, ep);
378 return &rs->host;
    [all...]
  /build/tools/droiddoc/test/stubs/
func.sh 36 LD_LIBRARY_PATH=out/host/$PLATFORM/lib \
40 -J-Djava.library.path=out/host/$PLATFORM/lib \
44 -docletpath out/host/$PLATFORM/framework/clearsilver.jar:out/host/$PLATFORM/framework/droiddoc.jar:out/host/$PLATFORM/framework/apicheck.jar \
  /external/chromium/third_party/libjingle/source/talk/xmpp/
xmppclientsettings.h 44 void set_host(const std::string & host) { host_ = host; }
55 const std::string & host() const { return host_; } function in class:buzz::XmppUserSettings
88 void set_proxy_host(const std::string & host) { proxy_host_ = host; }
  /frameworks/base/core/java/android/net/http/
IdleCache.java 67 HttpHost host, Connection connection) {
72 HttpLog.v("IdleCache size " + mCount + " host " + host);
80 entry.mHost = host;
97 synchronized Connection getConnection(HttpHost host) {
104 if (eHost != null && eHost.equals(host)) {
  /libcore/luni/src/main/java/java/net/
InetAddress.java 190 * Converts an array of byte arrays representing raw IP addresses of a host
208 * Gets all IP addresses associated with the given {@code host} identified
210 * configured name service. If the host name is empty or {@code null} an
211 * {@code UnknownHostException} is thrown. If the host name is a literal IP
215 * @param host the hostname or literal IP string to be resolved.
216 * @return the array of addresses associated with the specified host.
219 public static InetAddress[] getAllByName(String host) throws UnknownHostException {
220 return getAllByNameImpl(host).clone();
224 * Returns the InetAddresses for {@code host}. The returned array is shared
227 private static InetAddress[] getAllByNameImpl(String host) throws UnknownHostException
370 String host = Libcore.os.uname().nodename; local
    [all...]
  /external/chromium/chrome/browser/ui/gtk/extensions/
extension_popup_gtk.cc 37 ExtensionHost* host,
42 host_(host),
48 // If the host had somehow finished loading, then we'd miss the notification
50 if (host->did_stop_loading()) {
54 Source<Profile>(host->profile()));
58 Source<Profile>(host->profile()));
109 // popup's extension host is still loading.
166 ExtensionHost* host = manager->CreatePopup(url, browser);
168 new ExtensionPopupGtk(browser, host, anchor, inspect);
  /external/chromium/googleurl/src/
url_parse_file.cc 72 // the scheme given in |after_slashes|. This will initialize the host, path,
83 // host with no path (this will end up being UNC to server "foo").
86 parsed->host = Component(after_slashes, host_len);
88 parsed->host.reset();
96 // treat this as a having no host but the path given. Works on Windows only.
98 parsed->host.reset();
105 // Otherwise, everything up until that first slash we found is the host name,
106 // which will end up being the UNC host. For example "file://foo/bar.txt"
112 parsed->host = MakeRange(after_slashes, next_slash);
114 parsed->host.reset()
    [all...]
  /external/esd/include/
esd.h 130 int esd_open_sound( const char *host );
146 const char *host, const char *name );
148 const char *host, const char *name );
150 const char *host, const char *name );
153 const char *host, const char *name );
155 const char *host, const char *name );
157 const char *host, const char *name );
  /external/nist-sip/java/gov/nist/core/
HostNameParser.java 43 * Parser for host names.
163 lexer.getBuffer() + ": Illegal Host name ",
171 public Host host() throws ParseException { method in class:HostNameParser
173 dbg_enter("host");
201 lexer.getBuffer() + ": Missing host name",
204 return new Host(hostname);
207 dbg_leave("host");
218 * @return true if the host part of <tt>uriHeader</tt> could be an IPv6
223 // approximately detect the end the host part
240 String host = uriHeader.substring(0, hostEnd); local
265 Host host = this.host(); local
    [all...]
  /external/webkit/Source/WebCore/page/
UserContentURLPattern.cpp 98 // No other '*' can occur in the host.
126 const String& host = test.host(); local
127 if (equalIgnoringCase(host, m_host))
133 // If we're matching subdomains, and we have no host, that means the pattern
138 // Check if the domain is a subdomain of our host.
139 if (!host.endsWith(m_host, false))
142 ASSERT(host.length() > m_host.length());
145 return host[host.length() - m_host.length() - 1] == '.'
    [all...]
  /external/webkit/Source/WebCore/platform/network/cf/
DNSCFNet.cpp 187 RetainPtr<CFHostRef> host(AdoptCF, CFHostCreateWithName(0, hostnameCF.get()));
188 if (!host) {
193 Boolean result = CFHostSetClient(host.get(), clientCallback, &context);
196 CFHostScheduleWithRunLoop(host.get(), CFRunLoopGetMain(), kCFRunLoopCommonModes);
199 CFHostScheduleWithRunLoop(host.get(), loaderRunLoop(), kCFRunLoopDefaultMode);
201 CFHostStartInfoResolution(host.get(), kCFHostAddresses, 0);
202 host.releaseRef(); // The host will be released from clientCallback().
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
esd.h 130 int esd_open_sound( const char *host );
146 const char *host, const char *name );
148 const char *host, const char *name );
150 const char *host, const char *name );
153 const char *host, const char *name );
155 const char *host, const char *name );
157 const char *host, const char *name );
  /libcore/luni/src/test/java/tests/api/javax/net/ssl/
SSLEngineTest.java 58 * SSLEngine object with null host and -1 port
71 * Test for <code>SSLEngine(String host, int port)</code> constructor
103 * Test for <code>SSLEngine(String host, int port)</code> constructor
107 String host = "new host"; local
109 SSLEngine e = getEngine(host, port);
110 assertEquals(e.getPeerHost(), host); local
127 assertEquals("Incorrect host name", "www.fortify.net", e.getPeerHost());
288 sse = getEngine("new host", 1080);
409 String host = "new host" local
450 String host = "new host"; local
476 String host = "new host"; local
532 String host = "new host"; local
554 String host = "new host"; local
586 String host = "new host"; local
625 String host = "new host"; local
647 String host = "new host"; local
681 String host = "new host"; local
700 String host = "new host"; local
772 String host = "new host"; local
795 String host = "new host"; local
841 String host = "new host"; local
861 String host = "new host"; local
902 String host = "new host"; local
926 String host = "new host"; local
983 String host = "new host"; local
1003 String host = "new host"; local
1032 String host = "new host"; local
1055 String host = "new host"; local
1101 String host = "new host"; local
1121 String host = "new host"; local
1162 String host = "new host"; local
1185 String host = "new host"; local
1231 String host = "new host"; local
1251 String host = "new host"; local
    [all...]
  /libcore/support/src/test/java/libcore/javax/net/ssl/
TestSSLContext.java 91 public final InetAddress host; field in class:TestSSLContext
105 InetAddress host,
118 this.host = host;
133 * listening provided host and port.
178 InetAddress host = InetAddress.getLocalHost(); local
188 serverSocket, host, port);
276 public Socket createSocket(String host, int port)
278 return set(sf.createSocket(host, port));
280 public Socket createSocket(String host, int port, InetAddress localHost, int localPort
    [all...]
  /external/chromium/chrome/browser/content_settings/
host_content_settings_map_unittest.cc 85 GURL host("http://example.com/");
89 host, CONTENT_SETTINGS_TYPE_IMAGES, ""));
94 host, CONTENT_SETTINGS_TYPE_IMAGES, ""));
99 host, CONTENT_SETTINGS_TYPE_IMAGES, ""));
102 host, CONTENT_SETTINGS_TYPE_PLUGINS, ""));
104 // Check returning all settings for a host.
129 host_content_settings_map->GetContentSettings(host);
254 GURL host("http://example.com");
260 host, CONTENT_SETTINGS_TYPE_COOKIES, ""));
270 host, CONTENT_SETTINGS_TYPE_COOKIES, ""))
    [all...]
  /external/chromium/chrome/browser/safe_browsing/
safe_browsing_database_unittest.cc 47 SBChunkHost host; local
48 host.host = host_prefix;
49 host.entry = SBEntry::Create(SBEntry::ADD_PREFIX, 1);
50 host.entry->set_chunk_id(chunk->chunk_number);
51 host.entry->SetPrefixAt(0, url_prefix);
52 chunk->hosts.push_back(host);
73 SBChunkHost host; local
74 host.host = Sha256Prefix(host_name)
89 SBChunkHost host; local
106 SBChunkHost host; local
124 SBChunkHost host; local
155 SBChunkHost host; local
175 SBChunkHost host; local
194 SBChunkHost host; local
1086 SBChunkHost host; local
    [all...]
  /external/webkit/LayoutTests/fast/dom/HTMLAnchorElement/script-tests/
set-href-attribute-prevents-rebase.js 57 debug("Host attribute, update document base URI without attribute having been set");
59 a.href = "http://host:0";
61 shouldBe("a.href", "'http://host:0/'");
63 debug("Host attribute, update document base URI after attribute has been set");
66 a.host = "host:0";
68 shouldBe("a.href", "'http://host:0/'");
74 a.href = "http://host";
76 shouldBe("a.href", "'http://host/'");
81 a.hostname = "host";
    [all...]

Completed in 1103 milliseconds

<<11121314151617181920>>