/external/avahi/avahi-common/ |
domain-test.c | 28 #include "domain.h" 36 char name[64], type[AVAHI_DOMAIN_NAME_MAX], domain[AVAHI_DOMAIN_NAME_MAX]; local 59 avahi_service_name_split(t, name, sizeof(name), type, sizeof(type), domain, sizeof(domain)); 60 printf("name: <%s>; type: <%s>; domain <%s>\n", name, type, domain); 65 avahi_service_name_split(t, NULL, 0, type, sizeof(type), domain, sizeof(domain)); 66 printf("name: <>; type: <%s>; domain <%s>\n", type, domain); [all...] |
/external/avahi/avahi-python/ |
avahi-bookmarks.in | 39 domain = "local" 66 global domain, use_CGI 68 browser = dbus.Interface(self.bus.get_object(avahi.DBUS_NAME, self.server.ServiceBrowserNew(avahi.IF_UNSPEC, avahi.PROTO_UNSPEC, stype, domain, dbus.UInt32(0))), avahi.DBUS_INTERFACE_SERVICE_BROWSER) 89 global domain 91 t = '<html><head><title>%s Zeroconf Bookmarks</title></head><body><h1>%s Zeroconf Bookmarks</h1>' % (domain, domain) 94 t += '<p>Sorry, no Zeroconf web services have been registered on the %s domain.</p>' % domain 115 def new_service(self, interface, protocol, name, type, domain, flags): 117 interface, protocol, name, type, domain, host, aprotocol, address, port, txt, flags = self.server.ResolveService(interface, protocol, name (…) [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/cloudsearchdomain/ |
test_cloudsearchdomain.py | 5 from boto.cloudsearch2.domain import Domain 28 "ARN": "arn:aws:cs:us-east-1:1234567890:domain/demo", 42 domain = Domain(layer1=layer1, data=json.loads(self.domain_status)) 43 search_service = domain.get_search_service() 51 domain = Domain(layer1=layer1, data=json.loads(self.domain_status)) 52 document_service = domain.get_document_service() 60 domain = Domain(layer1=layer1, data=json.loads(self.domain_status) [all...] |
/external/skia/src/gpu/effects/ |
GrTextureDomain.h | 23 * Limits a texture's lookup coordinates to a domain. Samples outside the domain are either clamped 24 * the edge of the domain or result in a vec4 of zeros (decal mode). The domain is clipped to 26 * domain to affect the read value unless the caller considers this when calculating the domain. 31 // Ignore the texture domain rectangle. 33 // Clamp texture coords to the domain rectangle. 35 // Treat the area outside the domain rectangle as fully transparent. 38 // read texels outside of the domain. We could perform additional texture reads and filte 58 const SkRect& domain() const { return fDomain; } function in class:GrTextureDomain [all...] |
/toolchain/binutils/binutils-2.25/intl/ |
dcigettext.c | 219 /* Domain in which to search. */ 229 struct loaded_l10nfile *domain; member in struct:known_translation_t 286 /* Name of the default domain used for gettext(3) prior any call to 290 /* Value used as the default domain for gettext(3). */ 307 static char *plural_lookup PARAMS ((struct loaded_l10nfile *domain, 438 struct loaded_l10nfile *domain; local 469 /* If DOMAINNAME is NULL, we are interested in the default domain. If 498 retval = plural_lookup ((*foundp)->domain, n, (*foundp)->translation, 614 domain. Return the MSGID. */ 621 domain = _nl_find_domain (dirname, single_locale, xdomainname, binding) 733 struct loaded_domain *domain; local [all...] |
/external/avahi/avahi-client/ |
publish.h | 93 const char *domain /**< The domain to register this domain in. We recommend to pass NULL here, to let the daemon decide */, 106 const char *domain, 119 const char *domain /**< The domain this service resides is, as passed to avahi_entry_group_add_service(). May be NULL. */, 130 const char *domain /**< The domain this service resides is, as passed to avahi_entry_group_add_service(). May be NULL. */, 141 const char *domain,
|
/external/e2fsprogs/intl/ |
dcigettext.c | 224 /* Domain in which to search. */ 234 struct loaded_l10nfile *domain; member in struct:known_translation_t 288 /* Name of the default domain used for gettext(3) prior any call to 292 /* Value used as the default domain for gettext(3). */ 309 static char *plural_lookup (struct loaded_l10nfile *domain, 434 struct loaded_l10nfile *domain; local 465 /* If DOMAINNAME is NULL, we are interested in the default domain. If 494 retval = plural_lookup ((*foundp)->domain, n, (*foundp)->translation, 610 domain. Return the MSGID. */ 617 domain = _nl_find_domain (dirname, single_locale, xdomainname, binding) 728 struct loaded_domain *domain; local [all...] |
/libcore/ojluni/src/main/java/java/net/ |
InMemoryCookieStore.java | 90 * 1) given uri domain-matches with, or, associated with 213 * domain contains a dot ('.'). 214 * I.E.: RFC 2965 section 3.3.2 says that if host is x.y.domain.com 215 * and the cookie domain is .domain.com, then it should be rejected. 221 private boolean netscapeDomainMatches(String domain, String host) 223 if (domain == null || host == null) { 227 // if there's no embedded dot in domain and domain is not .local 228 boolean isLocalDomain = ".local".equalsIgnoreCase(domain); 277 String domain = c.getDomain(); local [all...] |
/external/selinux/policycoreutils/mcstrans/src/ |
mcstrans.c | 103 typedef struct domain { struct 113 struct domain *next; 361 destroy_domain(domain_t *domain) { 366 for (ptr = domain->trans_to_raw[i]; ptr;) { 372 domain->trans_to_raw[i] = NULL; 376 for (ptr = domain->raw_to_trans[i]; ptr;) { 385 domain->raw_to_trans[i] = NULL; 387 while (domain->base_classifications) { 388 base_classification_t *next = domain->base_classifications->next; 389 free(domain->base_classifications->trans) 406 domain_t *domain = calloc(1, sizeof(domain_t)); local 724 static domain_t *domain; local 1620 domain_t *domain = domains; local [all...] |
/external/avahi/avahi-utils/ |
avahi-browse.c | 38 #include <avahi-common/domain.h> 65 char *domain; member in struct:Config 82 char *name, *type, *domain; member in struct:ServiceInfo 127 static ServiceInfo *find_service(AvahiIfIndex interface, AvahiProtocol protocol, const char *name, const char *type, const char *domain) { 135 avahi_domain_equal(i->domain, domain)) 154 static void print_service_line(Config *config, char c, AvahiIfIndex interface, AvahiProtocol protocol, const char *name, const char *type, const char *domain, int nl) { 170 avahi_escape_label(name, strlen(name), &e, &l), type, domain, nl ? "\n" : ""); 180 n_columns-35, label, type, domain); 193 const char *domain, [all...] |
/external/chromium-trace/catapult/third_party/Paste/paste/ |
urlmap.py | 37 Parses a path expression like 'domain foobar.com port 20 /' or 42 domain = port = path = None 44 if parts[0] == 'domain': 47 raise ValueError("'domain' must be followed with a domain name") 48 if domain: 49 raise ValueError("'domain' given twice") 50 domain = parts.pop(0) 64 if domain: 65 s = 'http://%s' % domain [all...] |
/external/avahi/avahi-sharp/ |
EntryGroup.cs | 93 byte[] domain, byte[] host, UInt16 port, 99 byte[] type, byte[] domain, IntPtr strlst); 104 byte[] domain, byte[] subtype); 194 public void AddService (string name, string type, string domain, 197 AddService (PublishFlags.None, name, type, domain, port, txt); 200 public void AddService (PublishFlags flags, string name, string type, string domain, 203 AddService (-1, Protocol.Unspecified, flags, name, type, domain, null, port, txt); 206 public void AddService (int iface, Protocol proto, PublishFlags flags, string name, string type, string domain, 217 AddService (iface, proto, flags, name, type, domain, host, port, list); 220 public void AddService (int iface, Protocol proto, PublishFlags flags, string name, string type, string domain, [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/cloudsearch/ |
optionstatus.py | 37 :ivar domain_name: The name of the domain this option is associated with. 54 def __init__(self, domain, data=None, refresh_fn=None, save_fn=None): 55 self.domain = domain 78 data = self.refresh_fn(self.domain.name) 112 data = self.save_fn(self.domain.name, self.to_json()) 196 arn = self.domain.search_service_arn 208 arn = self.domain.doc_service_arn 235 arn = self.domain.search_service_arn 247 arn = self.domain.doc_service_ar [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/cloudsearch2/ |
optionstatus.py | 36 :ivar domain_name: The name of the domain this option is associated with. 53 def __init__(self, domain, data=None, refresh_fn=None, refresh_key=None, 55 self.domain = domain 79 data = self.refresh_fn(self.domain.name) 101 data = self.save_fn(self.domain.name, self.to_json()) 181 arn = self.domain.service_arn 193 arn = self.domain.service_arn 220 arn = self.domain.service_arn 232 arn = self.domain.service_ar [all...] |
document.py | 89 def __init__(self, domain=None, endpoint=None): 90 self.domain = domain 93 self.endpoint = domain.doc_service_endpoint 100 if self.domain and self.domain.layer1: 101 if self.domain.layer1.use_proxy: 102 self.proxy = {'http': self.domain.layer1.get_proxy_url_with_auth()} 104 self.sign_request = getattr(self.domain.layer1, 'sign_request', False) 107 # Create a domain connection to send signed request [all...] |
/external/webrtc/webrtc/libjingle/xmpp/ |
jid_unittest.cc | 19 EXPECT_EQ("dude", jid.domain()); 31 EXPECT_EQ("dude", jid.domain()); 43 EXPECT_EQ("dude", jid.domain()); 55 EXPECT_EQ("dude", jid.domain()); 67 EXPECT_EQ("", jid.domain()); 79 EXPECT_EQ("", jid.domain()); 91 EXPECT_EQ("", jid.domain()); 103 EXPECT_EQ("muchat", jid.domain()); 115 EXPECT_EQ("muchat", jid.domain());
|
/bionic/libc/dns/resolv/ |
res_query.c | 129 const char *name, /* domain name */ 223 const char *name, /* domain name */ 228 const char *cp, * const *domain; local 278 * the domain stuff is tried. Will have a better 285 for (domain = (const char * const *)statp->dnsrch; 286 *domain && !done; 287 domain++) { 290 if (domain[0][0] == '\0' || 291 (domain[0][0] == '.' && domain[0][1] == '\0') [all...] |
/external/avahi/avahi-compat-howl/samples/ |
browse.c | 41 sw_const_string domain, 58 fprintf(stderr, "resolve reply: 0x%x %s %s %s %s %d\n", interface_index, name, type, domain, sw_ipv4_address_name(address, name_buf, 16), port); 88 sw_const_string domain, 109 fprintf(stderr, "browse reply: Add Domain\n"); 115 fprintf(stderr, "browse reply: Add Default Domain\n"); 121 fprintf(stderr, "browse reply: Remove Domain\n"); 127 fprintf(stderr, "browse reply: Add Service 0x%x %s %s %s\n", interface_index, name, type, domain); 128 if (sw_discovery_resolve(discovery, interface_index, name, type, domain, my_resolver, NULL, &rid) != SW_OKAY) 138 fprintf(stderr, "remove service: 0x%x %s %s %s\n", interface_index, name, type, domain);
|
/external/avahi/avahi-core/ |
publish.h | 115 const char *domain, 129 const char *domain, 143 const char *domain, /**< Specify the main type of the service you already added here */ 155 const char *domain, 167 const char *domain, 171 int avahi_server_get_group_of_service(AvahiServer *s, AvahiIfIndex interface, AvahiProtocol protocol, const char *name, const char *type, const char *domain, AvahiSEntryGroup** ret_group);
|
/frameworks/base/core/java/android/security/net/config/ |
ApplicationConfig.java | 37 private Set<Pair<Domain, NetworkSecurityConfig>> mConfigs; 60 * When matching the most specific matching domain rule will be used, if no match exists 80 // Normalize hostname by removing trailing . if present, all Domain hostnames are 85 // Find the Domain -> NetworkSecurityConfig entry with the most specific matching 86 // Domain entry for hostname. 88 Pair<Domain, NetworkSecurityConfig> bestMatch = null; 89 for (Pair<Domain, NetworkSecurityConfig> entry : mConfigs) { 90 Domain domain = entry.first; local 93 if (domain.hostname.equals(hostname)) [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
cookielib.py | 459 known_attrs = ("expires", "domain", "path", "secure", 498 """Return True if text is a host domain name.""" 513 """Return True if domain A domain-matches domain B, according to RFC 2965. 515 A and B may be host domain names or IP addresses. 521 be case-insensitive.) Host A's name domain-matches host B's if 527 x.y.com domain-matches .Y.com but not Y.com.) 529 Note that domain-match is not a commutative operation: a.b.c.com 530 domain-matches .c.com, but not the reverse [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/ |
cookielib.py | 459 known_attrs = ("expires", "domain", "path", "secure", 498 """Return True if text is a host domain name.""" 513 """Return True if domain A domain-matches domain B, according to RFC 2965. 515 A and B may be host domain names or IP addresses. 521 be case-insensitive.) Host A's name domain-matches host B's if 527 x.y.com domain-matches .Y.com but not Y.com.) 529 Note that domain-match is not a commutative operation: a.b.c.com 530 domain-matches .c.com, but not the reverse [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
cookielib.py | 459 known_attrs = ("expires", "domain", "path", "secure", 498 """Return True if text is a host domain name.""" 513 """Return True if domain A domain-matches domain B, according to RFC 2965. 515 A and B may be host domain names or IP addresses. 521 be case-insensitive.) Host A's name domain-matches host B's if 527 x.y.com domain-matches .Y.com but not Y.com.) 529 Note that domain-match is not a commutative operation: a.b.c.com 530 domain-matches .c.com, but not the reverse [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
cookielib.py | 459 known_attrs = ("expires", "domain", "path", "secure", 498 """Return True if text is a host domain name.""" 513 """Return True if domain A domain-matches domain B, according to RFC 2965. 515 A and B may be host domain names or IP addresses. 521 be case-insensitive.) Host A's name domain-matches host B's if 527 x.y.com domain-matches .Y.com but not Y.com.) 529 Note that domain-match is not a commutative operation: a.b.c.com 530 domain-matches .c.com, but not the reverse [all...] |
/external/skia/include/gpu/ |
GrResourceKey.h | 68 bool isValid() const { return kInvalidDomain != this->domain(); } 70 uint32_t domain() const { return fKey[kDomainAndSize_MetaDataIdx] & 0xffff; } function in class:GrResourceKey 72 /** size of the key data, excluding meta-data (hash, domain, etc). */ 75 /** ptr to the key data, excluding meta-data (hash, domain, etc). */ 84 Builder(GrResourceKey* key, uint32_t domain, int data32Count) : fKey(key) { 86 SkASSERT(domain != kInvalidDomain); 90 SkASSERT(SkToU16(domain) == domain); 91 key->fKey[kDomainAndSize_MetaDataIdx] = domain | (size << 16); 121 // The key domain and size are packed into a single uint32_t [all...] |