Searched defs:domain (Results 1 - 25 of 332) 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/ppapi/shared_impl/
H A Dfile_path.cc11 PepperFilePath::PepperFilePath(Domain domain, const base::FilePath& path) argument
12 : domain_(domain), path_(path) {
H A Dfile_path.h31 Domain domain() const { return domain_; } function in class:ppapi::PepperFilePath
/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/clang/test/Sema/
H A Dmemset-invalid-1.c9 void mt_query_for_domain(const char *domain) argument
/external/chromium_org/google_apis/gaia/
H A Dgaia_auth_util_unittest.cc63 const char domain[] = "example.com"; local
64 EXPECT_EQ(domain, CanonicalizeDomain("example.com"));
65 EXPECT_EQ(domain, CanonicalizeDomain("EXAMPLE.cOm"));
69 const char domain[] = "example.com"; local
70 EXPECT_EQ(domain, ExtractDomainName("who@example.com"));
71 EXPECT_EQ(domain, ExtractDomainName("who@EXAMPLE.cOm"));
/external/chromium_org/components/policy/core/common/
H A Dpolicy_namespace.h16 // string depends on the domain; for example, if the PolicyDomain is
22 // The extensions policy domain is a work in progress. Included here for
30 // Groups a policy domain and a component ID in a single object representing
35 PolicyNamespace(PolicyDomain domain, const std::string& component_id);
44 PolicyDomain domain; member in struct:policy::PolicyNamespace
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/chromium_org/third_party/WebKit/public/platform/
H A DWebURLError.h45 WebString domain; member in struct:blink::WebURLError
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/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/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/apache-http/src/org/apache/http/impl/cookie/
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...]
H A DRFC2965DomainAttributeHandler.java62 * Parse cookie domain attribute.
64 public void parse(final SetCookie cookie, String domain) argument
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(".")) {
82 // That effectively implies that the domain attribut
104 domainMatch(String host, String domain) argument
[all...]
/external/chromium_org/chrome/browser/browsing_data/
H A Dmock_browsing_data_flash_lso_helper.cc30 const std::string& domain) {
31 domains_.push_back(domain);
29 AddFlashLSODomain( const std::string& domain) argument
/external/chromium_org/chrome/browser/chromeos/policy/
H A Dstub_enterprise_install_attributes.cc19 void StubEnterpriseInstallAttributes::SetDomain(const std::string& domain) { argument
20 registration_domain_ = domain;
37 const std::string& domain,
43 attributes->SetDomain(domain);
36 ScopedStubEnterpriseInstallAttributes( const std::string& domain, const std::string& registration_user, const std::string& device_id, DeviceMode mode) argument
/external/chromium_org/chrome/browser/local_discovery/
H A Dtest_service_discovery_client.cc46 const std::string& domain,
50 domain, address_family, callback);
45 CreateLocalDomainResolver( const std::string& domain, net::AddressFamily address_family, const LocalDomainResolver::IPAddressCallback& callback) argument
/external/chromium_org/components/domain_reliability/
H A Dbeacon.h31 // The domain that the beacon is reporting on, if included.
32 std::string domain; member in struct:domain_reliability::DomainReliabilityBeacon
H A Dconfig.h112 std::string domain; member in class:domain_reliability::DomainReliabilityConfig
/external/chromium_org/content/common/
H A Dcookie_data.h29 // Cookie domain.
30 std::string domain; member in struct:content::CookieData
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
H A DDatabaseClient.cpp56 void DatabaseClient::didOpenDatabase(PassRefPtrWillBeRawPtr<Database> database, const String& domain, const String& name, const String& version) argument
59 m_inspectorAgent->didOpenDatabase(database, domain, name, version);
H A DInspectorDatabaseResource.cpp40 PassRefPtrWillBeRawPtr<InspectorDatabaseResource> InspectorDatabaseResource::create(PassRefPtrWillBeRawPtr<Database> database, const String& domain, const String& name, const String& version) argument
42 return adoptRefWillBeNoop(new InspectorDatabaseResource(database, domain, name, version));
45 InspectorDatabaseResource::InspectorDatabaseResource(PassRefPtrWillBeRawPtr<Database> database, const String& domain, const String& name, const String& version) argument
48 , m_domain(domain)

Completed in 5509 milliseconds

1234567891011>>