Searched defs:domain (Results 101 - 125 of 313) sorted by relevance

1234567891011>>

/external/ltp/testcases/kernel/syscalls/sendto/
H A Dsendto01.c55 int domain; /* PF_INET, PF_UNIX, ... */ member in struct:test_case_t
81 {.domain = PF_INET,
95 {.domain = 0,
111 {.domain = PF_INET,
126 {.domain = PF_INET,
140 {.domain = PF_INET,
154 {.domain = PF_INET,
170 {.domain = PF_INET,
185 {.domain = PF_INET,
199 {.domain
[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/mdnsresponder/mDNSWindows/DLLX/
H A D_IDNSSDEvents_CP.h13 HRESULT Fire_DomainFound( IDNSSDService * service, DNSSDFlags flags, ULONG ifIndex, BSTR domain) argument
34 avarParams[0] = domain;
42 HRESULT Fire_DomainLost( IDNSSDService * service, DNSSDFlags flags, ULONG ifIndex, BSTR domain) argument
63 avarParams[0] = domain;
71 HRESULT Fire_ServiceFound( IDNSSDService * browser, DNSSDFlags flags, ULONG ifIndex, BSTR serviceName, BSTR regType, BSTR domain) argument
96 avarParams[0] = domain;
104 HRESULT Fire_ServiceLost( IDNSSDService * browser, DNSSDFlags flags, ULONG ifIndex, BSTR serviceName, BSTR regType, BSTR domain) argument
129 avarParams[0] = domain;
171 HRESULT Fire_ServiceRegistered( IDNSSDService * service, DNSSDFlags flags, BSTR name, BSTR regType, BSTR domain) argument
194 avarParams[0] = domain;
[all...]
/external/mesa3d/src/gallium/drivers/nouveau/
H A Dnouveau_mm.c37 uint32_t domain; member in struct:nouveau_mman
138 ret = nouveau_bo_new(cache->dev, cache->domain, 0, size, &cache->config,
174 ret = nouveau_bo_new(cache->dev, cache->domain, 0, size, &cache->config,
243 nouveau_mm_create(struct nouveau_device *dev, uint32_t domain, argument
253 cache->domain = domain;
/external/mesa3d/src/mesa/drivers/dri/r200/
H A Dradeon_dma.c334 uint32_t domain; local
335 int ret = radeon_bo_is_busy(bo, &domain);
/external/mesa3d/src/mesa/drivers/dri/radeon/
H A Dradeon_dma.c334 uint32_t domain; local
335 int ret = radeon_bo_is_busy(bo, &domain);
/external/python/cpython2/Modules/
H A D_localemodule.c570 "dgettext(domain, msg) -> string\n"
571 "Return translation of msg in domain.");
576 char *domain, *in; local
577 if (!PyArg_ParseTuple(args, "zs", &domain, &in))
579 return PyString_FromString(dgettext(domain, in));
583 "dcgettext(domain, msg, category) -> string\n"
584 "Return translation of msg in domain and category.");
589 char *domain, *msgid; local
591 if (!PyArg_ParseTuple(args, "zsi", &domain, &msgid, &category))
593 return PyString_FromString(dcgettext(domain,msgi
603 char *domain; local
621 char *domain, *dirname; local
644 char *domain,*codeset; local
[all...]
/external/python/cpython3/Lib/email/
H A Dheaderregistry.py18 def __init__(self, display_name='', username='', domain='', addr_spec=None):
21 An address can have a 'display_name', a 'username', and a 'domain'. In
22 addition to specifying the username and domain separately, they may be
24 username and domain keywords. If an addr_spec string is specified it
28 An Address object has display_name, username, domain, and addr_spec
37 # and domain.
39 if username or domain:
41 "domain also specified")
50 domain = a_s.domain
64 def domain(self): member in class:Address
[all...]
/external/python/cpython3/Lib/
H A Dtracemalloc.py247 # trace is a tuple: (domain: int, size: int, traceback: tuple).
252 def domain(self): member in class:Trace
273 return ("<Trace domain=%s size=%s, traceback=%r>"
274 % (self.domain, _format_size(self.size, False), self.traceback))
319 lineno=None, all_frames=False, domain=None):
325 self.domain = domain
355 domain, size, traceback = trace
357 if self.domain is not None:
359 return res and (domain
371 def domain(self): member in class:DomainFilter
[all...]
/external/python/cpython3/Modules/
H A D_localemodule.c472 "dgettext(domain, msg) -> string\n"
473 "Return translation of msg in domain.");
478 char *domain, *in; local
479 if (!PyArg_ParseTuple(args, "zs", &domain, &in))
481 return PyUnicode_DecodeLocale(dgettext(domain, in), NULL);
485 "dcgettext(domain, msg, category) -> string\n"
486 "Return translation of msg in domain and category.");
491 char *domain, *msgid; local
493 if (!PyArg_ParseTuple(args, "zsi", &domain, &msgid, &category))
495 return PyUnicode_DecodeLocale(dcgettext(domain,msgi
505 char *domain; local
523 char *domain, *dirname, *current_dirname; local
558 char *domain,*codeset; local
[all...]
/external/robolectric-shadows/shadows/framework/src/main/java/android/webkit/
H A DRoboCookieManager.java111 private List<Cookie> filter(String domain) { argument
112 return filter(domain, false);
115 private List<Cookie> filter(String domain, boolean isSecure) { argument
119 if (cookie.isSameHost(domain)
/external/skia/include/gpu/
H A DGrResourceKey.h69 bool isValid() const { return kInvalidDomain != this->domain(); }
71 uint32_t domain() const { return fKey[kDomainAndSize_MetaDataIdx] & 0xffff; } function in class:GrResourceKey
73 /** size of the key data, excluding meta-data (hash, domain, etc). */
76 /** ptr to the key data, excluding meta-data (hash, domain, etc). */
85 Builder(GrResourceKey* key, uint32_t domain, int data32Count) : fKey(key) { argument
87 SkASSERT(domain != kInvalidDomain);
91 SkASSERT(SkToU16(domain) == domain);
92 key->fKey[kDomainAndSize_MetaDataIdx] = domain | (size << 16);
122 // The key domain an
270 Builder(GrUniqueKey* key, const GrUniqueKey& innerKey, Domain domain, int extraData32Cnt, const char* tag = nullptr) argument
[all...]
/external/skia/src/core/
H A DSkGpuBlurUtils.cpp288 SkRect domain = SkRect::Make(localSrcBounds); local
289 domain.inset((i < scaleFactorX) ? SK_ScalarHalf : 0.0f,
293 domain,
409 SkRect domain = SkRect::Make(localSrcBounds); local
412 domain,
H A DSkRasterClip.cpp355 static const SkScalar domain = SK_Scalar1 / 4; local
356 static const SkScalar halfDomain = domain / 2;
359 return x - SkScalarFloorToScalar(x) < domain;
/external/skia/src/gpu/
H A DGrTextureProducer.cpp51 const SkRect domain = localRect.makeInset(0.5f, 0.5f); local
56 GrTextureDomainEffect::Make(std::move(inputProxy), SkMatrix::I(), domain, local
69 /** Determines whether a texture domain is necessary and if so what domain to use. There are two
77 * We want to avoid using a domain if possible. We consider the above rectangles, the filter type,
94 // If the constraint rectangle contains the whole proxy then no need for a domain.
103 // don't need a domain.
108 // Get the domain inset based on sampling mode (or bail if mipped)
124 // No domain can save us here.
140 // the domain
184 CreateFragmentProcessorForDomainAndFilter( sk_sp<GrTextureProxy> proxy, const SkMatrix& textureMatrix, DomainMode domainMode, const SkRect& domain, const GrSamplerState::Filter* filterOrNullForBicubic) argument
[all...]
/external/skia/src/gpu/effects/
H A DGrBicubicEffect.cpp23 b->add32(GrTextureDomain::GLDomain::DomainKey(bicubicEffect.domain()));
93 bicubicEffect.domain(),
117 fDomain.setData(pdman, bicubicEffect.domain(), proxy);
134 const SkRect& domain)
137 , fDomain(proxy.get(), domain, GrTextureDomain::kClamp_Mode)
132 GrBicubicEffect(sk_sp<GrTextureProxy> proxy, const SkMatrix& matrix, const SkRect& domain) argument
H A DGrTextureDomain.cpp22 static bool can_ignore_rect(GrTextureProxy* proxy, const SkRect& domain) { argument
26 return domain.contains(kFullRect);
32 GrTextureDomain::GrTextureDomain(GrTextureProxy* proxy, const SkRect& domain, Mode mode, int index) argument
40 if (kClamp_Mode == mode && can_ignore_rect(proxy, domain)) {
48 // It is OK if the domain rect is a line or point, but it should not be inverted. We do not
50 SkASSERT(domain.fLeft <= domain.fRight);
51 SkASSERT(domain.fTop <= domain.fBottom);
52 fDomain.fLeft = SkScalarPin(domain
108 const char* domain = fDomainName.c_str(); local
207 Make( sk_sp<GrTextureProxy> proxy, const SkMatrix& matrix, const SkRect& domain, GrTextureDomain::Mode mode, GrSamplerState::Filter filterMode) argument
222 GrTextureDomainEffect(sk_sp<GrTextureProxy> proxy, const SkMatrix& matrix, const SkRect& domain, GrTextureDomain::Mode mode, GrSamplerState::Filter filterMode) argument
256 const GrTextureDomain& domain = tde.fTextureDomain; local
275 const GrTextureDomain& domain = tde.fTextureDomain; local
302 SkRect domain; local
[all...]
/external/skqp/include/gpu/
H A DGrResourceKey.h69 bool isValid() const { return kInvalidDomain != this->domain(); }
71 uint32_t domain() const { return fKey[kDomainAndSize_MetaDataIdx] & 0xffff; } function in class:GrResourceKey
73 /** size of the key data, excluding meta-data (hash, domain, etc). */
76 /** ptr to the key data, excluding meta-data (hash, domain, etc). */
85 Builder(GrResourceKey* key, uint32_t domain, int data32Count) : fKey(key) { argument
87 SkASSERT(domain != kInvalidDomain);
91 SkASSERT(SkToU16(domain) == domain);
92 key->fKey[kDomainAndSize_MetaDataIdx] = domain | (size << 16);
122 // The key domain an
271 Builder(GrUniqueKey* key, const GrUniqueKey& innerKey, Domain domain, int extraData32Cnt, const char* tag = nullptr) argument
[all...]
/external/skqp/src/core/
H A DSkGpuBlurUtils.cpp287 SkRect domain = SkRect::Make(localSrcBounds); local
288 domain.inset((i < scaleFactorX) ? SK_ScalarHalf : 0.0f,
292 domain,
408 SkRect domain = SkRect::Make(localSrcBounds); local
411 domain,
H A DSkRasterClip.cpp355 static const SkScalar domain = SK_Scalar1 / 4; local
356 static const SkScalar halfDomain = domain / 2;
359 return x - SkScalarFloorToScalar(x) < domain;
/external/skqp/src/gpu/effects/
H A DGrBicubicEffect.cpp23 b->add32(GrTextureDomain::GLDomain::DomainKey(bicubicEffect.domain()));
93 bicubicEffect.domain(),
117 fDomain.setData(pdman, bicubicEffect.domain(), proxy);
134 const SkRect& domain)
137 , fDomain(proxy.get(), domain, GrTextureDomain::kClamp_Mode)
132 GrBicubicEffect(sk_sp<GrTextureProxy> proxy, const SkMatrix& matrix, const SkRect& domain) argument
H A DGrTextureDomain.cpp22 static bool can_ignore_rect(GrTextureProxy* proxy, const SkRect& domain) { argument
26 return domain.contains(kFullRect);
32 GrTextureDomain::GrTextureDomain(GrTextureProxy* proxy, const SkRect& domain, Mode mode, int index) argument
40 if (kClamp_Mode == mode && can_ignore_rect(proxy, domain)) {
48 // It is OK if the domain rect is a line or point, but it should not be inverted. We do not
50 SkASSERT(domain.fLeft <= domain.fRight);
51 SkASSERT(domain.fTop <= domain.fBottom);
52 fDomain.fLeft = SkScalarPin(domain
108 const char* domain = fDomainName.c_str(); local
207 Make( sk_sp<GrTextureProxy> proxy, const SkMatrix& matrix, const SkRect& domain, GrTextureDomain::Mode mode, GrSamplerState::Filter filterMode) argument
222 GrTextureDomainEffect(sk_sp<GrTextureProxy> proxy, const SkMatrix& matrix, const SkRect& domain, GrTextureDomain::Mode mode, GrSamplerState::Filter filterMode) argument
256 const GrTextureDomain& domain = tde.fTextureDomain; local
275 const GrTextureDomain& domain = tde.fTextureDomain; local
302 SkRect domain; local
[all...]
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/net/
H A DSocketFacade.java391 * @param domain : protocol family. Ex: IPv4 or IPv6
398 public String openSocket(Integer domain, Integer type, String addr, Integer port) { argument
400 FileDescriptor fd = Os.socket(domain, type, 0);
/external/syslinux/com32/lib/pci/
H A Dscan.c66 int get_module_name_from_pcimap(struct pci_domain *domain, argument
81 for_each_pci_func(dev, domain) {
141 for_each_pci_func(dev, domain) {
173 int get_class_name_from_pci_ids(struct pci_domain *domain, char *pciids_path) argument
186 for_each_pci_func(dev, domain) {
227 for_each_pci_func(dev, domain) {
251 for_each_pci_func(dev, domain) {
266 int get_name_from_pci_ids(struct pci_domain *domain, char *pciids_path) argument
285 for_each_pci_func(dev, domain) {
335 for_each_pci_func(dev, domain) {
420 find_pci_device(const struct pci_domain *domain, struct match *list) argument
454 struct pci_domain *domain = NULL; local
539 gather_additional_pci_config(struct pci_domain *domain) argument
561 free_pci_domain(struct pci_domain *domain) argument
595 get_module_name_from_alias(struct pci_domain *domain, char *modules_alias_path) argument
[all...]
/external/valgrind/include/vki/
H A Dvki-xen-hvm.h43 vki_uint8_t domain, bus, device, intx; member in struct:vki_xen_hvm_set_pci_intx_level

Completed in 8120 milliseconds

1234567891011>>