HomeSort by relevance Sort by last modified time
    Searched refs:domain (Results 101 - 125 of 883) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/chrome/browser/policy/cloud/
component_cloud_policy_updater.cc 79 const std::string domain = base::IntToString(ns.domain); local
81 base::IntToString(domain.size()) + ":" + domain + ":" + ns.component_id;
  /external/chromium_org/chrome/browser/policy/
mock_configuration_policy_provider.h 25 MOCK_CONST_METHOD1(IsInitializationComplete, bool(PolicyDomain domain));
policy_service_impl.h 37 virtual void AddObserver(PolicyDomain domain,
39 virtual void RemoveObserver(PolicyDomain domain,
46 PolicyDomain domain) const OVERRIDE;
47 virtual bool IsInitializationComplete(PolicyDomain domain) const OVERRIDE;
80 // Maps each policy domain to its current descriptor.
84 // Maps each policy domain to its observer list.
87 // True if all the providers are initialized for the indexed policy domain.
  /external/chromium_org/chrome/common/mac/
launchd.h 22 enum Domain {
54 virtual bool RestartJob(Domain domain,
61 virtual CFMutableDictionaryRef CreatePlistFromFile(Domain domain,
66 virtual bool WritePlistToFile(Domain domain,
73 virtual bool DeletePlist(Domain domain, Type type, CFStringRef name);
mock_launchd.h 40 virtual bool RestartJob(Domain domain,
45 Domain domain,
48 virtual bool WritePlistToFile(Domain domain,
52 virtual bool DeletePlist(Domain domain,
  /external/chromium_org/content/common/
cookie_data.h 29 // Cookie domain.
30 std::string domain; member in struct:content::CookieData
  /external/chromium_org/net/base/
dns_util.h 16 // DNSDomainFromDot - convert a domain string to DNS format. From DJB's
17 // public domain DNS library.
24 // DNSDomainToString converts a domain in DNS format to a dotted string.
27 const base::StringPiece& domain);
  /external/chromium_org/net/spdy/
spdy_credential_state.cc 16 std::string domain = local
18 DCHECK(!domain.empty());
19 if (domain == url.host())
21 return GURL(url.scheme() + "://" + domain + ":" + url.port());
  /external/chromium_org/ppapi/shared_impl/
file_path.h 19 enum Domain {
29 PepperFilePath(Domain d, const base::FilePath& p);
31 Domain domain() const { return domain_; } function in class:ppapi::PepperFilePath
35 Domain domain_;
  /external/chromium_org/third_party/WebKit/public/platform/
WebURLError.h 47 WebString domain; member in struct:WebKit::WebURLError
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nouveau/
nouveau_mm.h 17 nouveau_mm_create(struct nouveau_device *, uint32_t domain,
  /external/mesa3d/src/gallium/drivers/nouveau/
nouveau_mm.h 17 nouveau_mm_create(struct nouveau_device *, uint32_t domain,
  /external/smack/src/org/jivesoftware/smack/util/
DNSUtil.java 75 * host resolved by a DNS lookup at the specified domain on the default port
80 * @param domain the domain.
82 * XMPP server can be reached at for the specified domain.
84 public static List<HostAddress> resolveXMPPDomain(String domain) {
85 return resolveDomain(domain, 'c');
96 * host resolved by a DNS lookup at the specified domain on the default port
101 * @param domain the domain.
103 * XMPP server can be reached at for the specified domain
    [all...]
  /frameworks/base/core/java/android/net/http/
CertificateChainValidator.java 72 * @param domain The website domain
76 HttpsConnection connection, SSLSocket sslSocket, String domain)
101 return verifyServerDomainAndCertificates((X509Certificate[]) peerCertificates, domain, "RSA");
108 * @param domain The full website hostname and domain
113 byte[][] certChain, String domain, String authType)
132 return verifyServerDomainAndCertificates(serverCertificates, domain, authType);
152 * Calls DomainNamevalidator to verify the domain, and TrustManager to verify the certs.
154 * @param domain The full website hostname and domai
    [all...]
  /external/chromium_org/chrome/renderer/safe_browsing/
phishing_dom_feature_extractor.cc 96 // The domain of the document URL, stored here so that we don't need to
98 std::string domain; member in struct:safe_browsing::PhishingDOMFeatureExtractor::FrameData
250 std::string domain; local
251 bool is_external = IsExternalDomain(full_url, &domain);
252 if (domain.empty()) {
253 DVLOG(1) << "Could not extract domain from link: " << full_url;
260 // Record each unique domain that we link to.
261 page_feature_state_->external_domains.insert(domain);
277 // Record whether the action points to a different domain.
285 std::string domain; local
307 std::string domain; local
    [all...]
  /external/e2fsprogs/intl/
dcigettext.c 224 /* Domain in which to search. */
234 struct loaded_l10nfile *domain; member in struct:known_translation_t
288 /* Name of the default domain used for gettext(3) prior any call to
292 /* Value used as the default domain for gettext(3). */
309 static char *plural_lookup (struct loaded_l10nfile *domain,
434 struct loaded_l10nfile *domain; local
465 /* If DOMAINNAME is NULL, we are interested in the default domain. If
494 retval = plural_lookup ((*foundp)->domain, n, (*foundp)->translation,
610 domain. Return the MSGID. */
617 domain = _nl_find_domain (dirname, single_locale, xdomainname, binding)
728 struct loaded_domain *domain; local
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/xmpp/
jid_unittest.cc 12 EXPECT_EQ("dude", jid.domain());
24 EXPECT_EQ("dude", jid.domain());
36 EXPECT_EQ("dude", jid.domain());
48 EXPECT_EQ("dude", jid.domain());
60 EXPECT_EQ("", jid.domain());
72 EXPECT_EQ("", jid.domain());
84 EXPECT_EQ("", jid.domain());
96 EXPECT_EQ("muchat", jid.domain());
108 EXPECT_EQ("muchat", jid.domain());
  /bionic/libc/netbsd/resolv/
res_query.c 128 const char *name, /* domain name */
222 const char *name, /* domain name */
227 const char *cp, * const *domain; local
275 for (domain = (const char * const *)statp->dnsrch;
276 *domain && !done;
277 domain++) {
280 if (domain[0][0] == '\0' ||
281 (domain[0][0] == '.' && domain[0][1] == '\0'))
284 ret = res_nquerydomain(statp, name, *domain,
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
CookiesTable.js 49 {id: "domain", title: WebInspector.UIString("Domain"), sortable: true, weight: 7},
76 * @param {?string} domain
78 _clearAndRefresh: function(domain)
80 this.clear(domain);
93 var domain = cookie.domain();
94 if (domain)
95 contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Clear all from \"%s\"" : "Clear All from \"%s\"", domain), this._clearAndRefresh.bind(this, domain));
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
cookielib.py 459 known_attrs = ("expires", "domain", "path", "secure",
498 """Return True if text is a host domain name."""
513 """Return True if domain A domain-matches domain B, according to RFC 2965.
515 A and B may be host domain names or IP addresses.
521 be case-insensitive.) Host A's name domain-matches host B's if
527 x.y.com domain-matches .Y.com but not Y.com.)
529 Note that domain-match is not a commutative operation: a.b.c.com
530 domain-matches .c.com, but not the reverse
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
cookielib.py 459 known_attrs = ("expires", "domain", "path", "secure",
498 """Return True if text is a host domain name."""
513 """Return True if domain A domain-matches domain B, according to RFC 2965.
515 A and B may be host domain names or IP addresses.
521 be case-insensitive.) Host A's name domain-matches host B's if
527 x.y.com domain-matches .Y.com but not Y.com.)
529 Note that domain-match is not a commutative operation: a.b.c.com
530 domain-matches .c.com, but not the reverse
    [all...]
  /external/chromium_org/chrome/browser/
internal_auth.cc 89 bool IsDomainSane(const std::string& domain) {
90 return !domain.empty() &&
91 domain.size() <= kStringLengthLimit &&
92 IsStringUTF8(domain) &&
93 domain.find_first_of(kItemSeparator) == std::string::npos;
142 void CreatePassport(const std::string& domain,
149 DCHECK(IsDomainSane(domain));
156 blob = domain + kItemSeparator;
203 const std::string& domain,
206 int64 tick = PreVerifyPassport(passport, domain, current_tick)
    [all...]
internal_auth.h 22 const std::string& domain,
62 const std::string& domain,
  /external/chromium_org/chrome/browser/browsing_data/
mock_browsing_data_flash_lso_helper.cc 28 const std::string& domain) {
29 domains_.push_back(domain);
  /external/chromium_org/chrome/browser/predictors/
logged_in_predictor_table.h 25 // Manages one table { domain (primary key), added_timestamp }.
30 // Adds the relevant part of the domain of the URL provided to the database
33 // Deletes a record for the domain corresponding to the URL provided.
35 // Deletes a record for the domain provided.
36 void DeleteDomain(const std::string& domain);
37 // Checks whether for the relevant part of the domain of the URL provided,
46 static std::string GetKeyFromDomain(const std::string& domain);

Completed in 1471 milliseconds

1 2 3 45 6 7 8 91011>>