Searched defs:domain (Results 1 - 25 of 170) sorted by relevance

1234567

/external/clang/test/Sema/
H A Dmemset-invalid-1.c9 void mt_query_for_domain(const char *domain) argument
/external/wpa_supplicant_8/hostapd/src/eap_common/
H A Deap_common.h16 const u8 *domain; member in struct:erp_tlvs
/external/wpa_supplicant_8/src/eap_common/
H A Deap_common.h16 const u8 *domain; member in struct:erp_tlvs
/external/wpa_supplicant_8/wpa_supplicant/src/eap_common/
H A Deap_common.h16 const u8 *domain; member in struct:erp_tlvs
/external/toybox/lib/
H A Dnet.c3 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 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...]
H A DNTCredentials.java66 * @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 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/mesa3d/src/gallium/drivers/nv50/
H A Dnv50_transfer.h10 unsigned domain; member in struct:nv50_m2mf_rect
/external/apache-http/src/org/apache/http/cookie/
H A DSetCookie.java77 * 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 Dtest-nls.c67 const char *domain = textdomain(GETTEXT_PACKAGE); local
68 printf("message domain: %s\n", domain);
/external/mesa3d/src/gallium/drivers/nouveau/
H A Dnouveau_buffer.h38 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 Dnv30_transfer.h7 unsigned domain; member in struct:nv30_rect
31 struct nouveau_bo *, unsigned offset, unsigned domain,
/external/skia/src/gpu/effects/
H A DGrBicubicEffect.h34 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 DCertificateChainValidator.java105 * @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 DContiguousSet.java44 * 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 DContiguousSet.java41 * 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 DFactoryHelper.java128 * 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 Dradeon_cs.c77 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 Dexif-log.c135 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 Dradeon_queryobj.c168 uint32_t domain; local
175 if (radeon_bo_is_busy(query->bo, &domain) == 0) {
/external/mesa3d/src/mesa/drivers/dri/radeon/
H A Dradeon_queryobj.c168 uint32_t domain; local
175 if (radeon_bo_is_busy(query->bo, &domain) == 0) {
/external/openssh/openbsd-compat/
H A Dgetrrsetbyname-ldns.c73 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);

Completed in 4535 milliseconds

1234567