Searched defs:domain (Results 1 - 25 of 332) sorted by last modified time

1234567891011>>

/external/wpa_supplicant_8/wpa_supplicant/
H A Dconfig.h161 * domain_suffix_match - Constraint for server domain name
168 * host/domain name is compared one label at a time starting from the
169 * top-level domain and all the labels in @domain_suffix_match shall be
179 * domain - Home service provider FQDN(s)
182 * whether the AP is operated by the Home SP. Multiple domain entries
186 char **domain; member in struct:wpa_cred
189 * num_domain - Number of FQDNs in the domain array
431 * For UNIX domain sockets (default on Linux and BSD): This is a
432 * directory that will be created for UNIX domain sockets for listening
479 * UNIX domain socket
[all...]
H A Dctrl_iface_udp.c341 int domain = PF_INET6; local
344 int domain = PF_INET; local
357 priv->sock = socket(domain, SOCK_DGRAM, 0);
H A Dinterworking.c181 if (cred->domain || cred->pcsc || cred->imsi ||
2047 const char *domain, int exact_match)
2052 len = os_strlen(domain);
2060 wpa_hexdump_ascii(MSG_DEBUG, "Interworking: AP domain name",
2063 os_strncasecmp(domain, (const char *) (pos + 1), len) == 0)
2068 if (os_strncasecmp(domain, ap + offset, len) == 0)
2112 "with SIM/USIM domain %s", realm);
2121 if (domain_names == NULL || cred->domain == NULL)
2126 "home SP FQDN %s", cred->domain[i]);
2127 if (domain_name_list_contains(domain_names, cred->domain[
2046 domain_name_list_contains(struct wpabuf *domain_names, const char *domain, int exact_match) argument
[all...]
/external/vixl/src/a64/
H A Dassembler-a64.cc1202 void Assembler::dmb(BarrierDomain domain, BarrierType type) { argument
1203 Emit(DMB | ImmBarrierDomain(domain) | ImmBarrierType(type));
1207 void Assembler::dsb(BarrierDomain domain, BarrierType type) { argument
1208 Emit(DSB | ImmBarrierDomain(domain) | ImmBarrierType(type));
H A Ddisasm-a64.cc1696 int domain = instr->ImmBarrierDomain(); local
1699 AppendToOutput("%s", options[domain][type]);
H A Dmacro-assembler-a64.h512 void Dmb(BarrierDomain domain, BarrierType type) { argument
514 dmb(domain, type);
516 void Dsb(BarrierDomain domain, BarrierType type) { argument
518 dsb(domain, type);
/external/valgrind/main/coregrind/
H A Dm_libcfile.c929 Int VG_(socket) ( Int domain, Int type, Int protocol ) argument
935 args[0] = domain;
945 res = VG_(do_syscall3)(__NR_socket, domain, type, protocol );
950 res = VG_(do_syscall3)(__NR_socket, domain, type, protocol);
/external/valgrind/main/include/vki/
H A Dvki-xen-domctl.h103 vki_xen_domid_t domain; member in struct:vki_xen_domctl_getdomaininfo_00000007
122 vki_xen_domid_t domain; member in struct:vki_xen_domctl_getdomaininfo_00000008
141 vki_xen_domid_t domain; member in struct:vki_xen_domctl_getdomaininfo_00000009
325 vki_xen_domid_t domain; member in struct:vki_xen_domctl
/external/stressapptest/src/
H A Dos.h33 int32 domain; member in struct:PCIDevice
/external/skia/src/core/
H A DSkRasterClip.cpp145 static const SkScalar domain = SK_Scalar1 / 4; local
146 static const SkScalar halfDomain = domain / 2;
149 return x - SkScalarFloorToScalar(x) < domain;
/external/skia/src/effects/
H A DSkGpuBlurUtils.cpp173 SkRect domain; local
174 matrix.mapRect(&domain, rect);
175 domain.inset(i < scaleFactorX ? SK_ScalarHalf / srcTexture->width() : 0.0f,
180 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);
H A DGrResourceCache.h92 void init(const GrCacheID::Domain domain, argument
103 memcpy(k + kCacheIDDomainOffset, &domain, sizeof(GrCacheID::Domain));
/external/skia/src/gpu/effects/
H A DGrBicubicEffect.cpp29 const GrTextureDomain& domain = drawEffect.castEffect<GrBicubicEffect>().domain(); local
30 return GrTextureDomain::GLDomain::DomainKey(domain);
54 const GrTextureDomain& domain = drawEffect.castEffect<GrBicubicEffect>().domain(); local
98 fDomain.sampleTexture(builder, domain, sampleVar.c_str(), coord, samplers[0]);
116 fDomain.setData(uman, effect.domain(), texture.origin());
140 const SkRect& domain)
143 , fDomain(domain, GrTextureDomain::kClamp_Mode) {
137 GrBicubicEffect(GrTexture* texture, const SkScalar coefficients[16], const SkMatrix &matrix, const SkRect& domain) argument
H A DGrBicubicEffect.h35 const GrTextureDomain& domain() const { return fDomain; } function in class:GrBicubicEffect
38 * Create a simple filter effect with custom bicubic coefficients and optional domain.
41 const SkRect* domain = NULL) {
42 if (NULL == domain) {
49 *domain)));
73 * Create a Mitchell filter effect with a texture matrix and a domain.
75 static GrEffectRef* Create(GrTexture* tex, const SkMatrix& matrix, const SkRect& domain) { argument
77 domain)));
95 const SkMatrix &matrix, const SkRect& domain);
H A DGrTextureDomain.cpp15 GrTextureDomain::GrTextureDomain(const SkRect& domain, Mode mode, int index) argument
19 if (domain.contains(kFullRect) && kClamp_Mode == mode) {
27 // It is OK if the domain rect is a line or point, but it should not be inverted. We do not
29 SkASSERT(domain.fLeft <= domain.fRight);
30 SkASSERT(domain.fTop <= domain.fBottom);
31 fDomain.fLeft = SkMaxScalar(domain.fLeft, kFullRect.fLeft);
32 fDomain.fRight = SkMinScalar(domain.fRight, kFullRect.fRight);
33 fDomain.fTop = SkMaxScalar(domain
82 const char* domain = fDomainName.c_str(); local
177 const GrTextureDomain& domain = effect.textureDomain(); local
186 const GrTextureDomain& domain = effect.textureDomain(); local
192 const GrTextureDomain& domain = drawEffect.castEffect<GrTextureDomainEffect>().textureDomain(); local
199 Create(GrTexture* texture, const SkMatrix& matrix, const SkRect& domain, GrTextureDomain::Mode mode, GrTextureParams::FilterMode filterMode, GrCoordSet coordSet) argument
222 GrTextureDomainEffect(GrTexture* texture, const SkMatrix& matrix, const SkRect& domain, GrTextureDomain::Mode mode, GrTextureParams::FilterMode filterMode, GrCoordSet coordSet) argument
264 SkRect domain; local
[all...]
H A DGrTextureDomain.h18 * Limits a texture's lookup coordinates to a domain. Samples outside the domain are either clamped
19 * the edge of the domain or result in a vec4 of zeros (decal mode). The domain is clipped to
21 * domain to affect the read value unless the caller considers this when calculating the domain.
26 kIgnore_Mode, // Ignore the texture domain rectangle.
27 kClamp_Mode, // Clamp texture coords to the domain rectangle.
28 kDecal_Mode, // Treat the area outside the domain rectangle as fully transparent.
44 GrTextureDomain(const SkRect& domain, Mod
46 const SkRect& domain() const { return fDomain; } function in class:GrTextureDomain
111 DomainKey(const GrTextureDomain& domain) argument
[all...]
/external/skia/src/pdf/
H A DSkPDFShader.cpp527 SkPDFStream* makePSFunction(const SkString& psCode, SkPDFArray* domain);
678 // populate domain.
912 SkAutoTUnref<SkPDFArray> domain(new SkPDFArray);
913 domain->reserve(4);
914 domain->appendScalar(bbox.fLeft);
915 domain->appendScalar(bbox.fRight);
916 domain->appendScalar(bbox.fTop);
917 domain->appendScalar(bbox.fBottom);
942 pdfShader->insert("Domain", domain.get());
944 SkPDFStream* function = makePSFunction(functionCode, domain
1163 makePSFunction(const SkString& psCode, SkPDFArray* domain) argument
[all...]
/external/skia/tests/
H A DResourceCacheTest.cpp109 GrCacheID::Domain domain = GrCacheID::GenerateDomain(); local
114 GrResourceKey key(GrCacheID(domain, keyData), t, 0);
144 GrCacheID::Domain domain = GrCacheID::GenerateDomain(); local
150 GrResourceKey key(GrCacheID(domain, keyData), t, 0);
190 GrCacheID::Domain domain = GrCacheID::GenerateDomain(); local
196 GrResourceKey key1(GrCacheID(domain, key1Data), t, 0);
201 GrResourceKey key2(GrCacheID(domain, key2Data), t, 0);
/external/smack/asmack-master/lib/
H A Dhttpclient-4.1.3.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/http/ org/apache/http/cookie/ ...
/external/smack/src/com/kenai/jbosh/
H A DBOSHClientConfig.java38 * Target domain.
107 * @param domain target domain to communicate with
109 private Builder(final URI cmURI, final String domain) { argument
111 bDomain = domain;
119 * @param domain target domain to communicate with
122 public static Builder create(final URI cmURI, final String domain) { argument
127 if (domain == null) {
129 "Target domain mus
[all...]
/external/smack/src/org/jivesoftware/smack/util/
H A DDNSUtil.java75 * host resolved by a DNS lookup at the specified domain on the default port
80 * @param domain the domain.
82 * XMPP server can be reached at for the specified domain.
84 public static List<HostAddress> resolveXMPPDomain(String domain) { argument
85 return resolveDomain(domain, 'c');
96 * host resolved by a DNS lookup at the specified domain on the default port
101 * @param domain the domain.
103 * XMPP server can be reached at for the specified domain
105 resolveXMPPServerDomain(String domain) argument
109 resolveDomain(String domain, char keyPrefix) argument
[all...]
/external/smack/src/org/xbill/DNS/
H A DName.java9 * A representation of a domain name. It may either be absolute (fully
554 subdomain(Name domain) { argument
556 int dlabels = domain.labels();
560 return equals(domain);
561 return domain.equals(name, offset(labels - dlabels));
/external/skia/include/gpu/
H A DGrTypes.h463 * the domain and the key. Domains simply allow multiple clients to use 0-based indices as their
464 * cache key without colliding. The key uniquely identifies a GrResource within the domain.
465 * Users of the cache must obtain a domain via GenerateDomain().
485 * Initialize the cache ID to a domain and key.
487 GrCacheID(Domain domain, const Key& key) { argument
488 SkASSERT(kInvalid_Domain != domain);
489 this->reset(domain, key);
492 void reset(Domain domain, const Key& key) { argument
493 fDomain = domain;
497 /** Has this been initialized to a valid domain */
[all...]
/external/regex-re2/re2/testing/
H A Dre2_test.cc371 string domain; local
372 domain.resize(size);
375 domain[i] = pattern[i % patlen];
379 RE2::FullMatch(domain, re);

Completed in 3479 milliseconds

1234567891011>>