HomeSort by relevance Sort by last modified time
    Searched refs:domain (Results 1 - 25 of 827) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/selinux/python/sepolicy/sepolicy/templates/
rw.py 41 ## <param name="domain">
43 ## Domain allowed access.
60 ## <param name="domain">
62 ## Domain allowed access.
80 ## <param name="domain">
82 ## Domain allowed access.
99 ## <param name="domain">
101 ## Domain allowed access.
124 ## <param name="domain">
126 ## Domain allowed access
    [all...]
var_cache.py 47 ## <param name="domain">
49 ## Domain allowed access.
66 ## <param name="domain">
68 ## Domain allowed access.
86 ## <param name="domain">
88 ## Domain allowed access.
105 ## <param name="domain">
107 ## Domain allowed access.
127 ## <param name="domain">
129 ## Domain allowed access
    [all...]
var_lib.py 48 ## <param name="domain">
50 ## Domain allowed access.
67 ## <param name="domain">
69 ## Domain allowed access.
86 ## <param name="domain">
88 ## Domain allowed access.
105 ## <param name="domain">
107 ## Domain allowed access.
127 ## <param name="domain">
129 ## Domain allowed access
    [all...]
var_spool.py 47 ## <param name="domain">
49 ## Domain allowed access.
66 ## <param name="domain">
68 ## Domain allowed access.
85 ## <param name="domain">
87 ## Domain allowed access.
104 ## <param name="domain">
106 ## Domain allowed access.
126 ## <param name="domain">
128 ## Domain allowed access
    [all...]
network.py 108 ## <param name="domain">
110 ## Domain allowed access.
127 ## <param name="domain">
129 ## Domain allowed access.
146 ## <param name="domain">
148 ## Domain to not audit.
165 ## <param name="domain">
167 ## Domain allowed access.
184 ## <param name="domain">
186 ## Domain to not audit
    [all...]
var_log.py 43 ## <param name="domain">
45 ## Domain allowed access.
63 ## <param name="domain">
65 ## Domain allowed access.
82 ## <param name="domain">
84 ## Domain allowed access.
etc_rw.py 47 ## <param name="domain">
49 ## Domain allowed access.
66 ## <param name="domain">
68 ## Domain allowed access.
86 ## <param name="domain">
88 ## Domain allowed access.
108 ## <param name="domain">
110 ## Domain allowed access.
tmp.py 47 ## <param name="domain">
49 ## Domain to not audit.
65 ## <param name="domain">
67 ## Domain allowed access.
84 ## <param name="domain">
86 ## Domain allowed access.
107 ## <param name="domain">
109 ## Domain allowed access.
unit_file.py 36 ## Execute TEMPLATETYPE server in the TEMPLATETYPE domain.
38 ## <param name="domain">
40 ## Domain allowed to transition.
var_run.py 46 ## <param name="domain">
48 ## Domain allowed access.
68 ## <param name="domain">
70 ## Domain allowed access.
executable.py 223 ## Execute TEMPLATETYPE_exec_t in the TEMPLATETYPE domain.
225 ## <param name=\"domain\">
227 ## Domain allowed to transition.
242 ## Execute TEMPLATETYPE in the caller domain.
244 ## <param name="domain">
246 ## Domain allowed access.
263 ## Execute TEMPLATETYPE in the TEMPLATETYPE domain, and
264 ## allow the specified role the TEMPLATETYPE domain.
266 ## <param name="domain">
268 ## Domain allowed to transitio
    [all...]
  /external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/lib/
librpc-tirpc.h 24 * domain - AF_INET or AF_INET6,
28 int bound_socket(int domain, int type);
  /external/mdnsresponder/mDNSPosix/
nss_mdns.conf 4 domain local
5 domain 254.169.in-addr.arpa
6 domain 8.e.f.ip6.int
7 domain 9.e.f.ip6.int
8 domain a.e.f.ip6.int
9 domain b.e.f.ip6.int
10 domain 8.e.f.ip6.arpa
11 domain 9.e.f.ip6.arpa
12 domain a.e.f.ip6.arpa
13 domain b.e.f.ip6.arp
    [all...]
  /bionic/libc/bionic/
