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

  /external/selinux/libselinux/utils/
compute_av.c 10 struct av_decision avd; local
26 ret = security_compute_av(argv[1], argv[2], tclass, 1, &avd);
33 print_access_vector(tclass, avd.allowed);
36 if (avd.decided != ~0U) {
38 print_access_vector(tclass, avd.decided);
42 if (avd.auditallow) {
44 print_access_vector(tclass, avd.auditallow);
48 if (avd.auditdeny != ~0U) {
50 print_access_vector(tclass, avd.auditdeny);
  /external/selinux/libselinux/src/
compute_av.c 17 struct av_decision *avd)
56 &avd->allowed, &avd->decided,
57 &avd->auditallow, &avd->auditdeny,
58 &avd->seqno, &avd->flags);
63 avd->flags = 0;
67 * kernel will have already set avd according to the
70 * avd to the userspace permission values
    [all...]
mapping.h 32 map_decision(security_class_t tclass, struct av_decision *avd);
avc.c 23 struct av_decision avd; member in struct:avc_entry
433 if (node && ((node->ae.avd.decided & requested) == requested)) {
459 * sequence number @ae->avd.seqno is not less than the latest
472 if (ae->avd.seqno < avc_cache.latest_notif) {
475 ae->avd.seqno, avc_cache.latest_notif);
487 memcpy(&node->ae.avd, &ae->avd, sizeof(ae->avd));
696 struct av_decision *avd, int result, void *a)
700 denied = requested & ~avd->allowed
834 struct av_decision avd; local
    [all...]
checkAccess.c 88 struct av_decision avd; local
101 &avd);
103 if ((retval == 0) && ((requested & avd.allowed) == requested)) {
mapping.c 209 map_decision(security_class_t tclass, struct av_decision *avd)
218 if (avd->allowed & mapping->perms[i])
223 avd->allowed = result;
226 if (avd->decided & mapping->perms[i])
231 avd->decided = result;
234 if (avd->auditallow & mapping->perms[i])
236 avd->auditallow = result;
239 if (avd->auditdeny & mapping->perms[i])
252 avd->auditdeny = result;
audit2why.c 67 struct sepol_av_decision avd; local
113 avc->av, &avd, &reason);
323 struct sepol_av_decision avd; local
377 rc = sepol_compute_av_reason_buffer(ssid, tsid, tclass, av, &avd, &reason, &reason_buf, 0);
390 if (av & ~avd.auditdeny) {
  /external/grpc-grpc-java/android-interop-testing/
start-emulator.sh 3 # The only argument is the AVD name.
8 echo "Please specify the AVD name"
13 emulator64-arm -avd $1 -netfast -no-skin -no-audio -no-window -port 5554
  /external/gemmlowp/scripts/
ci-before.sh 5 echo no | android create avd --force -n test -t android-22 --abi armeabi-v7a
6 emulator -avd test -no-audio -no-window &
  /external/selinux/libsepol/include/sepol/policydb/
services.h 51 struct sepol_av_decision *avd); /* OUT */
63 struct sepol_av_decision *avd,
79 struct sepol_av_decision *avd,
conditional.h 138 struct sepol_av_decision *avd);
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
AnimatedVectorDrawableParameterizedTest.java 135 AnimatedVectorDrawable avd =
137 avd.registerAnimationCallback(callback);
138 avd.start();
152 // content, to make sure the AVD is animating when set on HW layer.
167 fail("Two consecutive screenshots of AVD are identical, AVD is "
182 AnimatedVectorDrawable avd = (AnimatedVectorDrawable) imageView[0].getDrawable();
183 avd.stop();
210 // The AVD has a duration as 16ms.
248 // Check that the AVD with empty AnimatorSet has finishe
    [all...]
AnimatedVectorDrawableTest.java 125 AnimatedVectorDrawable avd = new AnimatedVectorDrawable(); local
126 ConstantState constantState = avd.getConstantState();
130 assertEquals(0, avd.getChangingConfigurations());
133 avd.setChangingConfigurations(0xff);
134 assertEquals(0xff, avd.getChangingConfigurations());
138 constantState = avd.getConstantState();
142 avd.setChangingConfigurations(0xff00);
144 assertEquals(0xffff, avd.getChangingConfigurations());
172 // AVD is different than VectorDrawable. Every instance of it is a deep copy
218 // The AVD has a duration as 100ms
    [all...]
  /external/selinux/libsepol/src/
services.c 833 struct sepol_av_decision *avd,
842 struct sepol_av_decision *avd,
878 masked = ~lo_avd.allowed & avd->allowed;
884 avd->allowed &= ~masked;
897 struct sepol_av_decision *avd,
920 avd->allowed = 0;
921 avd->decided = 0xffffffff;
922 avd->auditallow = 0;
923 avd->auditdeny = 0xffffffff;
924 avd->seqno = latest_granting
2171 struct sepol_av_decision avd; local
    [all...]
conditional.c 876 struct sepol_av_decision *avd)
880 if (!ctab || !key || !avd)
887 avd->allowed |= node->datum.data;
895 avd->auditdeny &= node->datum.data;
898 avd->auditallow |= node->datum.data;
expand.c 3229 avtab_datum_t *avd; local
3381 avtab_datum_t *avd; local
    [all...]
  /external/selinux/libselinux/include/selinux/
avc.h 246 * @avd: access vector decisions
253 * in @avd. Return %0 if all @requested permissions are granted, -%1 with
264 struct avc_entry_ref *aeref, struct av_decision *avd);
294 * @avd: access vector decisions
309 struct av_decision *avd, int result, void *auditdata);
selinux.h 188 struct av_decision *avd);
193 struct av_decision *avd);
199 struct av_decision *avd);
204 struct av_decision *avd);
  /external/selinux/mcstrans/src/
mcscolor.c 81 struct av_decision avd; local
112 rc = security_compute_av_raw(ctx, (security_context_t)raw, context_class, context_contains_perm, &avd);
116 rc = (context_contains_perm & avd.allowed) != context_contains_perm;
  /external/ipsec-tools/src/racoon/
security.c 220 struct av_decision avd; local
254 rtn = avc_has_perm(slsid, rangesid, tclass, av, NULL, &avd);
  /external/selinux/checkpolicy/
checkpolicy.c 390 struct sepol_av_decision avd; local
759 ret = sepol_compute_av(ssid, tsid, tclass, 0, &avd);
763 for (i = 1; i <= sizeof(avd.allowed) * 8; i++) {
764 if (avd.allowed & (1 << (i - 1))) {
1165 tclass, 0, &avd, &reason,
  /cts/hostsidetests/theme/
generate_images.py 26 from avd import *
195 test_avd = AVD(name, emu_path)
  /device/google/cuttlefish_common/guest/hals/audio/legacy/policy/
vsoc_audio_policy_hal.h 36 namespace avd { namespace
  /external/Microsoft-GSL/tests/
span_tests.cpp 721 span<DerivedClass> avd; variable
722 span<const DerivedClass> avcd = avd;
728 span<DerivedClass> avd; variable
729 span<BaseClass> avb = avd;
    [all...]
multi_span_tests.cpp 679 multi_span<DerivedClass> avd; variable
681 multi_span<BaseClass> avb = avd;
683 multi_span<const DerivedClass> avcd = avd;
    [all...]

Completed in 1172 milliseconds