/external/clang/test/Sema/ |
H A D | memset-invalid-1.c | 9 void mt_query_for_domain(const char *domain) argument
|
/external/wpa_supplicant_8/hostapd/src/eap_common/ |
H A D | eap_common.h | 16 const u8 *domain; member in struct:erp_tlvs
|
/external/wpa_supplicant_8/src/eap_common/ |
H A D | eap_common.h | 16 const u8 *domain; member in struct:erp_tlvs
|
/external/wpa_supplicant_8/wpa_supplicant/src/eap_common/ |
H A D | eap_common.h | 16 const u8 *domain; member in struct:erp_tlvs
|
/external/toybox/lib/ |
H A D | net.c | 3 int xsocket(int domain, int type, int protocol) argument 5 int fd = socket(domain, type, protocol);
|
/external/apache-http/src/org/apache/http/auth/ |
H A D | 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; 55 NTUserPrincipal( final String domain, final String username) argument [all...] |
H A D | NTCredentials.java | 66 * @param usernamePassword the domain/username:password formed string 97 * @param userName The user name. This should not include the domain to authenticate with. 102 * @param domain The domain to authenticate within. 108 final String domain) { 113 this.principal = new NTUserPrincipal(domain, userName); 137 * @return String the domain these credentials are intended to authenticate with. 104 NTCredentials( final String userName, final String password, final String workstation, final String domain) argument
|
/external/apache-http/src/org/apache/http/impl/auth/ |
H A D | 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, 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 D | NetscapeDomainHandler.java | 58 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 D | RFC2965DomainAttributeHandler.java | 62 * 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/mesa3d/src/gallium/drivers/nv50/ |
H A D | nv50_transfer.h | 10 unsigned domain; member in struct:nv50_m2mf_rect
|
/external/apache-http/src/org/apache/http/cookie/ |
H A D | SetCookie.java | 77 * Sets the domain attribute. 79 * @param domain The value of the domain attribute 83 void setDomain(String domain); argument
|
/external/libexif/test/nls/ |
H A D | test-nls.c | 67 const char *domain = textdomain(GETTEXT_PACKAGE); local 68 printf("message domain: %s\n", domain);
|
/external/mesa3d/src/gallium/drivers/nouveau/ |
H A D | nouveau_buffer.h | 38 uint8_t domain; member in struct:nv04_resource 55 struct nv04_resource *, unsigned domain); 77 return nv04_resource(resource)->domain != 0;
|
/external/mesa3d/src/gallium/drivers/nv30/ |
H A D | nv30_transfer.h | 7 unsigned domain; member in struct:nv30_rect 31 struct nouveau_bo *, unsigned offset, unsigned domain,
|
/external/skia/src/gpu/effects/ |
H A D | GrBicubicEffect.h | 34 const GrTextureDomain& domain() const { return fDomain; } function in class:GrBicubicEffect 37 * Create a simple filter effect with custom bicubic coefficients and optional domain. 40 const SkRect* domain = NULL) { 41 if (NULL == domain) { 49 *domain)); 72 * Create a Mitchell filter effect with a texture matrix and a domain. 75 const SkRect& domain) { 76 return SkNEW_ARGS(GrBicubicEffect, (tex, gMitchellCoefficients, matrix, domain)); 93 const SkMatrix &matrix, const SkRect& domain); 74 Create(GrTexture* tex, const SkMatrix& matrix, const SkRect& domain) argument
|
/external/apache-http/android/src/android/net/http/ |
H A D | CertificateChainValidator.java | 105 * @param domain The website domain 109 HttpsConnection connection, SSLSocket sslSocket, String domain) 134 return verifyServerDomainAndCertificates((X509Certificate[]) peerCertificates, domain, "RSA"); 141 * @param domain The full website hostname and domain 146 byte[][] certChain, String domain, String authType) 165 return verifyServerDomainAndCertificates(serverCertificates, domain, authType); 202 * Calls DomainNamevalidator to verify the domain, and TrustManager to verify the certs. 204 * @param domain Th 108 doHandshakeAndValidateServerCertificates( HttpsConnection connection, SSLSocket sslSocket, String domain) argument 145 verifyServerCertificates( byte[][] certChain, String domain, String authType) argument 208 verifyServerDomainAndCertificates( X509Certificate[] chain, String domain, String authType) argument [all...] |
/external/guava/guava/src/com/google/common/collect/ |
H A D | ContiguousSet.java | 44 * Returns a {@code ContiguousSet} containing the same values in the given domain 47 * @throws IllegalArgumentException if neither range nor the domain has a lower bound, or if 53 Range<C> range, DiscreteDomain<C> domain) { 55 checkNotNull(domain); 59 effectiveRange = effectiveRange.intersection(Range.atLeast(domain.minValue())); 62 effectiveRange = effectiveRange.intersection(Range.atMost(domain.maxValue())); 71 range.lowerBound.leastValueAbove(domain), 72 range.upperBound.greatestValueBelow(domain)) > 0; 75 ? new EmptyContiguousSet<C>(domain) 76 : new RegularContiguousSet<C>(effectiveRange, domain); 52 create( Range<C> range, DiscreteDomain<C> domain) argument 79 final DiscreteDomain<C> domain; field in class:ContiguousSet 81 ContiguousSet(DiscreteDomain<C> domain) argument [all...] |
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
H A D | ContiguousSet.java | 41 * Returns a {@code ContiguousSet} containing the same values in the given domain 44 * @throws IllegalArgumentException if neither range nor the domain has a lower bound, or if 50 Range<C> range, DiscreteDomain<C> domain) { 52 checkNotNull(domain); 56 effectiveRange = effectiveRange.intersection(Range.atLeast(domain.minValue())); 59 effectiveRange = effectiveRange.intersection(Range.atMost(domain.maxValue())); 68 range.lowerBound.leastValueAbove(domain), 69 range.upperBound.greatestValueBelow(domain)) > 0; 72 ? new EmptyContiguousSet<C>(domain) 73 : new RegularContiguousSet<C>(effectiveRange, domain); 49 create( Range<C> range, DiscreteDomain<C> domain) argument 76 final DiscreteDomain<C> domain; field in class:ContiguousSet 78 ContiguousSet(DiscreteDomain<C> domain) argument [all...] |
/external/javassist/src/main/javassist/util/proxy/ |
H A D | FactoryHelper.java | 128 * This method uses a default protection domain for the class 142 * @param domain if it is null, a default domain is used. 145 public static Class toClass(ClassFile cf, ClassLoader loader, ProtectionDomain domain) argument 152 if (domain == null) { 160 new Integer(b.length), domain };
|
/external/libdrm/radeon/ |
H A D | radeon_cs.c | 77 radeon_cs_set_limit(struct radeon_cs *cs, uint32_t domain, uint32_t limit) argument 80 if (domain == RADEON_GEM_DOMAIN_VRAM)
|
/external/libexif/libexif/ |
H A D | exif-log.c | 135 exif_log (ExifLog *log, ExifLogCode code, const char *domain, argument 141 exif_logv (log, code, domain, format, args); 146 exif_logv (ExifLog *log, ExifLogCode code, const char *domain, argument 151 log->func (log, code, domain, format, args, log->data);
|
/external/mesa3d/src/mesa/drivers/dri/r200/ |
H A D | radeon_queryobj.c | 168 uint32_t domain; local 175 if (radeon_bo_is_busy(query->bo, &domain) == 0) {
|
/external/mesa3d/src/mesa/drivers/dri/radeon/ |
H A D | radeon_queryobj.c | 168 uint32_t domain; local 175 if (radeon_bo_is_busy(query->bo, &domain) == 0) {
|
/external/openssh/openbsd-compat/ |
H A D | getrrsetbyname-ldns.c | 73 ldns_rdf *domain = NULL; local 98 domain = ldns_dname_new_frm_str(hostname); 112 pkt = ldns_resolver_query(ldns_res, domain, rdtype, rdclass, LDNS_RD); 242 ldns_rdf_deep_free(domain);
|