Searched defs:domain (Results 51 - 75 of 151) sorted by relevance

1234567

/external/webkit/Source/WebKit/win/
H A DWebError.cpp105 /* [in] */ BSTR domain,
109 m_error = ResourceError(String(domain, SysStringLen(domain)), code, String(url, SysStringLen(url)), String());
120 HRESULT STDMETHODCALLTYPE WebError::domain( function in class:WebError
126 *result = BString(m_error.domain()).release();
206 *result = m_error.domain() == String(WebKitErrorDomain)
104 init( BSTR domain, int code, BSTR url) argument
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
H A DProtectionDomainTest.java245 // public PermissionCollection getPermissions(ProtectionDomain domain) {
246 // return super.getPermissions(domain);
248 public boolean implies(ProtectionDomain domain, Permission permission) { argument
249 if (trackPD != null && trackPD == domain) {
252 return super.implies(domain, permission);
/external/apache-http/src/org/apache/http/impl/cookie/
H A DBasicClientCookie.java182 * Returns domain attribute of the cookie.
184 * @return the value of the domain attribute
193 * Sets the domain attribute.
195 * @param domain The value of the domain attribute
199 public void setDomain(String domain) { argument
200 if (domain != null) {
201 cookieDomain = domain.toLowerCase(Locale.ENGLISH);
334 buffer.append("[domain: ");
/external/chromium/chrome/browser/automation/
H A Dautomation_util.cc218 cookie_dict->SetString("domain", cookie.Domain());
276 std::string domain; local
289 if (cookie_dict->HasKey("domain") &&
290 !cookie_dict->GetString("domain", &domain)) {
291 reply.SendError("optional 'domain' invalid");
321 GURL(url), name, value, domain, path, base::Time(),
337 GURL(url), *cookie.get(), domain, context_getter, &event, &success);
/external/chromium/chrome/browser/extensions/
H A Dextension_cookies_helpers.cc110 // Ignore any cookie whose domain doesn't match the extension's
163 bool MatchFilter::MatchesDomain(const std::string& domain) { argument
170 // Add a leading '.' character to the filter domain if it doesn't exist.
174 std::string sub_domain(domain);
175 // Strip any leading '.' character from the input cookie domain.
179 // Now check whether the domain argument is a subdomain of the filter domain.
/external/chromium/chrome/browser/google/
H A Dgoogle_url_tracker_unittest.cc113 const std::string& domain);
186 const std::string& domain) {
192 200, ResponseCookies(), domain);
184 MockSearchDomainCheckResponse( int expected_id, const std::string& domain) argument
/external/chromium/chrome/browser/net/
H A Durl_fixer_upper.cc184 // Checks |domain| to see if a valid TLD is already present. If not, appends
185 // |desired_tld| to the domain, and prepends "www." unless it's already present.
187 std::string* domain) {
188 if (desired_tld.empty() || domain->empty())
201 net::RegistryControlledDomainService::GetRegistryLength(*domain, false);
205 // Add the suffix at the end of the domain.
206 const size_t domain_length(domain->length());
209 if ((*domain)[domain_length - 1] != '.')
210 domain->push_back('.');
211 domain
186 AddDesiredTLD(const std::string& desired_tld, std::string* domain) argument
[all...]
/external/chromium/chrome/browser/ui/views/
H A Dcookie_info_view.cc59 const std::string& domain,
63 domain_value_field_->SetText(UTF8ToWide(domain));
58 SetCookie( const std::string& domain, const net::CookieMonster::CanonicalCookie& cookie) argument
/external/chromium/net/base/
H A Dcookie_monster.cc103 // The RFC says the sort order for the domain attribute is undefined.
129 // Two cookies are considered equivalent if they have the same domain,
133 CookieSignature(const std::string& name, const std::string& domain, argument
136 domain(domain),
144 // Name compare dominates, then domain, then path.
149 diff = domain.compare(cs.domain);
157 std::string domain; member in struct:net::__anon2775::CookieSignature
174 // Determine the actual cookie domain base
[all...]
H A Dsdch_filter_unittest.cc144 static std::string NewSdchDictionary(const std::string& domain) { argument
146 if (!domain.empty()) {
148 dictionary.append(domain);
628 // Decode with content arriving from the "wrong" domain.
1184 std::string domain(gurl.host());
1187 EXPECT_EQ(SdchManager::BlackListDomainCount(domain), 0);
1188 EXPECT_EQ(SdchManager::BlacklistDomainExponential(domain), 0);
1194 std::string domain(gurl.host());
1198 EXPECT_EQ(SdchManager::BlackListDomainCount(domain), 1);
1199 EXPECT_EQ(SdchManager::BlacklistDomainExponential(domain),
[all...]
/external/chromium/net/http/
H A Dhttp_auth_handler_digest.cc60 static const char domain[] = "0123456789abcdef"; local
64 cnonce.push_back(domain[base::RandInt(0, 15)]);
177 // [domain="<list-of-URIs>"]
234 } else if (LowerCaseEqualsASCII(name, "domain")) {
H A Dhttp_auth_sspi_win.cc51 const string16& domain,
61 reinterpret_cast<unsigned short*>(const_cast<wchar_t*>(domain.c_str()));
62 identity.DomainLength = domain.size();
299 string16 domain; local
301 SplitDomainAndUser(*username, &domain, &user);
302 rv = AcquireExplicitCredentials(library_, security_package_, domain,
395 string16* domain,
399 // TODO(cbentzel): I believe user@domain is also a valid form.
402 domain->clear();
405 *domain
49 AcquireExplicitCredentials(SSPILibrary* library, const SEC_WCHAR* package, const string16& domain, const string16& user, const string16& password, CredHandle* cred) argument
394 SplitDomainAndUser(const string16& combined, string16* domain, string16* user) argument
[all...]
/external/chromium/net/proxy/
H A Dproxy_bypass_rules.cc131 bool IsIPAddress(const std::string& domain) { argument
135 url_parse::Component domain_comp(0, domain.size());
136 url_canon::CanonicalizeIPAddress(domain.c_str(), domain_comp,
/external/dnsmasq/src/
H A Ddbus.c105 char *domain; local
175 dbus_message_iter_get_basic(&iter, &domain);
179 domain = NULL;
188 if (!(serv->flags & SERV_HAS_DOMAIN) && !domain)
194 domain &&
195 hostname_isequal(domain, serv->domain))
207 if (domain)
208 serv->domain = whine_malloc(strlen(domain)
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DRegularContiguousSet.java39 RegularContiguousSet(Range<C> range, DiscreteDomain<C> domain) { argument
40 super(domain);
47 .asSet(domain);
52 return contains(target) ? (int) domain.distance(first(), (C) target) : -1;
59 toElement, BoundType.forBoolean(toInclusive))).asSet(domain);
65 .asSet(domain);
74 return equalsOrThrow(previous, last) ? null : domain.next(previous);
88 return range.lowerBound.leastValueAbove(domain);
92 return range.upperBound.greatestValueBelow(domain);
96 long distance = domain
174 final DiscreteDomain<C> domain; field in class:RegularContiguousSet.SerializedForm
176 SerializedForm(Range<C> range, DiscreteDomain<C> domain) argument
[all...]
/external/guava/guava/src/com/google/common/net/
H A DInternetDomainName.java37 * An immutable well-formed internet domain name, such as {@code com} or {@code
39 * network interactions take place. Thus there is no guarantee that the domain
43 * likely to represent an addressable domain on the web -- that is, for a
46 * done by determining whether the domain ended with a {@linkplain
50 * result, the only useful test to determine if a domain is a plausible web host
67 * internationalized domain names</a> such as {@code 网络.cn} are supported, as
93 * Maximum parts (labels) in a domain name. This value arises from
103 * Maximum length of a full domain name, including separators, and
110 * Maximum size of a single part of a domain name. See
116 * The full domain nam
200 fromLenient(String domain) argument
224 from(String domain) argument
542 matchesWildcardPublicSuffix(String domain) argument
[all...]
/external/libppp/src/
H A Did.c117 ID0socket(int domain, int type, int protocol) argument
122 ret = socket(domain, type, protocol);
123 log_Printf(LogID0, "%d = socket(%d, %d, %d)\n", ret, domain, type, protocol);
/external/libxml2/
H A Derror.c249 int domain; local
266 domain = err->domain;
289 else if ((line != 0) && (domain == XML_FROM_PARSER))
295 else if ((line != 0) && (domain == XML_FROM_PARSER))
301 switch (domain) {
396 else if ((line != 0) && (domain == XML_FROM_PARSER))
401 if ((domain == XML_FROM_XPATH) && (err->str1 != NULL) &&
423 * @domain: the domain fo
441 __xmlRaiseError(xmlStructuredErrorFunc schannel, xmlGenericErrorFunc channel, void *data, void *ctx, void *nod, int domain, int code, xmlErrorLevel level, const char *file, int line, const char *str1, const char *str2, const char *str3, int int1, int col, const char *msg, ...) argument
632 __xmlSimpleError(int domain, int code, xmlNodePtr node, const char *msg, const char *extra) argument
[all...]
/external/mdnsresponder/mDNSPosix/
H A DProxyResponder.c132 const char name[], const char type[], const char domain[],
142 MakeDomainNameFromDNSNameString(&d, domain);
156 &n, &t, &d, // Name, type, domain
208 const char name[], const char type[], const char domain[])
215 MakeDomainNameFromDNSNameString(&d, domain);
131 RegisterService(mDNS *m, ServiceRecordSet *recordset, const char name[], const char type[], const char domain[], const domainname *host, mDNSu16 PortAsNumber, int argc, char **argv) argument
207 RegisterNoSuchService(mDNS *m, AuthRecord *const rr, domainname *proxyhostname, const char name[], const char type[], const char domain[]) argument
/external/openssh/openbsd-compat/
H A Dbsd-misc.c73 const char *user, const char *domain)
72 innetgr(const char *netgroup, const char *host, const char *user, const char *domain) argument
/external/stressapptest/src/
H A Dos.h33 int32 domain; member in struct:PCIDevice
/external/webkit/Source/WebCore/inspector/
H A DInspectorPageAgent.cpp135 value->setString("domain", cookie.domain);
201 void InspectorPageAgent::deleteCookie(ErrorString*, const String& cookieName, const String& domain) argument
205 if (document->url().host() != domain)
/external/webkit/Source/WebCore/wml/
H A DWMLPageState.cpp139 bool WMLPageState::processAccessControlData(const String& domain, const String& path) argument
153 // Spec: The domain attribute defaults to the current decks domain.
155 m_accessDomain = domain.isEmpty() ? previousHost : normalizedHostName(domain);
196 // Spec: The access domain is suffix-matched against the domain name portion of the referring URI
/external/webkit/Source/WebKit/efl/ewk/
H A Dewk_frame.h90 const char *domain; /**< error domain name */ member in struct:_Ewk_Frame_Load_Error
/external/aac/libSBRdec/src/
H A Denv_dec.cpp644 \brief Convert each envelope value from logarithmic to linear domain
745 int i, domain, no_of_bands, band, freqRes; local
753 domain = h_sbr_data->domain_vec[i];
762 if (domain == 0)

Completed in 617 milliseconds

1234567