Searched refs:domain (Results 1 - 25 of 721) sorted by relevance

1234567891011>>

/external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/socket/
H A Dsocket.c10 int socket(int domain, int type, int protocol) { argument
11 return ki_socket(domain, type, protocol);
H A Dsocketpair.c10 int socketpair(int domain, int type, int protocol, int* sv) { argument
11 return ki_socketpair(domain, type, protocol, sv);
/external/chromium_org/components/policy/core/common/
H A Dpolicy_namespace.cc11 PolicyNamespace::PolicyNamespace(PolicyDomain domain, argument
13 : domain(domain),
17 : domain(other.domain),
23 domain = other.domain;
29 return domain < other.domain ||
30 (domain
[all...]
H A Dpolicy_service_stub.cc15 void PolicyServiceStub::AddObserver(PolicyDomain domain, argument
18 void PolicyServiceStub::RemoveObserver(PolicyDomain domain, argument
26 bool PolicyServiceStub::IsInitializationComplete(PolicyDomain domain) const {
H A Dschema_map.cc26 const ComponentMap* SchemaMap::GetComponents(PolicyDomain domain) const {
27 DomainMap::const_iterator it = map_.find(domain);
32 const ComponentMap* map = GetComponents(ns.domain);
43 if (it->first.domain == POLICY_DOMAIN_CHROME)
59 if (it->first.domain == POLICY_DOMAIN_EXTENSIONS &&
95 for (DomainMap::const_iterator domain = map_.begin();
96 domain != map_.end(); ++domain) {
97 if (domain->first == POLICY_DOMAIN_CHROME)
99 if (!domain
[all...]
/external/mdnsresponder/mDNSPosix/
H A Dnss_mdns.conf4 domain local
5 domain 254.169.in-addr.arpa
6 domain 8.e.f.ip6.int
7 domain 9.e.f.ip6.int
8 domain a.e.f.ip6.int
9 domain b.e.f.ip6.int
10 domain 8.e.f.ip6.arpa
11 domain 9.e.f.ip6.arpa
12 domain a.e.f.ip6.arpa
13 domain
[all...]
/external/apache-http/src/org/apache/http/impl/cookie/
H A DBasicDomainHandler.java57 throw new MalformedCookieException("Missing value for domain attribute");
60 throw new MalformedCookieException("Blank value for domain attribute");
73 // Validate the cookies domain attribute. NOTE: Domains without
75 // have DNS names. Since they have no dots, to domain-match the
76 // request-host and domain must be identical for the cookie to sent
79 String domain = cookie.getDomain();
80 if (domain == null) {
81 throw new MalformedCookieException("Cookie domain may not be null");
87 // domain must match host
88 if (!host.endsWith(domain)) {
[all...]
H A DRFC2109DomainHandler.java59 throw new MalformedCookieException("Missing value for domain attribute");
62 throw new MalformedCookieException("Blank value for domain attribute");
76 String domain = cookie.getDomain();
77 if (domain == null) {
78 throw new MalformedCookieException("Cookie domain may not be null");
80 if (!domain.equals(host)) {
81 int dotIndex = domain.indexOf('.');
84 + domain
88 // domain must start with dot
89 if (!domain
[all...]
H A DNetscapeDomainHandler.java58 String domain = cookie.getDomain();
60 int domainParts = new StringTokenizer(domain, ".").countTokens();
62 if (isSpecialDomain(domain)) {
65 + domain
72 + domain
80 * Checks if the given domain is in one of the seven special
82 * @param domain The domain.
83 * @return True if the specified domain is "special"
85 private static boolean isSpecialDomain(final String domain) { argument
[all...]
/external/apache-http/src/org/apache/http/auth/
H A DNTUserPrincipal.java52 private final String domain; field in class:NTUserPrincipal
56 final String domain,
63 if (domain != null) {
64 this.domain = domain.toUpperCase(Locale.ENGLISH);
66 this.domain = null;
68 if (this.domain != null && this.domain.length() > 0) {
70 buffer.append(this.domain);
84 return this.domain;
55 NTUserPrincipal( final String domain, final String username) argument
[all...]
/external/chromium_org/ppapi/shared_impl/
H A Dfile_path.cc11 PepperFilePath::PepperFilePath(Domain domain, const base::FilePath& path) argument
12 : domain_(domain), path_(path) {
/external/mdnsresponder/mDNSShared/
H A DPlatformCommon.h18 extern void ReadDDNSSettingsFromConfFile(mDNS *const m, const char *const filename, domainname *const hostname, domainname *const domain, mDNSBool *DomainDiscoveryDisabled);
/external/chromium_org/chrome/test/chromedriver/js/
H A Dadd_cookie.js6 * Test whether the given domain is valid for a cookie.
8 * @param {string} domain Domain for a cookie.
9 * @return {boolean} True if the domain is valid, otherwise false.
11 function isDomainValid(domain) {
14 document.cookie = dummyCookie + '; domain=' + domain;
27 * If domain is not specified, default to document.domain, otherwise remove its
30 * Validate name, value, domain and path of the cookie in the same way as the
32 * the following requirements, name, value, domain an
[all...]
/external/guava/guava-tests/test/com/google/common/net/
H A DInternetDomainNameTest.java50 * A domain part which is valid under lenient validation, but invalid under
216 final InternetDomainName domain = InternetDomainName.from(name);
217 assertTrue(name, domain.isPublicSuffix());
218 assertTrue(name, domain.hasPublicSuffix());
219 assertFalse(name, domain.isUnderPublicSuffix());
220 assertFalse(name, domain.isTopPrivateDomain());
221 assertEquals(domain, domain.publicSuffix());
225 final InternetDomainName domain = InternetDomainName.from(name);
226 assertFalse(name, domain
391 idn(String domain) argument
[all...]
/external/chromium_org/third_party/skia/src/gpu/
H A DGrCacheID.cpp28 int32_t domain = sk_atomic_inc(&gNextDomain); local
29 if (domain >= 1 << (8 * sizeof(Domain))) {
33 return static_cast<Domain>(domain);
/external/skia/src/gpu/
H A DGrCacheID.cpp28 int32_t domain = sk_atomic_inc(&gNextDomain); local
29 if (domain >= 1 << (8 * sizeof(Domain))) {
33 return static_cast<Domain>(domain);
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebCookie.h50 WebCookie(const WebString& name, const WebString& value, const WebString& domain, argument
54 , domain(domain)
65 WebString domain; member in struct:blink::WebCookie
/external/clang/test/Sema/
H A Dmemset-invalid-1.c9 void mt_query_for_domain(const char *domain) argument
/external/chromium_org/third_party/skia/src/gpu/effects/
H A DGrTextureDomain.cpp16 GrTextureDomain::GrTextureDomain(const SkRect& domain, Mode mode, int index) argument
20 if (domain.contains(kFullRect) && kClamp_Mode == mode) {
28 // It is OK if the domain rect is a line or point, but it should not be inverted. We do not
30 SkASSERT(domain.fLeft <= domain.fRight);
31 SkASSERT(domain.fTop <= domain.fBottom);
32 fDomain.fLeft = SkMaxScalar(domain.fLeft, kFullRect.fLeft);
33 fDomain.fRight = SkMinScalar(domain.fRight, kFullRect.fRight);
34 fDomain.fTop = SkMaxScalar(domain
88 const char* domain = fDomainName.c_str(); local
202 const GrTextureDomain& domain = textureDomainEffect.textureDomain(); local
212 const GrTextureDomain& domain = textureDomainEffect.textureDomain(); local
218 const GrTextureDomain& domain = processor.cast<GrTextureDomainEffect>().textureDomain(); local
225 Create(GrTexture* texture, const SkMatrix& matrix, const SkRect& domain, GrTextureDomain::Mode mode, GrTextureParams::FilterMode filterMode, GrCoordSet coordSet) argument
246 GrTextureDomainEffect(GrTexture* texture, const SkMatrix& matrix, const SkRect& domain, GrTextureDomain::Mode mode, GrTextureParams::FilterMode filterMode, GrCoordSet coordSet) argument
290 SkRect domain; local
[all...]
/external/skia/src/gpu/effects/
H A DGrTextureDomain.cpp15 GrTextureDomain::GrTextureDomain(const SkRect& domain, Mode mode, int index) argument
19 if (domain.contains(kFullRect) && kClamp_Mode == mode) {
27 // It is OK if the domain rect is a line or point, but it should not be inverted. We do not
29 SkASSERT(domain.fLeft <= domain.fRight);
30 SkASSERT(domain.fTop <= domain.fBottom);
31 fDomain.fLeft = SkMaxScalar(domain.fLeft, kFullRect.fLeft);
32 fDomain.fRight = SkMinScalar(domain.fRight, kFullRect.fRight);
33 fDomain.fTop = SkMaxScalar(domain
82 const char* domain = fDomainName.c_str(); local
177 const GrTextureDomain& domain = effect.textureDomain(); local
186 const GrTextureDomain& domain = effect.textureDomain(); local
192 const GrTextureDomain& domain = drawEffect.castEffect<GrTextureDomainEffect>().textureDomain(); local
199 Create(GrTexture* texture, const SkMatrix& matrix, const SkRect& domain, GrTextureDomain::Mode mode, GrTextureParams::FilterMode filterMode, GrCoordSet coordSet) argument
222 GrTextureDomainEffect(GrTexture* texture, const SkMatrix& matrix, const SkRect& domain, GrTextureDomain::Mode mode, GrTextureParams::FilterMode filterMode, GrCoordSet coordSet) argument
264 SkRect domain; local
[all...]
/external/apache-http/src/org/apache/http/impl/auth/
H A DNTLMEngine.java50 * Generates a Type1 message given the domain and workstation.
52 * @param domain Optional Windows domain name. Can be <code>null</code>.
59 String domain,
68 * @param domain Windows domain name
77 String domain,
58 generateType1Msg( String domain, String workstation) argument
74 generateType3Msg( String username, String password, String domain, String workstation, String challenge) argument
/external/sepolicy/
H A Disolated_app.te12 type isolated_app, domain;
/external/chromium_org/chrome/common/extensions/docs/examples/api/cookies/
H A Dmanager.js22 // Compares cookies for "key" (name, domain, etc.) equality, but not "value"
25 return (c1.name == c2.name) && (c1.domain == c2.domain) &&
56 var domain = cookie.domain;
57 if (!this.cookies_[domain]) {
58 this.cookies_[domain] = [];
60 this.cookies_[domain].push(cookie);
64 var domain = cookie.domain;
[all...]
/external/chromium_org/net/base/
H A Ddns_util.cc11 // Based on DJB's public domain code.
61 std::string DNSDomainToString(const base::StringPiece& domain) { argument
64 for (unsigned i = 0; i < domain.size() && domain[i]; i += domain[i] + 1) {
66 if (domain[i] < 0)
69 if (domain[i] > 63)
75 if (static_cast<unsigned>(domain[i]) + i + 1 > domain.size())
78 domain
[all...]
/external/chromium_org/net/tools/tld_cleanup/
H A Dtld_cleanup_util.cc27 // Writes the list of domain rules contained in the 'rules' set to the
75 NormalizeResult NormalizeRule(std::string* domain, Rule* rule) { argument
79 if (domain->at(0) == '.')
80 domain->erase(0, 1);
81 if (domain->empty()) {
85 if (domain->at(domain->size() - 1) == '.')
86 domain->erase(domain->size() - 1, 1);
87 if (domain
137 std::string domain; local
[all...]

Completed in 1239 milliseconds

1234567891011>>