Searched defs:policies (Results 1 - 25 of 26) sorted by relevance

12

/external/strace/xlat/
H A Dpolicies.h1 /* Generated by ./xlat/gen.sh from ./xlat/policies.in; do not edit. */
5 # error static const struct xlat policies in mpers mode
10 const struct xlat policies[] = { variable in typeref:struct:xlat
/external/owasp/sanitizer/src/main/org/owasp/html/
H A DElementPolicy.java40 * Element policies are applied <strong>after</strong>
41 * {@link AttributePolicy attribute policies} so
59 /** Utilities for working with element policies. */
64 * Given zero or more element policies, returns an element policy equivalent
67 public static final ElementPolicy join(ElementPolicy... policies) { argument
94 for (ElementPolicy policy : policies) {
H A DPolicyFactory.java46 * policies.
56 private final ImmutableMap<String, ElementAndAttributePolicies> policies; field in class:PolicyFactory
61 ImmutableMap<String, ElementAndAttributePolicies> policies,
64 this.policies = policies;
72 out, policies, textContainers);
130 * policies where they overlap on a particular granted attribute or element
136 // Merge this and f into a map of element names to attribute policies.
138 : policies.entrySet()) {
141 ElementAndAttributePolicies q = f.policies
60 PolicyFactory( ImmutableMap<String, ElementAndAttributePolicies> policies, ImmutableSet<String> textContainers, ImmutableMap<String, AttributePolicy> globalAttrPolicies) argument
[all...]
H A DAttributePolicy.java61 /** Utilities for working with attribute policies. */
65 * An attribute policy equivalent to applying all the given policies in
69 public static final AttributePolicy join(AttributePolicy... policies) { argument
71 for (AttributePolicy p : policies) {
73 uniq.addAll(((JoinedAttributePolicy) p).policies);
112 final ImmutableList<AttributePolicy> policies; field in class:JoinedAttributePolicy
114 JoinedAttributePolicy(Collection<? extends AttributePolicy> policies) { argument
115 this.policies = ImmutableList.copyOf(policies);
120 for (AttributePolicy p : policies) {
[all...]
H A DElementAndAttributePolicyBasedSanitizerPolicy.java42 * A sanitizer policy that applies element and attribute policies to tags.
104 ElementAndAttributePolicies policies = elAndAttrPolicies.get(elementName);
105 String adjustedElementName = applyPolicies(elementName, attrs, policies);
107 && !(attrs.isEmpty() && policies.skipIfEmpty)) {
108 writeOpenTag(policies, adjustedElementName, attrs);
116 ElementAndAttributePolicies policies) {
118 if (policies != null) {
123 = policies.attrPolicies.get(name);
140 adjustedElementName = policies.elPolicy.apply(elementName, attrs);
174 ElementAndAttributePolicies policies, Strin
114 applyPolicies( String elementName, List<String> attrs, ElementAndAttributePolicies policies) argument
173 writeOpenTag( ElementAndAttributePolicies policies, String adjustedElementName, List<String> attrs) argument
[all...]
/external/selinux/libsepol/tests/
H A DMakefile11 # In order to load source policies we need to link in the checkpolicy/checkmodule parser and util code.
12 # This is less than ideal, but it makes the tests easier to maintain by allowing source policies
24 m4support := $(wildcard policies/support/*.spt)
25 testsuites := $(wildcard policies/test-*)
29 policies := $(stdpol) $(mlspol) macro
31 all: $(EXE) $(policies)
32 policies: $(policies)
45 rm -f $(policies)
46 rm -f policies/tes
[all...]
H A Dtest-linker.c48 const char *policies[NUM_POLICIES] = { variable
63 if (test_load_policy(&linkedbase, POLICY_BASE, mls, "test-linker", policies[BASEMOD]))
66 if (test_load_policy(&basenomods, POLICY_BASE, mls, "test-linker", policies[BASEMOD]))
77 if (test_load_policy(modules[i], POLICY_MOD, mls, "test-linker", policies[i]))
/external/boringssl/src/crypto/x509v3/
H A Dpcy_cache.c75 CERTIFICATEPOLICIES *policies, int crit)
82 if (sk_POLICYINFO_num(policies) == 0)
87 for (i = 0; i < sk_POLICYINFO_num(policies); i++)
89 policy = sk_POLICYINFO_value(policies, i);
120 sk_POLICYINFO_pop_free(policies, POLICYINFO_free);
150 * even if we don't have any policies.
176 * there is no point continuing because the valid policies will be
74 policy_cache_create(X509 *x, CERTIFICATEPOLICIES *policies, int crit) argument
/external/ImageMagick/MagickCore/
H A Dpolicy.c332 % GetPolicyInfoList() returns any policies that match the specified pattern.
343 % o number_policies: returns the number of policies in the list.
352 **policies;
370 policies=(const PolicyInfo **) AcquireQuantumMemory((size_t)
371 GetNumberOfElementsInLinkedList(policy_cache)+1UL,sizeof(*policies));
372 if (policies == (const PolicyInfo **) NULL)
384 policies[i++]=p;
388 policies[i]=(PolicyInfo *) NULL;
390 return(policies);
405 % GetPolicyList() returns any policies tha
344 **policies; local
416 **policies; local
[all...]
/external/boringssl/src/crypto/x509/
H A Dx509_vpm.c135 if (param->policies)
137 sk_ASN1_OBJECT_pop_free(param->policies, ASN1_OBJECT_free);
138 param->policies = NULL;
289 if (test_x509_verify_param_copy(policies, NULL))
291 if (!X509_VERIFY_PARAM_set1_policies(dest, src->policies))
421 if (!param->policies)
423 param->policies = sk_ASN1_OBJECT_new_null();
424 if (!param->policies)
427 if (!sk_ASN1_OBJECT_push(param->policies, policy))
433 STACK_OF(ASN1_OBJECT) *policies)
432 X509_VERIFY_PARAM_set1_policies(X509_VERIFY_PARAM *param, STACK_OF(ASN1_OBJECT) *policies) argument
[all...]
/external/apache-harmony/security/src/test/impl/java.injected/java/security/cert/
H A DX509CertSelectorTest.java105 protected String[] policies = null; field in class:X509CertSelectorTest.TestCert
124 public TestCert(String[] policies) { argument
125 setPolicies(policies);
165 public void setPolicies(String[] policies) { argument
166 this.policies = policies;
415 if ("2.5.29.32".equals(oid) && (policies != null)
416 && (policies.length > 0)) {
420 for (int i = 0; i < policies.length; i++) {
422 new PolicyInformation(policies[
[all...]
/external/owasp/sanitizer/distrib/lib/
H A Dowasp-java-html-sanitizer.jar ... int i$ org.owasp.html.AttributePolicy[] policies java.util.Set uniq } org/owasp/html/AttributePolicy ...
/external/boringssl/include/openssl/
H A Dx509_vfy.h172 STACK_OF(ASN1_OBJECT) *policies; /* Permissible policies */ member in struct:X509_VERIFY_PARAM_st
554 STACK_OF(ASN1_OBJECT) *policies);
/external/boringssl/src/include/openssl/
H A Dx509_vfy.h172 STACK_OF(ASN1_OBJECT) *policies; /* Permissible policies */ member in struct:X509_VERIFY_PARAM_st
554 STACK_OF(ASN1_OBJECT) *policies);
/external/google-tv-pairing-protocol/java/jar/
H A Dbcprov-jdk15-143.jarMETA-INF/MANIFEST.MF META-INF/BCKEY.SF META-INF/BCKEY.DSA META ...
/external/icu/tools/srcgen/currysrc/libs/
H A Dorg.eclipse.osgi_3.10.100.v20150529-1857.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSE_.SF META-INF/ECLIPSE_.RSA META ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.osgi_3.6.1.R36x_v20100806.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.osgi_3.6.2.R36x_v20101103.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/robolectric/v3/runtime/
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
/external/robolectric/v1/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...

Completed in 1228 milliseconds

12