Home
last modified time | relevance | path

Searched full:policies (Results 1 – 25 of 6373) sorted by relevance

12345678910>>...255

/aosp_15_r20/external/selinux/libsepol/tests/
H A Dtest-neverallow.c97 …"neverallow on line 53 of policies/test-neverallow/policy.conf.std (or line 53 of policies/test-ne… in test_neverallow_basic()
98 …"neverallow on line 60 of policies/test-neverallow/policy.conf.std (or line 60 of policies/test-ne… in test_neverallow_basic()
99 …"neverallow on line 67 of policies/test-neverallow/policy.conf.std (or line 67 of policies/test-ne… in test_neverallow_basic()
100 …"neverallow on line 74 of policies/test-neverallow/policy.conf.std (or line 74 of policies/test-ne… in test_neverallow_basic()
101 …"neverallow on line 81 of policies/test-neverallow/policy.conf.std (or line 81 of policies/test-ne… in test_neverallow_basic()
102 …"neverallow on line 89 of policies/test-neverallow/policy.conf.std (or line 89 of policies/test-ne… in test_neverallow_basic()
103 …"neverallow on line 97 of policies/test-neverallow/policy.conf.std (or line 97 of policies/test-ne… in test_neverallow_basic()
104 …"neverallow on line 106 of policies/test-neverallow/policy.conf.std (or line 106 of policies/test-… in test_neverallow_basic()
105 …"neverallow on line 106 of policies/test-neverallow/policy.conf.std (or line 106 of policies/test-… in test_neverallow_basic()
106 …"neverallow on line 115 of policies/test-neverallow/policy.conf.std (or line 115 of policies/test-… in test_neverallow_basic()
[all …]
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/numeric/interval/doc/
Dinterval.htm33 <a href="rounding.htm">Rounding policies</a><br>
34 <a href="checking.htm">Checking policies</a><br>
35 <a href="policies.htm">Policies manipulation</a><br>
54 <code>interval&lt;T,Policies&gt;</code> where <code>Policies</code> is a
56 <code>interval&lt;T&gt;</code> just happens to pick the default policies
176 to be given by the two policies (rounding and checking). We do nevertheless
259 policies <code>Rounding</code> and <code>Checking</code> and pass them to
260 <code>interval&lt;T, Policies&gt;</code> through the use of <code>Policies
261 := boost::numeric::interval_lib::policies&lt;Rounding,Checking&gt;</code>.
262 Appropriate policies can be fabricated by using the various classes
[all …]
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/numeric/interval/include/boost/numeric/interval/
Darith.hpp28 template<class T, class Policies> inline
29 const interval<T, Policies>& operator+(const interval<T, Policies>& x) in operator +()
34 template<class T, class Policies> inline
35 interval<T, Policies> operator-(const interval<T, Policies>& x) in operator -()
38 return interval<T, Policies>::empty(); in operator -()
39 return interval<T, Policies>(-x.upper(), -x.lower(), true); in operator -()
42 template<class T, class Policies> inline
43 interval<T, Policies>& interval<T, Policies>::operator+=(const interval<T, Policies>& r) in operator +=()
48 typename Policies::rounding rnd; in operator +=()
54 template<class T, class Policies> inline
[all …]
Dutility.hpp31 template<class T, class Policies> inline
32 const T& lower(const interval<T, Policies>& x) in lower()
37 template<class T, class Policies> inline
38 const T& upper(const interval<T, Policies>& x) in upper()
43 template<class T, class Policies> inline
44 T checked_lower(const interval<T, Policies>& x) in checked_lower()
47 typedef typename Policies::checking checking; in checked_lower()
53 template<class T, class Policies> inline
54 T checked_upper(const interval<T, Policies>& x) in checked_upper()
57 typedef typename Policies::checking checking; in checked_upper()
[all …]
Dutility_fwd.hpp27 template<class T, class Policies>
28 const T& lower(const interval<T,Policies>& x);
30 template<class T, class Policies>
31 const T& upper(const interval<T,Policies>& x);
33 template<class T, class Policies>
34 T checked_lower(const interval<T,Policies>& x);
36 template<class T, class Policies>
37 T width(const interval<T,Policies>& x);
39 template<class T, class Policies>
40 T median(const interval<T,Policies>& x);
[all …]
Dinterval.hpp37 template<class T, class Policies>
45 typedef Policies traits_type;
55 interval(interval<T, Policies> const &r);
61 interval &operator=(interval<T, Policies> const &r);
119 typedef typename Policies::checking checking; in number_holder()
127 typedef typename Policies::checking checking;
128 typedef typename Policies::rounding rounding;
134 template<class T, class Policies> inline
135 interval<T, Policies>::interval(): in interval()
139 template<class T, class Policies> inline
[all …]
Dtransc.hpp27 template<class T, class Policies> inline
28 interval<T, Policies> exp(const interval<T, Policies>& x) in exp()
30 typedef interval<T, Policies> I; in exp()
33 typename Policies::rounding rnd; in exp()
37 template<class T, class Policies> inline
38 interval<T, Policies> log(const interval<T, Policies>& x) in log()
40 typedef interval<T, Policies> I; in log()
44 typename Policies::rounding rnd; in log()
45 typedef typename Policies::checking checking; in log()
51 template<class T, class Policies> inline
[all …]
Darith2.hpp23 #include <boost/numeric/interval/policies.hpp>
31 template<class T, class Policies> inline
32 interval<T, Policies> fmod(const interval<T, Policies>& x, in fmod()
33 const interval<T, Policies>& y) in fmod()
36 return interval<T, Policies>::empty(); in fmod()
37 typename Policies::rounding rnd; in fmod()
38 typedef typename interval_lib::unprotect<interval<T, Policies> >::type I; in fmod()
44 template<class T, class Policies> inline
45 interval<T, Policies> fmod(const interval<T, Policies>& x, const T& y) in fmod()
48 return interval<T, Policies>::empty(); in fmod()
[all …]
/aosp_15_r20/external/google-cloud-java/java-asset/proto-google-cloud-asset-v1/src/main/java/com/google/cloud/asset/v1/
H A DBatchGetEffectiveIamPoliciesResponse.java85 …* [policies][google.cloud.asset.v1.BatchGetEffectiveIamPoliciesResponse.EffectiveIamPolicy.policie…
103 …* [policies][google.cloud.asset.v1.BatchGetEffectiveIamPoliciesResponse.EffectiveIamPolicy.policie…
119 * The effective policies for the
121 * These policies include the policy set on the
125 * Note that these policies are not filtered according to the resource type
128 * These policies are hierarchically ordered by
132 * itself to its parents and ancestors, such that policies[i]'s
134 * is the child of policies[i+1]'s
136 * if policies[i+1] exists.
140 …gle.cloud.asset.v1.BatchGetEffectiveIamPoliciesResponse.EffectiveIamPolicy.PolicyInfo policies = 2;
[all …]
/aosp_15_r20/external/cronet/third_party/boringssl/src/pki/
H A Dcertificate_policies_unittest.cc20 {"CERTIFICATE POLICIES", result}, in LoadTestData()
43 std::vector<der::Input> policies; in TEST_P() local
46 der::Input(der), fail_parsing_unknown_qualifier_oids(), &policies, in TEST_P()
53 std::vector<der::Input> policies; in TEST_P() local
56 der::Input(der), fail_parsing_unknown_qualifier_oids(), &policies, in TEST_P()
63 std::vector<der::Input> policies; in TEST_P() local
66 der::Input(der), fail_parsing_unknown_qualifier_oids(), &policies, in TEST_P()
68 ASSERT_EQ(1U, policies.size()); in TEST_P()
69 EXPECT_EQ(der::Input(kAnyPolicyOid), policies[0]); in TEST_P()
75 std::vector<der::Input> policies; in TEST_P() local
[all …]
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/numeric/interval/include/boost/numeric/interval/detail/
Ddivision.hpp24 template<class T, class Policies> inline
25 interval<T, Policies> div_non_zero(const interval<T, Policies>& x, in div_non_zero()
26 const interval<T, Policies>& y) in div_non_zero()
29 typename Policies::rounding rnd; in div_non_zero()
30 typedef interval<T, Policies> I; in div_non_zero()
52 template<class T, class Policies> inline
53 interval<T, Policies> div_non_zero(const T& x, const interval<T, Policies>& y) in div_non_zero()
56 typename Policies::rounding rnd; in div_non_zero()
57 typedef interval<T, Policies> I; in div_non_zero()
66 template<class T, class Policies> inline
[all …]
/aosp_15_r20/external/python/google-api-python-client/googleapiclient/discovery_cache/documents/
Dorgpolicy.v2.json150 "policies": { object
154 "flatPath": "v2/folders/{foldersId}/policies",
156 "id": "orgpolicy.folders.policies.create",
169 "path": "v2/{+parent}/policies",
182 "flatPath": "v2/folders/{foldersId}/policies/{policiesId}",
184 "id": "orgpolicy.folders.policies.delete",
192 "pattern": "^folders/[^/]+/policies/[^/]+$",
207 "flatPath": "v2/folders/{foldersId}/policies/{policiesId}",
209 "id": "orgpolicy.folders.policies.get",
217 "pattern": "^folders/[^/]+/policies/[^/]+$",
[all …]
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/numeric/interval/include/boost/numeric/interval/compare/
Dexplicit.hpp30 template<class T, class Policies> inline
31 bool cerlt(const interval<T, Policies>& x, const T& y) in cerlt()
36 template<class T, class Policies> inline
37 bool cerlt(const T& x, const interval<T, Policies>& y) in cerlt()
48 template<class T, class Policies> inline
49 bool cerle(const interval<T, Policies>& x, const T& y) in cerle()
54 template<class T, class Policies> inline
55 bool cerle(const T& x, const interval<T, Policies>& y) in cerle()
66 template<class T, class Policies> inline
67 bool cergt(const interval<T, Policies>& x, const T& y) in cergt()
[all …]
/aosp_15_r20/device/google/cuttlefish/host/commands/process_sandboxer/
DAndroid.bp32 "policies.cpp",
33 "policies/adb_connector.cpp",
34 "policies/assemble_cvd.cpp",
35 "policies/avbtool.cpp",
36 "policies/baseline.cpp",
37 "policies/casimir.cpp",
38 "policies/casimir_control_server.cpp",
39 "policies/control_env_proxy_server.cpp",
40 "policies/cvd_internal_start.cpp",
41 "policies/echo_server.cpp",
[all …]
/aosp_15_r20/external/google-cloud-java/java-orgpolicy/proto-google-cloud-orgpolicy-v2/src/main/java/com/google/cloud/orgpolicy/v2/
H A DListPoliciesResponse.java27 * if no `Policies` are set on the resource.
81 * All `Policies` that exist on the resource. It will be empty if no
82 * `Policies` are set.
85 * <code>repeated .google.cloud.orgpolicy.v2.Policy policies = 1;</code>
95 * All `Policies` that exist on the resource. It will be empty if no
96 * `Policies` are set.
99 * <code>repeated .google.cloud.orgpolicy.v2.Policy policies = 1;</code>
110 * All `Policies` that exist on the resource. It will be empty if no
111 * `Policies` are set.
114 * <code>repeated .google.cloud.orgpolicy.v2.Policy policies = 1;</code>
[all …]
/aosp_15_r20/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
DQosPolicyRequestHandlerTest.java127 ArrayList<QosPolicyRequest> policies = new ArrayList(); in testSingleQosPolicyRequestEvent() local
128 policies.add(createQosPolicyRequest(1, SupplicantStaIfaceHal.QOS_POLICY_REQUEST_ADD, 0, in testSingleQosPolicyRequestEvent()
130 policies.add(createQosPolicyRequest(2, SupplicantStaIfaceHal.QOS_POLICY_REQUEST_ADD, 0, in testSingleQosPolicyRequestEvent()
132 policies.add(createQosPolicyRequest(3, SupplicantStaIfaceHal.QOS_POLICY_REQUEST_REMOVE, 0, in testSingleQosPolicyRequestEvent()
134 policies.add(createQosPolicyRequest(4, SupplicantStaIfaceHal.QOS_POLICY_REQUEST_ADD, 0, in testSingleQosPolicyRequestEvent()
136 QosPolicyRequest removePolicyRequest = policies.get(2); in testSingleQosPolicyRequestEvent()
137 QosPolicyRequest invalidPolicyRequest = policies.get(3); in testSingleQosPolicyRequestEvent()
139 mQosPolicyRequestHandler.queueQosPolicyRequest(QOS_REQUEST_DIALOG_TOKEN, policies); in testSingleQosPolicyRequestEvent()
148 assertEquals(policies.size(), mQosStatusListCaptor.getValue().size()); in testSingleQosPolicyRequestEvent()
167 ArrayList<QosPolicyRequest> policies = new ArrayList(); in testMultipleQosPolicyRequestEvents() local
[all …]
/aosp_15_r20/external/python/google-api-python-client/docs/dyn/
Dorgpolicy_v2.projects.policies.html75 …cy_v2.projects.html">projects</a> . <a href="orgpolicy_v2.projects.policies.html">policies</a></h1>
91 …ts the effective `Policy` on a resource. This is the result of merging `Policies` in the resource …
94 <p class="firstline">Retrieves all of the `Policies` that exist on a particular resource.</p>
117policies/{constraint_name}` * `folders/{folder_id}/policies/{constraint_name}` * `organizations/{o…
120 …icy becomes the new root for evaluation. This field can be set only for Policies which configure l…
121policies set above this resource and restores the `constraint_default` enforcement behavior of the…
122 …&quot;rules&quot;: [ # Up to 10 PolicyRules are allowed. In Policies for boolean constraints, the …
124 …o true means that all values are allowed. This field can be set only in Policies for list constrai…
131 …to true means that all values are denied. This field can be set only in Policies for list constrai…
132 …e`, then any configuration is acceptable. This field can be set only in Policies for boolean const…
[all …]
Dorgpolicy_v2.folders.policies.html75 …olicy_v2.folders.html">folders</a> . <a href="orgpolicy_v2.folders.policies.html">policies</a></h1>
91 …ts the effective `Policy` on a resource. This is the result of merging `Policies` in the resource …
94 <p class="firstline">Retrieves all of the `Policies` that exist on a particular resource.</p>
117policies/{constraint_name}` * `folders/{folder_id}/policies/{constraint_name}` * `organizations/{o…
120 …icy becomes the new root for evaluation. This field can be set only for Policies which configure l…
121policies set above this resource and restores the `constraint_default` enforcement behavior of the…
122 …&quot;rules&quot;: [ # Up to 10 PolicyRules are allowed. In Policies for boolean constraints, the …
124 …o true means that all values are allowed. This field can be set only in Policies for list constrai…
131 …to true means that all values are denied. This field can be set only in Policies for list constrai…
132 …e`, then any configuration is acceptable. This field can be set only in Policies for boolean const…
[all …]
Dorgpolicy_v2.organizations.policies.html75 …ions.html">organizations</a> . <a href="orgpolicy_v2.organizations.policies.html">policies</a></h1>
91 …ts the effective `Policy` on a resource. This is the result of merging `Policies` in the resource …
94 <p class="firstline">Retrieves all of the `Policies` that exist on a particular resource.</p>
117policies/{constraint_name}` * `folders/{folder_id}/policies/{constraint_name}` * `organizations/{o…
120 …icy becomes the new root for evaluation. This field can be set only for Policies which configure l…
121policies set above this resource and restores the `constraint_default` enforcement behavior of the…
122 …&quot;rules&quot;: [ # Up to 10 PolicyRules are allowed. In Policies for boolean constraints, the …
124 …o true means that all values are allowed. This field can be set only in Policies for list constrai…
131 …to true means that all values are denied. This field can be set only in Policies for list constrai…
132 …e`, then any configuration is acceptable. This field can be set only in Policies for boolean const…
[all …]
/aosp_15_r20/external/openscreen/cast/common/certificate/
H A Dcast_cert_validator_unittest.cc425 // Tests verifying a certificate chain with the policies:
427 // Root: policies={}
428 // Intermediate: policies={anyPolicy}
429 // Leaf: policies={anyPolicy}
437 // Test verifying a certificate chain with the policies:
439 // Root: policies={}
440 // Intermediate: policies={anyPolicy}
441 // Leaf: policies={audioOnly}
449 // Test verifying a certificate chain with the policies:
451 // Root: policies={}
[all …]
/aosp_15_r20/external/google-cloud-java/java-policy-troubleshooter/proto-google-cloud-policy-troubleshooter-v1/src/main/java/com/google/cloud/policytroubleshooter/v1/
H A DTroubleshootIamPolicyResponse.java78 * resource, based on evaluating all of the applicable IAM policies.
94 * resource, based on evaluating all of the applicable IAM policies.
119 * List of IAM policies that were evaluated to check the member's permissions,
122 * The list of policies can include the policy for the resource itself. It can
123 * also include policies that are inherited from higher levels of the resource
141 * List of IAM policies that were evaluated to check the member's permissions,
144 * The list of policies can include the policy for the resource itself. It can
145 * also include policies that are inherited from higher levels of the resource
164 * List of IAM policies that were evaluated to check the member's permissions,
167 * The list of policies can include the policy for the resource itself. It can
[all …]
/aosp_15_r20/external/aws-sdk-java-v2/services/dlm/src/main/resources/codegen-resources/
H A Dservice-2.json20 "requestUri":"/policies"
29 …com/AWSEC2/latest/UserGuide/policy-differences.html\"> Default policies vs custom policies</a>.</p…
35 "requestUri":"/policies/{policyId}"
44 …on.com/AWSEC2/latest/UserGuide/view-modify-delete.html#delete\">Delete lifecycle policies</a>.</p>"
50 "requestUri":"/policies"
60 …:"<p>Gets summary information about all or the specified data lifecycle policies.</p> <p>To get co…
66 "requestUri":"/policies/{policyId}"
126 "requestUri":"/policies/{policyId}"
136 …on.com/AWSEC2/latest/UserGuide/view-modify-delete.html#modify\">Modify lifecycle policies</a>.</p>"
156 …"documentation":"<p> <b>[Event-based policies only]</b> Specifies an action for an event-based pol…
[all …]
/aosp_15_r20/external/google-cloud-java/java-orgpolicy/proto-google-cloud-orgpolicy-v2/src/main/proto/google/cloud/orgpolicy/v2/
H A Dorgpolicy.proto37 // An interface for managing organization policies.
49 // `Policies` are inherited down through the resource hierarchy. A `policy`
54 // controlled by an organization's policy administrator. `Policies` are a
73 // Retrieves all of the `Policies` that exist on a particular resource.
76 get: "/v2/{parent=projects/*}/policies"
77 additional_bindings { get: "/v2/{parent=folders/*}/policies" }
78 additional_bindings { get: "/v2/{parent=organizations/*}/policies" }
90 get: "/v2/{name=projects/*/policies/*}"
91 additional_bindings { get: "/v2/{name=folders/*/policies/*}" }
92 additional_bindings { get: "/v2/{name=organizations/*/policies/*}" }
[all …]
/aosp_15_r20/external/grpc-grpc/test/core/security/
H A Dgrpc_authorization_engine_test.cc68 std::map<std::string, Rbac::Policy> policies; in TEST_F() local
69 policies["policy1"] = std::move(policy1); in TEST_F()
70 policies["policy2"] = std::move(policy2); in TEST_F()
71 Rbac rbac("authz", Rbac::Action::kAllow, std::move(policies)); in TEST_F()
84 std::map<std::string, Rbac::Policy> policies; in TEST_F() local
85 policies["policy1"] = std::move(policy1); in TEST_F()
86 Rbac rbac("authz", Rbac::Action::kAllow, std::move(policies)); in TEST_F()
109 std::map<std::string, Rbac::Policy> policies; in TEST_F() local
110 policies["policy1"] = std::move(policy1); in TEST_F()
111 policies["policy2"] = std::move(policy2); in TEST_F()
[all …]
/aosp_15_r20/external/google-cloud-java/java-resourcemanager/google-cloud-resourcemanager/src/main/java/com/google/cloud/resourcemanager/
H A DOrgPolicyInfo.java56 private Policies policies; field in OrgPolicyInfo
121 static class Policies { class in OrgPolicyInfo
129 Policies( in Policies() method in OrgPolicyInfo.Policies
186 Policies policies = (Policies) o; in equals() local
187 return Objects.equals(allValues, policies.allValues) in equals()
188 && Objects.equals(allowedValues, policies.allowedValues) in equals()
189 && Objects.equals(deniedValues, policies.deniedValues) in equals()
190 && Objects.equals(inheritFromParent, policies.inheritFromParent) in equals()
191 && Objects.equals(suggestedValue, policies.suggestedValue); in equals()
209 static Policies fromProtobuf(ListPolicy listPolicy) { in fromProtobuf()
[all …]

12345678910>>...255