HomeSort by relevance Sort by last modified time
    Searched defs:hosts (Results 26 - 50 of 60) sorted by null

12 3

  /packages/apps/Browser/src/com/android/browser/preferences/
WebsiteSettingsFragment.java 304 HashMap<String, Set<Site>> hosts = new HashMap<String, Set<Site>>(); local
312 if (hosts.containsKey(host)) {
313 hostSites = (Set<Site>)hosts.get(host);
316 hosts.put(host, hostSites);
335 if (hosts.containsKey(host)) {
342 Set matchingSites = (Set) hosts.get(host);
  /external/chromium/chrome/browser/safe_browsing/
safe_browsing_util.h 61 std::deque<SBChunkHost> hosts; member in struct:SBChunk
292 // Given a URL, returns all the hosts we need to check. They are returned
294 void GenerateHostsToCheck(const GURL& url, std::vector<std::string>* hosts);
safe_browsing_database.cc 79 std::vector<std::string> hosts; local
81 hosts.push_back(url.host());
83 safe_browsing_util::GenerateHostsToCheck(url, &hosts);
89 for (size_t i = 0; i < hosts.size(); ++i) {
93 crypto::SHA256HashString(hosts[i] + path, &full_hash,
103 crypto::SHA256HashString(hosts[i] + path.substr(0, path.size() - 1),
768 // Helper to iterate over all the entries in the hosts in |chunks| and
788 for (std::deque<SBChunkHost>::const_iterator hiter = citer->hosts.begin();
789 hiter != citer->hosts.end(); ++hiter) {
842 // Helper to iterate over all the entries in the hosts in |chunks| an
    [all...]
  /external/chromium/chrome/common/extensions/
extension_unittest.cc 850 ExtensionExtent hosts; local
    [all...]
extension.cc 355 const std::vector<std::string> hosts) {
356 CHECK(hosts.size() > 0);
360 switch (hosts.size()) {
364 UTF8ToUTF16(hosts[0]));
369 UTF8ToUTF16(hosts[0]),
370 UTF8ToUTF16(hosts[1]));
375 UTF8ToUTF16(hosts[0]),
376 UTF8ToUTF16(hosts[1]),
377 UTF8ToUTF16(hosts[2]));
383 UTF8ToUTF16(hosts[0])
483 std::vector<std::string> hosts = GetDistinctHostsForDisplay( local
    [all...]
  /external/chromium/net/base/
transport_security_state.cc 498 std::map<std::string, DomainState> hosts; local
508 Deserialise(cmd_line_hsts, &dirty, &hosts);
578 if (hosts.find(hashed_host) != hosts.end()) {
579 *out = hosts[hashed_host];
  /external/chromium_org/chrome/browser/sessions/
session_restore_browsertest.cc 172 content::RenderProcessHost::iterator hosts = local
175 while (!hosts.IsAtEnd()) {
176 if (hosts.GetCurrentValue()->HasConnection())
178 hosts.Advance();
    [all...]
  /external/chromium_org/chrome/browser/ui/content_settings/
content_setting_bubble_model.h 70 std::set<std::string> hosts; member in struct:ContentSettingBubbleModel::DomainList
  /external/chromium_org/chrome/common/extensions/permissions/
permission_set.cc 326 // already reflect any special rules (such as chrome://favicon, all hosts
332 // There are two ways this set can have effective access to all hosts:
433 // Build up the final vector by concatenating hosts and RCDs.
501 std::set<std::string> hosts = GetDistinctHostsForDisplay(); local
502 if (!hosts.empty())
503 messages.insert(PermissionMessage::CreateFromHostList(hosts));
  /external/libnfc-nci/src/nfa/hci/
nfa_hci_act.c 1323 UINT8 hosts[2] = {NFA_HCI_HOST_ID_UICC0, (NFA_HCI_HOST_ID_UICC0 + 1)}; local
    [all...]
  /external/chromium_org/chrome/browser/safe_browsing/
safe_browsing_util.cc 43 for (std::deque<SBChunkHost>::iterator hiter = citer->hosts.begin();
44 hiter != citer->hosts.end(); ++hiter) {
365 void GenerateHostsToCheck(const GURL& url, std::vector<std::string>* hosts) {
366 hosts->clear();
391 i != host.rend() && hosts->size() < kMaxHostsToCheck; ++i) {
394 hosts->push_back(std::string(i.base(), host.end()));
399 hosts->push_back(host);
418 // As with the hosts above, it doesn't matter what order we check these in.
434 std::vector<std::string> hosts, paths; local
435 GenerateHostsToCheck(url, &hosts);
    [all...]
safe_browsing_util.h 60 std::deque<SBChunkHost> hosts; member in struct:SBChunk
139 // The URL hosts malware.
330 // Given a URL, returns all the hosts we need to check. They are returned
332 void GenerateHostsToCheck(const GURL& url, std::vector<std::string>* hosts);
safe_browsing_database.cc 110 std::vector<std::string> hosts; local
112 hosts.push_back(url.host());
114 safe_browsing_util::GenerateHostsToCheck(url, &hosts);
120 for (size_t i = 0; i < hosts.size(); ++i) {
124 crypto::SHA256HashString(hosts[i] + path, &full_hash,
134 crypto::SHA256HashString(hosts[i] + path.substr(0, path.size() - 1),
830 // Helper to iterate over all the entries in the hosts in |chunks| and
851 for (std::deque<SBChunkHost>::const_iterator hiter = citer->hosts.begin();
852 hiter != citer->hosts.end(); ++hiter) {
    [all...]
  /external/chromium_org/webkit/browser/appcache/
appcache_update_job.cc 28 // Helper class for collecting hosts per frontend when sending notifications
29 // so that only one notification is sent for all hosts using the same frontend.
35 // Caller is responsible for ensuring there will be no duplicate hosts.
42 void AddHosts(const std::set<AppCacheHost*>& hosts) {
43 for (std::set<AppCacheHost*>::const_iterator it = hosts.begin();
44 it != hosts.end(); ++it) {
516 // Associate all pending master hosts with the newly created cache.
519 PendingHosts& hosts = it->second; local
520 for (PendingHosts::iterator host_it = hosts.begin();
521 host_it != hosts.end(); ++host_it)
621 PendingHosts& hosts = found->second; local
840 PendingHosts& hosts = found->second; local
1075 PendingHosts& hosts = found->second; local
1117 PendingHosts& hosts = found->second; local
1309 PendingHosts& hosts = it->second; local
1332 AppCache::AppCacheHosts& hosts = inprogress_cache_->associated_hosts(); local
    [all...]
  /external/libnfc-nci/src/nfa/include/
nfa_hci_api.h 165 UINT8 num_hosts; /* Number of hosts in the host network */
258 tNFA_HCI_HOST_LIST hosts; /* NFA_HCI_HOST_LIST_EVT */ member in union:__anon22364
383 ** list of hosts that are present in the host network. When
  /external/chromium_org/net/dns/
host_resolver_impl_unittest.cc 622 // Start 5 requests, duplicating hosts "a" and "b". Since the resolver_proc is
1453 DnsHosts hosts; local
1622 DnsHosts hosts; local
    [all...]
host_resolver_impl.cc 1960 const DnsHosts& hosts = dns_client_->GetConfig()->hosts; local
    [all...]
  /external/mdnsresponder/mDNSPosix/
NetMonitor.c 191 HostEntry *hosts; member in struct:__anon24491
203 HostEntry *entry = list->hosts + i;
218 HostEntry *newHosts = realloc(list->hosts, newMax * sizeof(HostEntry));
222 list->hosts = newHosts;
225 entry = list->hosts + list->num++;
358 HostEntry *e, *end = &list->hosts[(max < list->num) ? max : list->num];
359 qsort(list->hosts, list->num, sizeof(HostEntry), CompareHosts);
361 for (e = &list->hosts[0]; e < end; e++)
    [all...]
  /external/chromium_org/chrome/browser/extensions/
extension_prefs.cc 873 // The granted permissions originally only held the effective hosts,
876 // does not matter how we treat the old effective hosts as long as the
877 // new effective hosts will be the same, so we move them to explicit
879 const ListValue* hosts = NULL; local
882 if (ext->GetList(kPrefOldGrantedHosts, &hosts)) {
884 *ext_id, explicit_hosts, hosts->DeepCopy());
    [all...]
  /external/chromium_org/content/browser/renderer_host/
render_widget_host_impl.cc 233 std::vector<RenderWidgetHost*> hosts; local
241 hosts.push_back(widget);
248 hosts.push_back(widget);
250 return hosts;
255 std::vector<RenderWidgetHost*> hosts; local
260 hosts.push_back(it->second);
262 return hosts;
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/
Xproto.h 1267 xListHostsReply hosts; member in union:__anon38612
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xproto.h 1267 xListHostsReply hosts; member in union:__anon40202
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xproto.h 1267 xListHostsReply hosts; member in union:__anon41717
    [all...]
  /frameworks/base/services/java/com/android/server/
BackupManagerService.java 886 List<ResolveInfo> hosts = mPackageManager.queryIntentServicesAsUser( local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.osgi_3.6.1.R36x_v20100806.jar 

Completed in 1305 milliseconds

12 3