Searched refs:domain (Results 1 - 25 of 34) sorted by relevance

12

/device/linaro/bootloader/edk2/StdLib/Efi/StdLib/etc/
H A Dresolv.conf4 domain intel.com
/device/google/cuttlefish_common/common/vsoc/lib/
H A Dtyped_region_view.h54 bool Open(const char* domain) { argument
55 return RegionView::Open(LayoutType::region_name, domain);
66 static ViewType* GetInstance(const char* domain) { argument
69 if (!domain) {
75 auto& instance = instances[domain];
80 if (!instance->Open(domain)) {
H A Dregion_control.h47 const char* domain);
H A Dregion_view.cpp53 bool vsoc::RegionView::Open(const char* name, const char* domain) { argument
54 control_ = vsoc::RegionControl::Open(name, domain);
H A Dregion_view.h76 bool Open(const char* region_name, const char* domain);
/device/sample/apps/SampleEmailPolicy/src/com/android/email/policy/
H A DEmailPolicy.java94 * 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);
206 if (domain != null) {
207 domain
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
H A Dcookielib.py459 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
[all...]
H A Dgettext.py421 def find(domain, localedir=None, languages=None, all=0):
448 mofile = os.path.join(localedir, lang, 'LC_MESSAGES', '%s.mo' % domain)
461 def translation(domain, localedir=None, languages=None,
465 mofiles = find(domain, localedir, languages, all=1)
469 raise IOError(ENOENT, 'No translation file found for domain', domain)
492 def install(domain, localedir=None, unicode=False, codeset=None, names=None):
493 t = translation(domain, localedir, fallback=True, codeset=codeset)
502 # current global domain, `messages' used for compatibility w/ GNU gettext
506 def textdomain(domain
[all...]
H A D_MozillaCookieJar.py30 domain as set in the HTTP header started with a dot (yes, I'm aware some
70 domain, domain_specified, path, secure, expires, name, value = \
81 initial_dot = domain.startswith(".")
92 domain, domain_specified, initial_dot,
129 if cookie.domain.startswith("."): initial_dot = "TRUE"
145 "\t".join([cookie.domain, initial_dot, cookie.path,
H A D_LWPCookieJar.py28 ("domain", cookie.domain)]
106 "port", "path", "domain",
147 domain = h("domain")
148 domain_specified = domain.startswith(".")
151 domain, domain_specified, h("domain_dot"),
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
H A Dgettext.py424 def find(domain, localedir=None, languages=None, all=0):
451 mofile = os.path.join(localedir, lang, 'LC_MESSAGES', '%s.mo' % domain)
464 def translation(domain, localedir=None, languages=None,
468 mofiles = find(domain, localedir, languages, all=1)
472 raise IOError(ENOENT, 'No translation file found for domain', domain)
495 def install(domain, localedir=None, unicode=False, codeset=None, names=None):
496 t = translation(domain, localedir, fallback=True, codeset=codeset)
505 # current global domain, `messages' used for compatibility w/ GNU gettext
509 def textdomain(domain
[all...]
/device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
H A Dres_query.c120 const char *name, /* domain name */
198 const char *name, /* domain name */
205 const char *cp, * const *domain; local
251 for (domain = (const char * const *)_res.dnsrch;
252 *domain && !done;
253 domain++) {
255 ret = res_querydomain(name, *domain, class, type,
262 * If name isn't found in this domain,
267 * from finding this entry higher in the domain.
333 * Perform a call on res_query on the concatenation of name and domain,
337 res_querydomain( const char *name, const char *domain, int class, int type, u_char *answer, int anslen ) argument
[all...]
H A Dgethostbynis.c64 static char *domain = (char *)NULL; local
76 if (domain == (char *)NULL)
77 if (yp_get_default_domain (&domain))
80 if (yp_match(domain, map, name, strlen(name), &result, &resultlen))
H A Dgetnetbynis.c63 static char *domain = (char *)NULL; local
75 if (domain == (char *)NULL)
76 if (yp_get_default_domain (&domain))
79 if (yp_match(domain, map, name, strlen(name), &result, &resultlen))
H A Dsocket.c178 @param [in] domain Select the family of protocols for the client or server
218 IN INT32 domain,
241 domain,
217 socket( IN INT32 domain, IN INT32 type, IN INT32 protocol ) argument
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
H A D_localemodule.c569 "dgettext(domain, msg) -> string\n"
570 "Return translation of msg in domain.");
575 char *domain, *in; local
576 if (!PyArg_ParseTuple(args, "zs", &domain, &in))
578 return PyString_FromString(dgettext(domain, in));
582 "dcgettext(domain, msg, category) -> string\n"
583 "Return translation of msg in domain and category.");
588 char *domain, *msgid; local
590 if (!PyArg_ParseTuple(args, "zsi", &domain, &msgid, &category))
592 return PyString_FromString(dcgettext(domain,msgi
602 char *domain; local
620 char *domain, *dirname; local
643 char *domain,*codeset; local
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
H A D_localemodule.c569 "dgettext(domain, msg) -> string\n"
570 "Return translation of msg in domain.");
575 char *domain, *in; local
576 if (!PyArg_ParseTuple(args, "zs", &domain, &in))
578 return PyString_FromString(dgettext(domain, in));
582 "dcgettext(domain, msg, category) -> string\n"
583 "Return translation of msg in domain and category.");
588 char *domain, *msgid; local
590 if (!PyArg_ParseTuple(args, "zsi", &domain, &msgid, &category))
592 return PyString_FromString(dcgettext(domain,msgi
602 char *domain; local
620 char *domain, *dirname; local
643 char *domain,*codeset; local
[all...]
/device/generic/goldfish/dhcp/common/
H A Dsocket.h34 // Open a socket, |domain|, |type| and |protocol| are as described in the
36 Result open(int domain, int type, int protocol);
/device/google/vrservices/vrcore/sepolicy/
H A Dvrcore_app.te3 ### domain to tighten access to VrCore-specific IPC services and
7 type vrcore_app, domain;
/device/linaro/bootloader/edk2/StdLib/LibC/Main/Ia32/
H A Dfpu_rmode.asm6 ; Public domain.
/device/linaro/bootloader/edk2/StdLib/Include/netns/
H A Dns.h139 extern struct domain nsdomain;
/device/generic/goldfish/wifi/ipv6proxy/
H A Dsocket.h64 Result open(int domain, int type, int protocol);
H A Dsocket.cpp60 Result Socket::open(int domain, int type, int protocol) { argument
64 mSocket = ::socket(domain, type | SOCK_CLOEXEC, protocol);
/device/google/cuttlefish_common/common/libs/fs/
H A Dshared_fd.cpp238 inline bool SharedFD::SocketPair(int domain, int type, int protocol, argument
241 int rval = socketpair(domain, type, protocol, fds);
259 SharedFD SharedFD::Socket(int domain, int socket_type, int protocol) { argument
260 int fd = TEMP_FAILURE_RETRY(socket(domain, socket_type, protocol));
/device/google/cuttlefish_common/host/vsoc/lib/
H A Dregion_control.cpp191 const char* region_name, const char* domain) {
195 SharedFD::SocketLocalClient(domain, false, SOCK_STREAM);
190 Open( const char* region_name, const char* domain) argument

Completed in 284 milliseconds

12