HomeSort by relevance Sort by last modified time
    Searched refs:domain (Results 1 - 25 of 706) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/socket/
socket.c 10 int socket(int domain, int type, int protocol) {
11 return ki_socket(domain, type, protocol);
socketpair.c 10 int socketpair(int domain, int type, int protocol, int* sv) {
11 return ki_socketpair(domain, type, protocol, sv);
  /external/chromium_org/components/policy/core/common/
policy_namespace.cc 11 PolicyNamespace::PolicyNamespace(PolicyDomain domain,
13 : domain(domain),
17 : domain(other.domain),
23 domain = other.domain;
29 return domain < other.domain ||
30 (domain == other.domain && component_id < other.component_id)
    [all...]
policy_service_stub.cc 15 void PolicyServiceStub::AddObserver(PolicyDomain domain,
18 void PolicyServiceStub::RemoveObserver(PolicyDomain domain,
26 bool PolicyServiceStub::IsInitializationComplete(PolicyDomain domain) const {
policy_service_stub.h 22 virtual void AddObserver(PolicyDomain domain,
25 virtual void RemoveObserver(PolicyDomain domain,
31 virtual bool IsInitializationComplete(PolicyDomain domain) const OVERRIDE;
schema_map.cc 26 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->second.empty()
    [all...]
  /external/mdnsresponder/mDNSPosix/
nss_mdns.conf 4 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 b.e.f.ip6.arp
    [all...]
  /bionic/libc/bionic/
socket.cpp 21 int socket(int domain, int type, int protocol) {
22 return __netdClientDispatch.socket(domain, type, protocol);
  /external/apache-http/src/org/apache/http/impl/cookie/
BasicDomainHandler.java 57 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(); local
80 if (domain == null) {
81 throw new MalformedCookieException("Cookie domain may not be null");
85 // A Set-Cookie2 with Domain=ajax.com will be accepted.
87 // domain must match hos
115 String domain = cookie.getDomain(); local
    [all...]
RFC2109DomainHandler.java 59 throw new MalformedCookieException("Missing value for domain attribute");
62 throw new MalformedCookieException("Blank value for domain attribute");
76 String domain = cookie.getDomain(); local
77 if (domain == null) {
78 throw new MalformedCookieException("Cookie domain may not be null");
80 if (!domain.equals(host)) {
81 int dotIndex = domain.indexOf('.');
83 throw new MalformedCookieException("Domain attribute \""
84 + domain
88 // domain must start with do
125 String domain = cookie.getDomain(); local
    [all...]
NetscapeDomainHandler.java 58 String domain = cookie.getDomain(); local
60 int domainParts = new StringTokenizer(domain, ".").countTokens();
62 if (isSpecialDomain(domain)) {
64 throw new MalformedCookieException("Domain attribute \""
65 + domain
71 throw new MalformedCookieException("Domain attribute \""
72 + domain
80 * Checks if the given domain is in one of the seven special
82 * @param domain The domain
105 String domain = cookie.getDomain(); local
    [all...]
RFC2965DomainAttributeHandler.java 44 * <tt>"Domain"</tt> cookie attribute handler for RFC 2965 cookie spec.
62 * Parse cookie domain attribute.
64 public void parse(final SetCookie cookie, String domain)
69 if (domain == null) {
71 "Missing value for domain attribute");
73 if (domain.trim().length() == 0) {
75 "Blank value for domain attribute");
77 domain = domain.toLowerCase(Locale.ENGLISH);
78 if (!domain.startsWith("."))
    [all...]
  /external/apache-http/src/org/apache/http/auth/
NTUserPrincipal.java 52 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;
    [all...]
  /external/chromium_org/ppapi/shared_impl/
file_path.cc 11 PepperFilePath::PepperFilePath(Domain domain, const base::FilePath& path)
12 : domain_(domain), path_(path) {
  /external/mdnsresponder/mDNSShared/
PlatformCommon.h 18 extern void ReadDDNSSettingsFromConfFile(mDNS *const m, const char *const filename, domainname *const hostname, domainname *const domain, mDNSBool *DomainDiscoveryDisabled);
  /external/guava/guava-tests/test/com/google/common/net/
InternetDomainNameTest.java 50 * A domain part which is valid under lenient validation, but invalid under
216 final InternetDomainName domain = InternetDomainName.from(name); local
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); local
226 assertFalse(name, domain.isPublicSuffix())
234 final InternetDomainName domain = InternetDomainName.from(name); local
243 final InternetDomainName domain = InternetDomainName.from(name); local
252 final InternetDomainName domain = InternetDomainName.from(name); local
263 final InternetDomainName domain = InternetDomainName.from(name); local
290 InternetDomainName domain = InternetDomainName.from("foo.com"); local
353 InternetDomainName domain = InternetDomainName.from(inputName); local
373 InternetDomainName domain = InternetDomainName.from("foo.nhs.uk"); local
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/
GrCacheID.cpp 25 GrCacheID::Domain GrCacheID::GenerateDomain() {
28 int32_t domain = sk_atomic_inc(&gNextDomain); local
29 if (domain >= 1 << (8 * sizeof(Domain))) {
33 return static_cast<Domain>(domain);
  /development/ndk/platforms/android-3/arch-arm/include/asm/
pgalloc.h 15 #include <asm/domain.h>
  /external/chromium_org/third_party/WebKit/public/platform/
WebCookie.h 50 WebCookie(const WebString& name, const WebString& value, const WebString& domain,
54 , domain(domain)
65 WebString domain; member in struct:blink::WebCookie
  /external/clang/test/Sema/
memset-invalid-1.c 9 void mt_query_for_domain(const char *domain)
  /external/chromium_org/third_party/skia/src/gpu/effects/
GrTextureDomain.cpp 16 GrTextureDomain::GrTextureDomain(const SkRect& domain, Mode mode, int index)
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.fTop, kFullRect.fTop)
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
290 SkRect domain; local
    [all...]
  /external/apache-http/src/org/apache/http/impl/auth/
NTLMEngine.java 50 * 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,
  /external/chromium_org/net/base/
dns_util.cc 11 // Based on DJB's public domain code.
61 std::string DNSDomainToString(const base::StringPiece& domain) {
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.substr(i + 1, domain[i]).AppendToString(&ret)
    [all...]
  /external/chromium_org/net/tools/tld_cleanup/
tld_cleanup_util.cc 27 // Writes the list of domain rules contained in the 'rules' set to the
75 NormalizeResult NormalizeRule(std::string* domain, Rule* rule) {
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->empty())
137 std::string domain; local
    [all...]
  /external/chromium_org/chrome/test/chromedriver/js/
add_cookie.js 6 * 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 th
    [all...]

Completed in 2845 milliseconds

1 2 3 4 5 6 7 8 91011>>