/system/sepolicy/ |
sgdisk.te | 2 type sgdisk, domain, domain_deprecated; 20 neverallow { domain -vold } sgdisk:process transition;
|
vdc.te | 5 # We also transition into this domain from dumpstate, when 8 type vdc, domain, domain_deprecated;
|
/external/libbrillo/brillo/errors/ |
error.h | 27 const std::string& domain, 31 const std::string& domain, 40 const std::string& domain, 47 const std::string& domain, 55 // Returns the error domain, code and message 66 // error domain. 67 bool HasDomain(const std::string& domain) const; 70 // specified error domain and code. 71 bool HasError(const std::string& domain, const std::string& code) const; 80 // Finds an error object of particular domain in the error chain stating a [all...] |
/prebuilts/go/darwin-x86/src/net/http/cookiejar/ |
jar.go | 20 // PublicSuffixList provides the public suffix of a domain. For example: 35 // PublicSuffix returns the public suffix of domain. 40 PublicSuffix(domain string) string 51 // an HTTP server can set a cookie for a domain. 67 // their name/domain/path. 94 Domain string 110 // Id returns the domain;path;name triple of e as an id. 112 return fmt.Sprintf("%s;%s;%s", e.Domain, e.Path, e.Name) 122 // domainMatch implements "domain-match" of RFC 6265 section 5.1.3. 124 if e.Domain == host [all...] |
/prebuilts/go/linux-x86/src/net/http/cookiejar/ |
jar.go | 20 // PublicSuffixList provides the public suffix of a domain. For example: 35 // PublicSuffix returns the public suffix of domain. 40 PublicSuffix(domain string) string 51 // an HTTP server can set a cookie for a domain. 67 // their name/domain/path. 94 Domain string 110 // Id returns the domain;path;name triple of e as an id. 112 return fmt.Sprintf("%s;%s;%s", e.Domain, e.Path, e.Name) 122 // domainMatch implements "domain-match" of RFC 6265 section 5.1.3. 124 if e.Domain == host [all...] |
/external/parameter-framework/upstream/parameter/ |
ConfigurableDomains.h | 51 * Adds a domain object to configurable domains. The ConfigurableDomains 54 * @param[in] pDomain the domain object. 56 * domain, otherwise, an existing domain with the same name will first be 60 * @returns true if the domain was successfully added 62 bool addDomain(CConfigurableDomain &domain, bool bOverwrite, std::string &strError); 65 * Delete a domain by name 67 * @param[in] strName name of the domain to be deleted 70 * @returns true of the domain was sucessfully deleted, false otherwise (i.e. 71 * the domain didn't exist) [all...] |
/external/parameter-framework/upstream/test/functional-tests/ |
plan.md | 209 - [ ] Scenario: create and delete an empty domain 211 * THEN creating a domain with an arbitrary name ("domain1"?) should succeed 212 * (AND_THEN the domain list should contain the domain name) 213 * THEN deleting the domain should succeed 216 * GIVEN a started parameter framework with a domain 217 * THEN creating a configuration in this domain with an arbitrary name ("config1") should succeed 218 * (AND_THEN the domain configuration list should contain the configuration name) 220 * (AND_THEN the domain configuration list should not contain the configuration name) 222 - [ ] Scenario: delete a domain with configuration [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...] |
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/ |
Mailbox.java | 32 private String domain; field in class:Mailbox 37 * @param domain The part of the e-mail address to the right of the "@". 39 public Mailbox(String localPart, String domain) { 40 this(null, localPart, domain); 47 * @param domain The part of the e-mail address to the right of the "@". 49 public Mailbox(DomainList route, String localPart, String domain) { 52 this.domain = domain; 75 return domain; 108 + (domain == null ? "" : "@" [all...] |
/packages/services/Telephony/src/org/apache/james/mime4j/field/address/ |
Mailbox.java | 32 private String domain; field in class:Mailbox 37 * @param domain The part of the e-mail address to the right of the "@". 39 public Mailbox(String localPart, String domain) { 40 this(null, localPart, domain); 47 * @param domain The part of the e-mail address to the right of the "@". 49 public Mailbox(DomainList route, String localPart, String domain) { 52 this.domain = domain; 75 return domain; 108 + (domain == null ? "" : "@" [all...] |
/prebuilts/go/darwin-x86/src/os/user/ |
lookup_windows.go | 14 var domain *uint16 16 err := syscall.NetGetJoinInformation(nil, &domain, &status) 20 syscall.NetApiBufferFree((*byte)(unsafe.Pointer(domain))) 52 func lookupFullName(domain, username, domainAndUser string) (string, error) { 60 name, err := lookupFullNameServer(domain, username) 64 // domain worked neigher as a domain nor as a server 65 // could be domain server unavailable 71 username, domain, t, e := usid.LookupAccount("") 78 domainAndUser := domain + `\` + usernam [all...] |
/prebuilts/go/linux-x86/src/os/user/ |
lookup_windows.go | 14 var domain *uint16 16 err := syscall.NetGetJoinInformation(nil, &domain, &status) 20 syscall.NetApiBufferFree((*byte)(unsafe.Pointer(domain))) 52 func lookupFullName(domain, username, domainAndUser string) (string, error) { 60 name, err := lookupFullNameServer(domain, username) 64 // domain worked neigher as a domain nor as a server 65 // could be domain server unavailable 71 username, domain, t, e := usid.LookupAccount("") 78 domainAndUser := domain + `\` + usernam [all...] |
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
RegularContiguousSet.java | 37 RegularContiguousSet(Range<C> range, DiscreteDomain<C> domain) { 38 super(domain); 44 ? ContiguousSet.create(range.intersection(other), domain) 45 : new EmptyContiguousSet<C>(domain); 56 return new EmptyContiguousSet<C>(domain); 73 return equalsOrThrow(previous, last) ? null : domain.next(previous); 87 return range.lowerBound.leastValueAbove(domain); 91 return range.upperBound.greatestValueBelow(domain); 95 long distance = domain.distance(first(), last()); 120 checkArgument(this.domain.equals(other.domain)) [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/include/cloog/ |
domain.h | 5 ** domain.h ** 58 CloogDomain *domain; /**< An element of the list. */ member in struct:cloogdomainlist 85 CloogDomain * cloog_domain_simple_convex(CloogDomain * domain); 100 void cloog_domain_print_structure(FILE *file, CloogDomain *domain, int level, 116 CloogScattering *cloog_domain_read_scattering(CloogDomain *domain, FILE *foo); 138 int cloog_domain_can_stride(CloogDomain *domain, int level); 139 int cloog_domain_is_otl(CloogDomain *domain, int level); 140 CloogDomain * cloog_domain_stride_lower_bound(CloogDomain *domain, int level, 142 CloogDomain * cloog_domain_add_stride_constraint(CloogDomain *domain, 144 int cloog_domain_can_unroll(CloogDomain *domain, int level [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/include/cloog/ |
domain.h | 5 ** domain.h ** 58 CloogDomain *domain; /**< An element of the list. */ member in struct:cloogdomainlist 85 CloogDomain * cloog_domain_simple_convex(CloogDomain * domain); 100 void cloog_domain_print_structure(FILE *file, CloogDomain *domain, int level, 116 CloogScattering *cloog_domain_read_scattering(CloogDomain *domain, FILE *foo); 138 int cloog_domain_can_stride(CloogDomain *domain, int level); 139 int cloog_domain_is_otl(CloogDomain *domain, int level); 140 CloogDomain * cloog_domain_stride_lower_bound(CloogDomain *domain, int level, 142 CloogDomain * cloog_domain_add_stride_constraint(CloogDomain *domain, 144 int cloog_domain_can_unroll(CloogDomain *domain, int level [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/sdb/ |
item.py | 28 database. Items belong to a :py:class:`Domain <boto.sdb.domain.Domain>`, 35 want to use the convenience methods on :py:class:`boto.sdb.domain.Domain` 36 for that purpose. For example, :py:meth:`boto.sdb.domain.Domain.get_item`. 38 def __init__(self, domain, name='', active=False): 40 :type domain: :py:class:`boto.sdb.domain.Domain [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/cloudsearch2/ |
layer1.py | 82 :param domain_name: A string that represents the name of a domain. 83 Domain names are unique across the domains owned by an account 84 within an AWS region. Domain names start with a letter or number 97 Creates a new search domain. For more information, see 98 `Creating a Search Domain`_ in the Amazon CloudSearch 102 :param domain_name: A name for the domain you are creating. Allowed 104 Domain names must start with a letter or number and be at least 3 122 :param domain_name: A string that represents the name of a domain. 123 Domain names are unique across the domains owned by an account 124 within an AWS region. Domain names start with a letter or numbe [all...] |
/external/guava/guava/src/com/google/common/net/ |
InternetDomainName.java | 37 * An immutable well-formed internet domain name, such as {@code com} or {@code 39 * network interactions take place. Thus there is no guarantee that the domain 43 * likely to represent an addressable domain on the web -- that is, for a 46 * done by determining whether the domain ended with a {@linkplain 50 * result, the only useful test to determine if a domain is a plausible web host 67 * Internationalized domain names</a> such as {@code ??.cn} are supported, as 93 * Maximum parts (labels) in a domain name. This value arises from 103 * Maximum length of a full domain name, including separators, and 110 * Maximum size of a single part of a domain name. See 116 * The full domain name, converted to lower case [all...] |
/bionic/libc/arch-mips/include/machine/ |
setjmp.h | 3 /* Public domain */
|
/bionic/libm/upstream-freebsd/lib/msun/src/ |
w_cabsf.c | 5 * Placed into the Public Domain, 1994.
|
w_dremf.c | 5 * Placed into the Public Domain, 1994.
|
/build/target/board/generic/sepolicy/ |
logd.te | 1 # goldfish logcat service: runs logcat -Q in logd domain
|
/development/ndk/platforms/android-21/arch-x86_64/include/machine/ |
exec.h | 3 * Written by Artur Grabowski <art@openbsd.org> Public Domain
|
/device/google/dragon/sepolicy/ |
locale.te | 3 type locale, domain, domain_deprecated;
|
thermal_gov.te | 2 type thermal_gov, domain, domain_deprecated;
|