HomeSort by relevance Sort by last modified time
    Searched refs:domain (Results 76 - 100 of 1206) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/avahi/avahi-python/avahi-discover/
avahi-discover.py 60 def __init__(self, path="avahi-discover.ui", root="main_window", domain=None, **kwargs):
74 (name,interface,protocol,stype,domain) = self.treemodel.get(iter,1,2,3,4,5)
79 self.server.ResolveService( int(interface), int(protocol), name, stype, domain, avahi.PROTO_UNSPEC, dbus.UInt32(0), reply_handler=self.service_resolved, error_handler=self.print_error)
100 def service_resolved(self, interface, protocol, name, stype, domain, host, aprotocol, address, port, txt, flags):
101 print "Service data for service '%s' of type '%s' in domain '%s' on %i.%i:" % (name, stype, domain, interface, protocol)
105 self.update_label(interface, protocol, name, stype, domain, host, aprotocol, address, port, avahi.txt_array_to_string_array(txt))
120 def new_service(self, interface, protocol, name, stype, domain, flags):
121 print "Found service '%s' of type '%s' in domain '%s' on %i.%i." % (name, stype, domain, interface, protocol
    [all...]
  /device/sample/apps/SampleEmailPolicy/src/com/android/email/policy/
EmailPolicy.java 94 * The only argument (with the key FIND_PROVIDER) is a string containing the domain that the
96 * "MyEmailAddress@gmail.com", the domain will be "gmail.com".
98 * If no server information is provided for this domain, simply return Bundle.EMPTY.
99 * If server information is available for this domain, it can be returned in the following
146 * $domain - the value after the @ signin the email address the user entered
202 * Policy: For a known domain, configure to the servers for that domain
205 String domain = arguments.getString(FIND_PROVIDER); local
206 if (domain != null) {
207 domain = domain.toLowerCase()
    [all...]
  /external/chromium-trace/catapult/telemetry/third_party/web-page-replay/third_party/dns/
e164.py 18 @var public_enum_domain: The DNS public ENUM domain, e164.arpa.
30 value is the ENUM domain name for that number.
33 @param origin: The domain in which the number should be constructed.
43 """Convert an ENUM domain name into an E.164 number.
44 @param name: the ENUM domain name.
46 @param origin: A domain containing the ENUM domain name. The
47 name is relativized to this domain before being converted to text.
57 raise dns.exception.SyntaxError('non-digit labels in ENUM domain name')
71 for domain in domains
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/cloudsearch/
test_layers.py 57 domain = self.layer2.create_domain(self.domain_name)
58 self.addCleanup(domain.delete)
59 self.assertTrue(domain.created, False)
60 self.assertEqual(domain.domain_name, self.domain_name)
61 self.assertEqual(domain.num_searchable_docs, 0)
  /external/jetty/src/java/org/eclipse/jetty/util/
HostMap.java 75 * hostname by taking into account the domain suffix matches.
86 String domain = host.trim(); local
89 domains.add(domain);
90 if ((idx = domain.indexOf('.')) > 0)
92 domain = domain.substring(idx+1);
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/bin/
sdbadmin 23 # Tools to dump and recover an SDB domain
54 def dump_db(domain, file_name, use_json=False, sort_attributes=False):
56 Dump SDB domain to file
60 for item in domain:
64 doc = domain.to_xml(f)
66 def empty_db(domain):
68 Remove all entries from domain
70 for item in domain:
73 def load_db(domain, file, use_json=False):
75 Load a domain from a file, this doesn't overwrite any existin
    [all...]
  /external/avahi/avahi-core/
browse-service-type.c 26 #include <avahi-common/domain.h>
63 char type[AVAHI_DOMAIN_NAME_MAX], domain[AVAHI_DOMAIN_NAME_MAX]; local
67 if (avahi_service_name_split(record->data.ptr.name, NULL, 0, type, sizeof(type), domain, sizeof(domain)) < 0) {
72 b->callback(b, interface, protocol, event, type, domain, flags, b->userdata);
81 const char *domain,
96 AVAHI_CHECK_VALIDITY_RETURN_NULL(server, !domain || avahi_is_valid_domain_name(domain), AVAHI_ERR_INVALID_DOMAIN_NAME);
99 if (!domain)
100 domain = server->domain_name
    [all...]
browse-service.c 26 #include <avahi-common/domain.h>
64 char service[AVAHI_LABEL_MAX], type[AVAHI_DOMAIN_NAME_MAX], domain[AVAHI_DOMAIN_NAME_MAX]; local
71 if (avahi_service_name_split(record->data.ptr.name, service, sizeof(service), type, sizeof(type), domain, sizeof(domain)) < 0) {
76 b->callback(b, interface, protocol, event, service, type, domain, flags, b->userdata);
88 const char *domain,
104 AVAHI_CHECK_VALIDITY_RETURN_NULL(server, !domain || avahi_is_valid_domain_name(domain), AVAHI_ERR_INVALID_DOMAIN_NAME);
108 if (!domain)
109 domain = server->domain_name
    [all...]
  /external/guava/guava/src/com/google/common/collect/
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);
79 final DiscreteDomain<C> domain; field in class:ContiguousSet
    [all...]
EmptyContiguousSet.java 33 EmptyContiguousSet(DiscreteDomain<C> domain) {
34 super(domain);
118 private final DiscreteDomain<C> domain; field in class:EmptyContiguousSet.SerializedForm
120 private SerializedForm(DiscreteDomain<C> domain) {
121 this.domain = domain;
125 return new EmptyContiguousSet<C>(domain);
134 return new SerializedForm<C>(domain);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/include/cloog/
union_domain.h 15 CloogDomain *domain; /**< An element of the list. */ member in struct:cloognameddomainlist
16 CloogScattering *scattering; /**< Scattering function for domain. */
17 char *name; /**< Name of the domain. */
29 CloogNamedDomainList *domain; member in struct:clooguniondomain
40 const char *name, CloogDomain *domain, CloogScattering *scattering,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/include/cloog/
union_domain.h 15 CloogDomain *domain; /**< An element of the list. */ member in struct:cloognameddomainlist
16 CloogScattering *scattering; /**< Scattering function for domain. */
17 char *name; /**< Name of the domain. */
29 CloogNamedDomainList *domain; member in struct:clooguniondomain
40 const char *name, CloogDomain *domain, CloogScattering *scattering,
  /external/jetty/src/java/org/eclipse/jetty/http/
HttpCookie.java 49 public HttpCookie(String name, String value, String domain, String path)
55 _domain = domain;
80 public HttpCookie(String name, String value, String domain, String path, int maxAge, boolean httpOnly, boolean secure)
84 _domain = domain;
95 public HttpCookie(String name, String value, String domain, String path, int maxAge, boolean httpOnly, boolean secure, String comment, int version)
99 _domain = domain;
137 /** Get the domain.
138 * @return the domain
  /external/libxml2/python/tests/
tstLastError.py 23 def failUnlessXmlError(self,f,args,exc,domain,code,message,level,file,line):
36 print("domain = ",e.domain())
43 self.failUnlessEqual(domain,e.domain())
57 domain=libxml2.XML_FROM_IO,
70 domain=libxml2.XML_FROM_PARSER,
  /external/libdrm/nouveau/nvif/
if0002.h 20 __u8 domain; member in struct:nvif_perfmon_query_signal_v0
30 __u8 domain; member in struct:nvif_perfmon_query_source_v0
  /external/mesa3d/src/gallium/drivers/nv30/
nv30_transfer.h 7 unsigned domain; member in struct:nv30_rect
31 struct nouveau_bo *, unsigned offset, unsigned domain,
  /frameworks/base/services/core/java/com/android/server/pm/
IntentFilterVerificationResponse.java 35 for (String domain : failedDomains) {
39 sb.append(domain);
  /external/avahi/avahi-sharp/
ServiceTypeBrowser.cs 28 IntPtr type, IntPtr domain, LookupResultFlags flags,
35 public string Domain;
64 private string domain; field in class:Avahi.ServiceTypeBrowser
73 byte[] domain, LookupFlags flags,
113 public ServiceTypeBrowser (Client client, string domain) : this (client, -1, Protocol.Unspecified,
114 domain, LookupFlags.None)
118 public ServiceTypeBrowser (Client client, int iface, Protocol proto, string domain, LookupFlags flags)
123 this.domain = domain;
146 Utility.StringToBytes (domain), flags
    [all...]
  /external/apache-http/src/org/apache/http/cookie/
SetCookie.java 77 * Sets the domain attribute.
79 * @param domain The value of the domain attribute
83 void setDomain(String domain);
  /external/avahi/avahi-compat-howl/
browse-domain-test.c 40 sw_const_string domain,
45 fprintf(stderr, "new domain %s\n", domain);
49 fprintf(stderr, "removed domain %s\n", domain);
53 fprintf(stderr, "some kind of failure happened: %s\n", domain);
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/cloudsearch2/
test_layers.py 62 domain = self.layer2.create_domain(self.domain_name)
63 self.addCleanup(domain.delete)
64 self.assertTrue(domain.created, False)
65 self.assertEqual(domain.domain_name, self.domain_name)
  /external/chromium-trace/catapult/third_party/pipeline/pipeline/ui/
jquery.cookie.js 16 * @example $.cookie('the_cookie', 'the_value', {expires: 7, path: '/', domain: 'jquery.com', secure: true});
31 * @option String domain The value of the domain attribute of the cookie (default: domain of page that created the cookie).
74 var domain = options.domain ? '; domain=' + options.domain : '';
76 document.cookie = [name, '=', encodeURIComponent(value), expires, path, domain, secure].join('');
  /external/mesa3d/src/gallium/drivers/nouveau/
nouveau_mm.h 17 nouveau_mm_create(struct nouveau_device *, uint32_t domain,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/include/cloog/isl/
cloog.h 10 #include <cloog/isl/domain.h>
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/include/cloog/isl/
cloog.h 10 #include <cloog/isl/domain.h>

Completed in 694 milliseconds

1 2 34 5 6 7 8 91011>>