socket.cpp 21 int socket(int domain, int type, int protocol) {
22 return __netdClientDispatch.socket(domain, type, protocol);
  /external/u-boot/arch/arm/include/asm/mach-imx/
rdc-sema.h 14 * d[x] means domain[x], x can be [3 - 0].
40 #define RDC_PDAP_DW_SHIFT(domain) ((domain) << 1)
41 #define RDC_PDAP_DR_SHIFT(domain) (1 + RDC_PDAP_DW_SHIFT(domain))
42 #define RDC_PDAP_DW_MASK(domain) (1 << RDC_PDAP_DW_SHIFT(domain))
43 #define RDC_PDAP_DR_MASK(domain) (1 << RDC_PDAP_DR_SHIFT(domain))
44 #define RDC_PDAP_DRW_MASK(domain) (RDC_PDAP_DW_MASK(domain) |
    [all...]
  /external/u-boot/arch/arm/include/asm/proc-armv/
domain.h 2 * linux/include/asm-arm/proc-armv/domain.h
14 * Domain numbers
16 * DOMAIN_IO - domain 2 includes all IO only
17 * DOMAIN_KERNEL - domain 1 includes all kernel memory only
18 * DOMAIN_USER - domain 0 includes all user memory only
26 * Domain types
37 "mcr p15, 0, %0, c3, c0 @ set domain" \
43 unsigned int domain = current->thread.domain; \
44 domain &= ~domain_val(dom, DOMAIN_MANAGER);
    [all...]
  /external/u-boot/drivers/power/domain/
Makefile 5 obj-$(CONFIG_POWER_DOMAIN) += power-domain-uclass.o
6 obj-$(CONFIG_BCM6328_POWER_DOMAIN) += bcm6328-power-domain.o
7 obj-$(CONFIG_SANDBOX_POWER_DOMAIN) += sandbox-power-domain.o
8 obj-$(CONFIG_SANDBOX_POWER_DOMAIN) += sandbox-power-domain-test.o
9 obj-$(CONFIG_TEGRA186_POWER_DOMAIN) += tegra186-power-domain.o
  /external/apache-http/src/org/apache/http/impl/cookie/
BasicDomainHandler.java 57 throw new MalformedCookieException("Missing value for domain attribute");
60 throw new MalformedCookieException("Blank value for domain attribute");
73 // Validate the cookies domain attribute. NOTE: Domains without
75 // have DNS names. Since they have no dots, to domain-match the
76 // request-host and domain must be identical for the cookie to sent
79 String domain = cookie.getDomain(); local
80 if (domain == null) {
81 throw new MalformedCookieException("Cookie domain may not be null");
85 // A Set-Cookie2 with Domain=ajax.com will be accepted.
87 // domain must match hos
115 String domain = cookie.getDomain(); local
    [all...]
RFC2109DomainHandler.java 59 throw new MalformedCookieException("Missing value for domain attribute");
62 throw new MalformedCookieException("Blank value for domain attribute");
76 String domain = cookie.getDomain(); local
77 if (domain == null) {
78 throw new MalformedCookieException("Cookie domain may not be null");
80 if (!domain.equals(host)) {
81 int dotIndex = domain.indexOf('.');
83 throw new MalformedCookieException("Domain attribute \""
84 + domain
88 // domain must start with do
125 String domain = cookie.getDomain(); local
    [all...]
NetscapeDomainHandler.java 58 String domain = cookie.getDomain(); local
60 int domainParts = new StringTokenizer(domain, ".").countTokens();
62 if (isSpecialDomain(domain)) {
64 throw new MalformedCookieException("Domain attribute \""
65 + domain
71 throw new MalformedCookieException("Domain attribute \""
72 + domain
80 * Checks if the given domain is in one of the seven special
82 * @param domain The domain
105 String domain = cookie.getDomain(); local
    [all...]
  /external/apache-http/src/org/apache/http/auth/
NTUserPrincipal.java 52 private final String domain; field in class:NTUserPrincipal
56 final String domain,
63 if (domain != null) {
64 this.domain = domain.toUpperCase(Locale.ENGLISH);
66 this.domain = null;
68 if (this.domain != null && this.domain.length() > 0) {
70 buffer.append(this.domain);
84 return this.domain;
    [all...]
  /external/guava/guava-gwt/test-super/com/google/common/net/super/com/google/common/net/
InternetDomainNameTest.java 46 * A domain part which is valid under lenient validation, but invalid under
213 final InternetDomainName domain = InternetDomainName.from(name); local
214 assertTrue(name, domain.isPublicSuffix());
215 assertTrue(name, domain.hasPublicSuffix());
216 assertFalse(name, domain.isUnderPublicSuffix());
217 assertFalse(name, domain.isTopPrivateDomain());
218 assertEquals(domain, domain.publicSuffix());
222 final InternetDomainName domain = InternetDomainName.from(name); local
223 assertFalse(name, domain.isPublicSuffix())
231 final InternetDomainName domain = InternetDomainName.from(name); local
240 final InternetDomainName domain = InternetDomainName.from(name); local
249 final InternetDomainName domain = InternetDomainName.from(name); local
260 final InternetDomainName domain = InternetDomainName.from(name); local
287 InternetDomainName domain = InternetDomainName.from("foo.com"); local
348 InternetDomainName domain = InternetDomainName.from(inputName); local
368 InternetDomainName domain = InternetDomainName.from("foo.teledata.mz"); local
380 InternetDomainName domain = InternetDomainName.from("www.essex.sch.uk"); local
    [all...]
  /device/linaro/bootloader/edk2/StdLib/Efi/StdLib/etc/
resolv.conf 2 # Domain name
4 domain intel.com
  /external/mdnsresponder/mDNSShared/
PlatformCommon.h 18 extern void ReadDDNSSettingsFromConfFile(mDNS *const m, const char *const filename, domainname *const hostname, domainname *const domain, mDNSBool *DomainDiscoveryDisabled);
  /external/selinux/python/sepolgen/tests/
test_refparser.py 28 ## <param name="domain">
30 ## Domain allowed access.
40 allow { domain $1 } { usr_t usr_home_t }:{ file dir } { read write getattr };
59 ## <param name="domain">
61 ## Domain allowed access.
84 ## Execute generic programs in /usr in the caller domain.
86 ## <param name="domain">
88 ## Domain allowed access.

Completed in 750 milliseconds

1 2 3 4 5 6 7 8 91011>>