/external/dropbear/libtomcrypt/ |
LICENSE | 1 LibTomCrypt is public domain. As should all quality software be.
|
/external/dropbear/libtommath/ |
LICENSE | 1 LibTomMath is hereby released into the Public Domain.
|
/external/bluetooth/glib/glib/ |
glibintl.h | 14 /* Split out this in the code, but keep it in the same domain for now */ 28 #define dgettext(Domain,String) (String) 29 #define dcgettext(Domain,String,Type) (String) 30 #define dngettext(Domain,String1,String2,N) ((N) == 1 ? (String1) : (String2)) 31 #define bindtextdomain(Domain,Directory) (Domain) 32 #define bind_textdomain_codeset(Domain,Codeset)
|
gerror.c | 34 g_error_new_valist (GQuark domain, 43 error->domain = domain; 52 * @domain: error domain 57 * Creates a new #GError with the given @domain and @code, 63 g_error_new (GQuark domain, 72 g_return_val_if_fail (domain != 0, NULL); 75 error = g_error_new_valist (domain, code, format, args); 83 * @domain: error domai [all...] |
/external/kernel-headers/original/asm-arm/ |
domain.h | 2 * linux/include/asm-arm/domain.h 14 * Domain numbers 16 * DOMAIN_IO - domain 2 includes all IO only 17 * DOMAIN_USER - domain 1 includes all user memory only 18 * DOMAIN_KERNEL - domain 0 includes all kernel memory only 20 * The domain numbering depends on whether we support 36 physical 23 * be set for domain 0. We could just default to DOMAIN_IO as zero, 44 * Domain types 58 "mcr p15, 0, %0, c3, c0 @ set domain" \ 65 unsigned int domain = thread->cpu_domain; [all...] |
/bionic/libc/arch-sh/include/machine/ |
internal_types.h | 2 /* Public domain */
|
/bionic/libc/arch-x86/include/machine/ |
internal_types.h | 2 /* Public domain */
|
/ndk/build/platforms/android-5/arch-x86/usr/include/machine/ |
internal_types.h | 2 /* Public domain */
|
/ndk/build/platforms/android-8/arch-x86/usr/include/machine/ |
internal_types.h | 2 /* Public domain */
|
/external/apache-http/src/org/apache/http/impl/cookie/ |
RFC2965DomainAttributeHandler.java | 44 * <tt>"Domain"</tt> cookie attribute handler for RFC 2965 cookie spec. 57 * Parse cookie domain attribute. 59 public void parse(final SetCookie cookie, String domain) 64 if (domain == null) { 66 "Missing value for domain attribute"); 68 if (domain.trim().length() == 0) { 70 "Blank value for domain attribute"); 72 domain = domain.toLowerCase(Locale.ENGLISH); 73 if (!domain.startsWith(".")) [all...] |
RFC2109DomainHandler.java | 53 throw new MalformedCookieException("Missing value for domain attribute"); 56 throw new MalformedCookieException("Blank value for domain attribute"); 70 String domain = cookie.getDomain(); local 71 if (domain == null) { 72 throw new MalformedCookieException("Cookie domain may not be null"); 74 if (!domain.equals(host)) { 75 int dotIndex = domain.indexOf('.'); 77 throw new MalformedCookieException("Domain attribute \"" 78 + domain 82 // domain must start with do 119 String domain = cookie.getDomain(); local [all...] |
BasicDomainHandler.java | 51 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(); local 74 if (domain == null) { 75 throw new MalformedCookieException("Cookie domain may not be null"); 79 // A Set-Cookie2 with Domain=ajax.com will be accepted. 81 // domain must match hos 109 String domain = cookie.getDomain(); local [all...] |
NetscapeDomainHandler.java | 52 String domain = cookie.getDomain(); local 54 int domainParts = new StringTokenizer(domain, ".").countTokens(); 56 if (isSpecialDomain(domain)) { 58 throw new MalformedCookieException("Domain attribute \"" 59 + domain 65 throw new MalformedCookieException("Domain attribute \"" 66 + domain 74 * Checks if the given domain is in one of the seven special 76 * @param domain The domain 99 String domain = cookie.getDomain(); local [all...] |
/frameworks/base/core/java/android/net/http/ |
CertificateValidatorCache.java | 35 * to keep each secure domain name associated with a cryptographically secure 36 * hash of the certificate chain successfully used to validate the domain. If 37 * we establish connection with the domain more than once and each time receive 60 * The certificate validator cache map (domain to a cache entry) 130 * @param domain The domain to check against 133 * associated with the domain and the secure hash 135 public boolean has(String domain, byte[] secureHash) { 138 if (domain != null && domain.length() != 0) [all...] |
/bionic/libc/arch-arm/include/machine/ |
internal_types.h | 2 /* Public domain */
|
/bionic/libc/private/ |
ctype_private.h | 2 /* Written by Marc Espie, public domain */
|
/bionic/libm/src/ |
w_drem.c | 5 * Placed into the Public Domain, 1994.
|
/external/clearsilver/man/man3/ |
cgi_cookie_clear.3 | 20 NEOERR *cgi_cookie_clear (CGI *cgi, const char *name, const char *domain, 30 domain - the domain to clear, NULL for none 38 name, domain, and path, and the luck of the Irish has to
|
/external/webkit/WebKit/mac/Resources/ |
IDNScriptWhiteList.txt | 1 # Default Web Kit International Domain Name Script White List.
|
/ndk/build/platforms/android-3/arch-arm/usr/include/machine/ |
internal_types.h | 2 /* Public domain */
|
/ndk/build/platforms/android-4/arch-arm/usr/include/machine/ |
internal_types.h | 2 /* Public domain */
|
/ndk/build/platforms/android-5/arch-arm/usr/include/machine/ |
internal_types.h | 2 /* Public domain */
|
/ndk/build/platforms/android-8/arch-arm/usr/include/machine/ |
internal_types.h | 2 /* Public domain */
|
/external/qemu/hw/ |
xen.h | 14 XEN_CREATE, // create xen domain 15 XEN_ATTACH // attach to xen domain created by xend
|
/external/apache-http/src/org/apache/http/auth/ |
NTUserPrincipal.java | 47 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; [all...] |