HomeSort by relevance Sort by last modified time
    Searched full:domain (Results 151 - 175 of 6195) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/selinux/policycoreutils/sepolicy/sepolicy/help/
files_exec.txt 4 In SELinux these are called entrypoints. SELinux controls the executable files that can be used as an entrypoint to an confined domain. If you have an alternate executable that you would like to run in the '%(APP)s' domain, you need to change the executable file type to the entrypoint type.
  /external/sepolicy/
procrank.te 5 type procrank, domain, mlstrustedsubject;
12 r_dir_file(procrank, domain)
debuggerd.te 2 type debuggerd, domain;
9 allow debuggerd domain:dir r_dir_perms;
10 allow debuggerd domain:file r_file_perms;
11 allow debuggerd domain:lnk_file read;
12 allow debuggerd { domain -init -ueventd -watchdogd -healthd -adbd -keystore }:process { ptrace getattr };
21 allow debuggerd domain:process { sigstop signal };
blkid_untrusted.te 2 type blkid_untrusted, domain;
34 neverallow { domain -vold } blkid_untrusted:process transition;
35 neverallow domain blkid_untrusted:process dyntransition;
fsck_untrusted.te 2 type fsck_untrusted, domain;
34 neverallow { domain -vold } fsck_untrusted:process transition;
35 neverallow domain fsck_untrusted:process dyntransition;
  /external/skia/src/gpu/effects/
GrTextureDomain.cpp 15 GrTextureDomain::GrTextureDomain(const SkRect& domain, Mode mode, int index)
19 if (domain.contains(kFullRect) && kClamp_Mode == mode) {
27 // It is OK if the domain rect is a line or point, but it should not be inverted. We do not
29 SkASSERT(domain.fLeft <= domain.fRight);
30 SkASSERT(domain.fTop <= domain.fBottom);
31 fDomain.fLeft = SkScalarPin(domain.fLeft, kFullRect.fLeft, kFullRect.fRight);
32 fDomain.fRight = SkScalarPin(domain.fRight, kFullRect.fLeft, kFullRect.fRight);
33 fDomain.fTop = SkScalarPin(domain.fTop, kFullRect.fTop, kFullRect.fBottom)
88 const char* domain = fDomainName.c_str(); local
198 const GrTextureDomain& domain = textureDomainEffect.textureDomain(); local
208 const GrTextureDomain& domain = textureDomainEffect.textureDomain(); local
214 const GrTextureDomain& domain = processor.cast<GrTextureDomainEffect>().textureDomain(); local
295 SkRect domain; local
    [all...]
GrTextureDomain.h 20 * Limits a texture's lookup coordinates to a domain. Samples outside the domain are either clamped
21 * the edge of the domain or result in a vec4 of zeros (decal mode). The domain is clipped to
23 * domain to affect the read value unless the caller considers this when calculating the domain.
28 // Ignore the texture domain rectangle.
30 // Clamp texture coords to the domain rectangle.
32 // Treat the area outside the domain rectangle as fully transparent.
35 // read texels outside of the domain. We could perform additional texture reads and filte
55 const SkRect& domain() const { return fDomain; } function in class:GrTextureDomain
    [all...]
GrBicubicEffect.h 34 const GrTextureDomain& domain() const { return fDomain; } function in class:GrBicubicEffect
37 * Create a simple filter effect with custom bicubic coefficients and optional domain.
40 const SkRect* domain = NULL) {
41 if (NULL == domain) {
49 *domain));
72 * Create a Mitchell filter effect with a texture matrix and a domain.
75 const SkRect& domain) {
76 return SkNEW_ARGS(GrBicubicEffect, (tex, gMitchellCoefficients, matrix, domain));
93 const SkMatrix &matrix, const SkRect& domain);
  /external/selinux/policycoreutils/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...]
