Home
last modified time | relevance | path

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

12345678910>>...47

/external/cpuinfo/test/dmesg/
Dxiaomi-mi-5c.log1198 [ 10.218945] e2fsck: /system/bin/e2fsck: Permission denied while trying to open /dev/block/platfo…
1252 [ 10.494891] init: SELinux: Could not set context for /cust: Permission denied
1254 [ 10.497577] init: SELinux: Could not set context for /cust/app: Permission denied
1256 [ 10.498990] init: SELinux: Could not set context for /cust/app/customized: Permission denied
1257 …nit: SELinux: Could not set context for /cust/app/customized/ota-miui-BBS_MSITE: Permission denied
1258 … set context for /cust/app/customized/ota-miui-BBS_MSITE/ota-miui-BBS_MSITE.apk: Permission denied
1259 …: SELinux: Could not set context for /cust/app/customized/ota-miui-GlobalMiShop: Permission denied
1264 …ontext for /cust/app/customized/ota-miui-GlobalMiShop/ota-miui-GlobalMiShop.apk: Permission denied
1265 …ld not set context for /cust/app/customized/ota-miui-MiGalleryLockscreen_global: Permission denied
1268 …zed/ota-miui-MiGalleryLockscreen_global/ota-miui-MiGalleryLockscreen_global.apk: Permission denied
[all …]
/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/base/
Dbounded-page-allocator.h59 Permission access) override;
64 bool AllocatePagesAt(Address address, size_t size, Permission access);
70 bool SetPermissions(void* address, size_t size, Permission access) override;
Dbounded-page-allocator.cc30 PageAllocator::Permission access) { in AllocatePages()
49 PageAllocator::Permission access) { in AllocatePagesAt()
78 PageAllocator::Permission::kNoAccess)); in ReserveForSharedMemoryMapping()
127 PageAllocator::Permission access) { in SetPermissions()
Dpage-allocator.h34 PageAllocator::Permission access) override; in NON_EXPORTED_BASE()
46 PageAllocator::Permission access) override; in NON_EXPORTED_BASE()
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/test/
DTestSecurityManager.kt7 import java.security.Permission
16 override fun checkPermission(perm: Permission?) { in checkPermission()
/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/heap/cppgc/
Dpage-memory.cc19 PageAllocator::Permission::kReadWrite)); in Unprotect()
30 PageAllocator::Permission::kReadWrite)); in Unprotect()
40 PageAllocator::Permission::kNoAccess)); in Protect()
47 PageAllocator::Permission::kNoAccess)); in Protect()
55 PageAllocator::Permission::kNoAccess); in ReserveMemoryRegion()
/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/v8/src/utils/
Dallocation.h119 PageAllocator::Permission access);
144 PageAllocator::Permission access);
146 size_t size, PageAllocator::Permission access) { in SetPermissions()
230 PageAllocator::Permission access);
Dallocation.cc166 size_t alignment, PageAllocator::Permission access) { in AllocatePages()
199 size_t size, PageAllocator::Permission access) { in SetPermissions()
222 PageAllocator::Permission permissions = in VirtualMemory()
245 PageAllocator::Permission access) { in SetPermissions()
/external/v8/src/sanitizer/
Dlsan-page-allocator.h35 PageAllocator::Permission access) override;
47 PageAllocator::Permission access) override { in SetPermissions()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/config/
DProviderConfigurationPermission.java4 import java.security.Permission;
120 Permission permission) in implies()
/external/igt-gpu-tools/
DCOPYING4 Permission is hereby granted, free of charge, to any person obtaining a
27 Permission is hereby granted, free of charge, to any person obtaining a
49 Permission is hereby granted, free of charge, to any person obtaining a
70 Permission is hereby granted, free of charge, to any person obtaining a
91 Permission is hereby granted, free of charge, to any person obtaining a
118 Permission to use, copy, modify, and distribute this software for any
134 Permission is hereby granted, free of charge, to any person obtaining a
DNOTICE4 Permission is hereby granted, free of charge, to any person obtaining a
27 Permission is hereby granted, free of charge, to any person obtaining a
49 Permission is hereby granted, free of charge, to any person obtaining a
70 Permission is hereby granted, free of charge, to any person obtaining a
91 Permission is hereby granted, free of charge, to any person obtaining a
118 Permission to use, copy, modify, and distribute this software for any
134 Permission is hereby granted, free of charge, to any person obtaining a
DLICENSE4 Permission is hereby granted, free of charge, to any person obtaining a
27 Permission is hereby granted, free of charge, to any person obtaining a
49 Permission is hereby granted, free of charge, to any person obtaining a
70 Permission is hereby granted, free of charge, to any person obtaining a
91 Permission is hereby granted, free of charge, to any person obtaining a
118 Permission to use, copy, modify, and distribute this software for any
134 Permission is hereby granted, free of charge, to any person obtaining a
/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/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

12345678910>>...47