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

1234567891011>>

/external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
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 {
/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.java51 throw new MalformedCookieException("Missing value for domain attribute");
54 throw new MalformedCookieException("Blank value for domain attribute");
67 // Validate the cookies domain attribute. NOTE: Domains without
69 // have DNS names. Since they have no dots, to domain-match the
70 // request-host and domain must be identical for the cookie to sent
73 String domain = cookie.getDomain();
74 if (domain == null) {
75 throw new MalformedCookieException("Cookie domain may not be null");
81 // domain must match host
82 if (!host.endsWith(domain)) {
[all...]
H A DRFC2109DomainHandler.java53 throw new MalformedCookieException("Missing value for domain attribute");
56 throw new MalformedCookieException("Blank value for domain attribute");
70 String domain = cookie.getDomain();
71 if (domain == null) {
72 throw new MalformedCookieException("Cookie domain may not be null");
74 if (!domain.equals(host)) {
75 int dotIndex = domain.indexOf('.');
78 + domain
82 // domain must start with dot
83 if (!domain
[all...]
H A DNetscapeDomainHandler.java52 String domain = cookie.getDomain();
54 int domainParts = new StringTokenizer(domain, ".").countTokens();
56 if (isSpecialDomain(domain)) {
59 + domain
66 + domain
74 * Checks if the given domain is in one of the seven special
76 * @param domain The domain.
77 * @return True if the specified domain is "special"
79 private static boolean isSpecialDomain(final String domain) { argument
[all...]
/external/apache-http/src/org/apache/http/auth/
H A DNTUserPrincipal.java47 private final String domain; field in class:NTUserPrincipal
51 final String domain,
58 if (domain != null) {
59 this.domain = domain.toUpperCase(Locale.ENGLISH);
61 this.domain = null;
63 if (this.domain != null && this.domain.length() > 0) {
65 buffer.append(this.domain);
79 return this.domain;
50 NTUserPrincipal( final String domain, final String username) argument
[all...]
/external/chromium_org/ppapi/shared_impl/
H A Dfile_path.cc14 PepperFilePath::PepperFilePath(Domain domain, const base::FilePath& path) argument
15 : domain_(domain),
/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.cpp15 GrTextureDomain::GrTextureDomain(const SkRect& domain, Mode mode, int index) argument
19 if (domain.contains(kFullRect)) {
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/skia/src/gpu/effects/
H A DGrTextureDomain.cpp15 GrTextureDomain::GrTextureDomain(const SkRect& domain, Mode mode, int index) argument
19 if (domain.contains(kFullRect)) {
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.java45 * Generates a Type1 message given the domain and workstation.
47 * @param domain Optional Windows domain name. Can be <code>null</code>.
54 String domain,
63 * @param domain Windows domain name
72 String domain,
53 generateType1Msg( String domain, String workstation) argument
69 generateType3Msg( String username, String password, String domain, String workstation, String challenge) argument
/external/sepolicy/
H A Disolated_app.te12 type isolated_app, domain;
H A Dplatform_app.te5 type platform_app, domain;
H A Drelease_app.te5 type release_app, domain;
H A Dshared_app.te5 type shared_app, domain;
H A Dtee.te4 type tee, domain;

Completed in 524 milliseconds

1234567891011>>