Home
last modified time | relevance | path

Searched refs:Permission (Results 1 – 25 of 1021) sorted by relevance

12345678910>>...41

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
DBouncyCastleProviderConfiguration.java3 import java.security.Permission;
26 private static Permission BC_EC_LOCAL_PERMISSION = new ProviderConfigurationPermission(
28 private static Permission BC_EC_PERMISSION = new ProviderConfigurationPermission(
30 private static Permission BC_DH_LOCAL_PERMISSION = new ProviderConfigurationPermission(
32 private static Permission BC_DH_PERMISSION = new ProviderConfigurationPermission(
34 private static Permission BC_EC_CURVE_PERMISSION = new ProviderConfigurationPermission(
36 … private static Permission BC_ADDITIONAL_EC_CURVE_PERMISSION = new ProviderConfigurationPermission(
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/jce/provider/
DBouncyCastleProviderConfiguration.java4 import java.security.Permission;
27 private static Permission BC_EC_LOCAL_PERMISSION = new ProviderConfigurationPermission(
29 private static Permission BC_EC_PERMISSION = new ProviderConfigurationPermission(
31 private static Permission BC_DH_LOCAL_PERMISSION = new ProviderConfigurationPermission(
33 private static Permission BC_DH_PERMISSION = new ProviderConfigurationPermission(
35 private static Permission BC_EC_CURVE_PERMISSION = new ProviderConfigurationPermission(
37 … private static Permission BC_ADDITIONAL_EC_CURVE_PERMISSION = new ProviderConfigurationPermission(
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
DCryptoServicesPermission.java3 import java.security.Permission;
11 extends Permission
37 public boolean implies(Permission permission) in implies()
DCryptoServicesRegistrar.java5 import java.security.Permission;
24 …private static final Permission CanSetDefaultProperty = new CryptoServicesPermission(CryptoService…
25 …private static final Permission CanSetThreadProperty = new CryptoServicesPermission(CryptoServices…
26 …private static final Permission CanSetDefaultRandom = new CryptoServicesPermission(CryptoServicesP…
339 private static void checkPermission(final Permission permission) in checkPermission()
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/crypto/
DCryptoServicesPermission.java4 import java.security.Permission;
13 extends Permission
39 public boolean implies(Permission permission) in implies()
DCryptoServicesRegistrar.java6 import java.security.Permission;
26 …private static final Permission CanSetDefaultProperty = new CryptoServicesPermission(CryptoService…
27 …private static final Permission CanSetThreadProperty = new CryptoServicesPermission(CryptoServices…
28 …private static final Permission CanSetDefaultRandom = new CryptoServicesPermission(CryptoServicesP…
341 private static void checkPermission(final Permission permission) in checkPermission()
/external/v8/src/
Dallocation.h106 PageAllocator::Permission access);
128 PageAllocator::Permission access);
130 PageAllocator::Permission access) { in SetPermissions()
194 PageAllocator::Permission access);
Dallocation.cc145 PageAllocator::Permission access) { in AllocatePages()
188 PageAllocator::Permission access) { in SetPermissions()
234 PageAllocator::Permission access) { in SetPermissions()
/external/webrtc/webrtc/p2p/base/
Dturnserver.cc56 class TurnServerAllocation::Permission : public rtc::MessageHandler { class in cricket::TurnServerAllocation
58 Permission(rtc::Thread* thread, const rtc::IPAddress& peer);
59 ~Permission();
64 sigslot::signal1<Permission*> SignalDestroyed;
828 Permission* perm = FindPermission(addr); in AddPermission()
830 perm = new Permission(thread_, addr); in AddPermission()
839 TurnServerAllocation::Permission* TurnServerAllocation::FindPermission( in FindPermission()
896 void TurnServerAllocation::OnPermissionDestroyed(Permission* perm) { in OnPermissionDestroyed()
909 TurnServerAllocation::Permission::Permission(rtc::Thread* thread, in Permission() function in cricket::TurnServerAllocation::Permission
915 TurnServerAllocation::Permission::~Permission() { in ~Permission()
[all …]
Dturnserver.h92 class Permission; variable
93 typedef std::list<Permission*> PermissionList;
110 Permission* FindPermission(const rtc::IPAddress& addr) const;
121 void OnPermissionDestroyed(Permission* perm);
/external/apache-harmony/support/src/test/java/org/apache/harmony/testframework/serialization/
DSerializationTest.java35 import java.security.Permission;
295 Collection<Permission> refCollection = new HashSet<Permission>(
297 Collection<Permission> tstCollection = new HashSet<Permission>(
303 ArrayList<Permission> refList = Collections.list(initPC
305 ArrayList<Permission> tstList = Collections.list(dserPC
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
DLegacyManifestParserTest.java7 import android.content.pm.PackageParser.Permission;
69 private PermissionInfo getPermissionInfo(List<Permission> permissions, String name) { in getPermissionInfo()
71 for (Permission permission : permissions) { in getPermissionInfo()
/external/v8/src/base/
Dpage-allocator.h29 PageAllocator::Permission access) override; in NON_EXPORTED_BASE()
36 PageAllocator::Permission access) override; in NON_EXPORTED_BASE()
Dpage-allocator.cc42 PageAllocator::Permission access) { in AllocatePages()
58 PageAllocator::Permission access) { in SetPermissions()
/external/v8/include/
Dv8-platform.h208 enum Permission { enum
221 Permission permissions) = 0;
238 Permission permissions) = 0;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/config/
DProviderConfigurationPermission.java4 import java.security.Permission;
120 Permission permission) in implies()
/external/bcc/tools/
Dttysnoop_example.txt57 …:38 bgregg-xenial-bpf-i-xxx snmpd[2708]: Cannot statfs /sys/kernel/debug/tracing: Permission denied
58 …:32 bgregg-xenial-bpf-i-xxx snmpd[2708]: Cannot statfs /sys/kernel/debug/tracing: Permission denied
59 …:26 bgregg-xenial-bpf-i-xxx snmpd[2708]: Cannot statfs /sys/kernel/debug/tracing: Permission denied
/external/ppp/pppd/plugins/radius/
DCOPYRIGHT6 Permission to use, copy, modify, and distribute this software for any
22 Permission to use, copy, modify, and distribute this software for any
38 Permission to use, copy, modify, and distribute this software for any
53 Permission to use, copy, modify, and distribute this software and its
/external/guava/guava-tests/test/com/google/common/util/concurrent/
DJSR166TestCase.java28 import java.security.Permission;
630 public void runWithPermissions(Runnable r, Permission... permissions) { in runWithPermissions()
670 AdjustablePolicy(Permission... permissions) { in AdjustablePolicy()
671 for (Permission permission : permissions) in AdjustablePolicy()
674 void addPermission(Permission perm) { perms.add(perm); } in addPermission()
682 public boolean implies(ProtectionDomain pd, Permission p) { in implies()
DCallablesTest.java24 import java.security.Permission;
79 @Override public void checkPermission(Permission perm) { in testRenaming_noPermissions()
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/jcajce/provider/config/
DProviderConfigurationPermission.java5 import java.security.Permission;
122 Permission permission) in implies()
/external/libxkbcommon/xkbcommon/
DCOPYING29 Permission is hereby granted, free of charge, to any person obtaining a
54 Permission is hereby granted, free of charge, to any person obtaining a
82 Permission to use, copy, modify, and distribute this
111 Permission to use, copy, modify, and distribute this software and its
133 Permission is hereby granted, free of charge, to any person obtaining a copy
172 Permission to use, copy, modify, distribute, and sell this software and its
196 Permission to use, copy, modify, distribute, and sell this software
/external/libxkbcommon/
DLICENSE29 Permission is hereby granted, free of charge, to any person obtaining a
54 Permission is hereby granted, free of charge, to any person obtaining a
82 Permission to use, copy, modify, and distribute this
111 Permission to use, copy, modify, and distribute this software and its
133 Permission is hereby granted, free of charge, to any person obtaining a copy
172 Permission to use, copy, modify, distribute, and sell this software and its
196 Permission to use, copy, modify, distribute, and sell this software
DNOTICE29 Permission is hereby granted, free of charge, to any person obtaining a
54 Permission is hereby granted, free of charge, to any person obtaining a
82 Permission to use, copy, modify, and distribute this
111 Permission to use, copy, modify, and distribute this software and its
133 Permission is hereby granted, free of charge, to any person obtaining a copy
172 Permission to use, copy, modify, distribute, and sell this software and its
196 Permission to use, copy, modify, distribute, and sell this software
/external/ImageMagick/
DNOTICE27 Permission is hereby granted, free of charge, to any person obtaining a copy of
103 Permission is hereby granted, free of charge, to any person obtaining a copy of
129 Permission is hereby granted, free of charge, to any person obtaining a copy of
154 Permission is hereby granted, free of charge, to any person obtaining a copy of
192 Permission is hereby granted, free of charge, to any person obtaining a copy of
213 Permission is hereby granted, free of charge, to any person obtaining a copy of

12345678910>>...41