executable.py 224 ## <param name=\"domain\">
226 ## Domain allowed to transition.
243 ## Execute TEMPLATETYPE in the TEMPLATETYPE domain, and
244 ## allow the specified role the TEMPLATETYPE domain.
246 ## <param name="domain">
248 ## Domain allowed to transition
253 ## The role to be allowed the TEMPLATETYPE domain.
276 ## <param name="domain">
278 ## User domain for the role
300 ## Execute sandbox in the TEMPLATETYPE_t domain, an
    [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.
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/google/
SearchBaseUrlHelper.java 40 "https://www.google.com/searchdomaincheck?format=domain";
98 * @return the search domain. This is of the form "google.co.xx" or "google.com",
102 String domain = mSearchSettings.getSearchBaseDomain(); local
104 if (domain == null) {
106 Log.w(TAG, "Search base domain was null, last apply time=" +
113 // option is unchecked. In other cases, the previously set domain (or
116 // We have no choice in this case but to use the default search domain.
117 domain = getDefaultBaseDomain();
120 if (domain.startsWith(".")) {
121 if (DBG) Log.d(TAG, "Prepending www to " + domain);
138 String domain; local
    [all...]
  /libcore/luni/src/main/java/java/security/spec/
ECGenParameterSpec.java 21 * The parameter specification used to generate elliptic curve domain parameters.
24 // Standard (or predefined) name for EC domain
30 * predefined name of the to-be-generated domain parameter.
33 * the name of the elliptic curve domain parameter.
44 * curve domain parameter.
  /external/e2fsprogs/intl/
loadmsgcat.c 772 struct loaded_domain *domain,
784 domain->codeset_cntr =
787 domain->conv = (__gconv_t) -1;
790 domain->conv = (iconv_t) -1;
793 domain->conv_tab = NULL;
848 if (__gconv_open (outcharset, charset, &domain->conv,
851 domain->conv = (__gconv_t) -1;
868 domain->conv = iconv_open (outcharset, charset);
874 domain->conv = iconv_open (outcharset, charset);
889 _nl_free_domain_conv (struct loaded_domain *domain)
921 struct loaded_domain *domain; local
    [all...]
  /external/selinux/policycoreutils/sepolicy/
sepolicy-manpage.8 18 .I \-d, \-\-domain
19 Generate a Man Page for the specified domain. (Supports multiple commands)
31 Generate an additional HTML man pages for the specified domain(s).
  /packages/apps/Email/tests/res/xml/
test_providers.xml 25 <provider id="gmail" label="Gmail" domain="gmail.com">
31 <provider id="generic" label="Generic Y!" domain="mail*yahoo.com">
32 <incoming uri="pop3://pop-server.$domain" username="$email" />
35 <provider id="yahoo" label="Yahoo!" domain="yahoo.com">
39 <provider id="yahoo" label="Yahoo!" domain="yahoo.com.yahoo.com">
45 <provider id="rr-roadrunner" label="RoadRunner" domain="roadrunner.com">
49 <provider id="rr-global" label="RoadRunner" domain="leonard.rr.com">
53 <provider id="rr-global" label="RoadRunner" domain="*.rr.???">
54 <incoming uri="pop3://pop-server.$domain" username="$email" />
59 <provider id="tuffmail" label="Tuffmail" domain="tuffmail.com"
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-dynload/
_locale.so 
  /external/guava/guava/src/com/google/common/collect/
Cut.java 49 abstract Cut<C> withLowerBoundType(BoundType boundType, DiscreteDomain<C> domain);
50 abstract Cut<C> withUpperBoundType(BoundType boundType, DiscreteDomain<C> domain);
55 abstract C leastValueAbove(DiscreteDomain<C> domain);
56 abstract C greatestValueBelow(DiscreteDomain<C> domain);
62 Cut<C> canonical(DiscreteDomain<C> domain) {
132 DiscreteDomain<Comparable<?>> domain) {
136 DiscreteDomain<Comparable<?>> domain) {
146 DiscreteDomain<Comparable<?>> domain) {
147 return domain.minValue();
150 DiscreteDomain<Comparable<?>> domain) {
    [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);
  /external/parameter-framework/test/functional-tests/PfwTestCase/Domains/
tDomain_Configuration.py 74 - Create a configuration on a wrong domain name
88 # New domain creation for testing purpose
89 log.I("New domain creation for testing purpose : %s" % (self.domain_name))
93 assert err == None, "ERROR : command [createDomain] - Error while creating domain %s" % (self.domain_name)
95 log.I("Domain %s created" % (self.domain_name))
100 log.I("New configuration %s creation for domain %s" % (new_conf_name,self.domain_name))
106 log.I("Configuration %s created for domain %s" % (new_conf_name,self.domain_name))
108 # Domain configurations listing backup
109 log.I("Configurations listing for domain %s" % (self.domain_name))
112 assert err == None, "ERROR : command [listConfigurations] - Error while listing configurations for domain %s" % (self.domain_name
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/personalization/
AccountUtils.java 50 * Get all device accounts having specified domain name.
52 * @param domain domain name used for filtering
53 * @return List of account names that contain the specified domain name
56 final Context context, final String domain) {
58 final String atDomain = "@" + domain.toLowerCase(Locale.ROOT);
  /external/fio/examples/
netio.fio 4 #Use hostname=/tmp.fio.sock for local unix domain sockets
6 #Use =udp for UDP, =unix for local unix domain socket

Completed in 1108 milliseconds

1 2 3 4 5 67 8 91011>>