/dalvik/tests/060-reflection-security/ |
expected.txt | 10 java.lang.SecurityException: Denied! 17 java.lang.SecurityException: Denied! 23 java.lang.SecurityException: Denied! 30 java.lang.SecurityException: Denied! 36 java.lang.SecurityException: Denied! 43 java.lang.SecurityException: Denied! 49 java.lang.SecurityException: Denied! 56 java.lang.SecurityException: Denied!
|
/external/webkit/LayoutTests/fast/dom/Geolocation/ |
permission-denied-expected.txt | 1 Tests Geolocation when permission is denied, using the mock service. 8 PASS error.message is "User denied Geolocation"
|
permission-denied-stops-watches-expected.txt | 1 Tests that when Geolocation permission is denied, watches are stopped, as well as one-shots. 8 PASS error.message is "User denied Geolocation"
|
permission-denied-already-clear-watch-expected.txt | 1 Tests that when Geolocation permission has been denied prior to a call to watchPosition, and the watch is cleared in the error callback, there is no crash. This a regression test for https://bugs.webkit.org/show_bug.cgi?id=32111. 8 PASS error.message is "User denied Geolocation" 11 PASS error.message is "User denied Geolocation"
|
permission-denied-already-error-expected.txt | 1 Tests that when Geolocation permission has been denied prior to a call to a Geolocation method, the error callback is invoked with code PERMISSION_DENIED, when the Geolocation service encounters an error. 8 PASS error.message is "User denied Geolocation" 11 PASS error.message is "User denied Geolocation"
|
permission-denied-already-success-expected.txt | 1 Tests that when Geolocation permission has been denied prior to a call to a Geolocation method, the error callback is invoked with code PERMISSION_DENIED, when the Geolocation service has a good position. 8 PASS error.message is "User denied Geolocation" 11 PASS error.message is "User denied Geolocation"
|
permission-denied.html | 10 <script src="resources/permission-denied.js"></script>
|
permission-denied-already-clear-watch.html | 10 <script src="resources/permission-denied-already-clear-watch.js"></script>
|
permission-denied-already-error.html | 10 <script src="resources/permission-denied-already-error.js"></script>
|
permission-denied-already-success.html | 10 <script src="resources/permission-denied-already-success.js"></script>
|
permission-denied-stops-watches.html | 10 <script src="resources/permission-denied-stops-watches.js"></script>
|
/dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/ |
MutableSecurityManager.java | 30 private PermissionCollection denied; field in class:MutableSecurityManager 57 if (denied == null) { 58 denied = p.newPermissionCollection(); 60 denied.add(p); 67 if (denied != null && denied.implies(permission)){ 69 throw new SecurityException("Denied " + permission); 84 if (denied != null && denied.implies(permission)){ 86 throw new SecurityException("Denied " + permission) [all...] |
/external/webkit/LayoutTests/fast/dom/Geolocation/resources/ |
permission-denied.js | 1 description("Tests Geolocation when permission is denied, using the mock service."); 13 shouldBe('error.message', '"User denied Geolocation"');
|
permission-denied-already-clear-watch.js | 1 description("Tests that when Geolocation permission has been denied prior to a call to watchPosition, and the watch is cleared in the error callback, there is no crash. This a regression test for https://bugs.webkit.org/show_bug.cgi?id=32111."); 14 shouldBe('error.message', '"User denied Geolocation"'); 21 // Make another request, with permission already denied. 28 shouldBe('error.message', '"User denied Geolocation"');
|
permission-denied-already-error.js | 1 description("Tests that when Geolocation permission has been denied prior to a call to a Geolocation method, the error callback is invoked with code PERMISSION_DENIED, when the Geolocation service encounters an error."); 14 shouldBe('error.message', '"User denied Geolocation"'); 21 // Make another request, with permission already denied. 30 shouldBe('error.message', '"User denied Geolocation"');
|
permission-denied-already-success.js | 1 description("Tests that when Geolocation permission has been denied prior to a call to a Geolocation method, the error callback is invoked with code PERMISSION_DENIED, when the Geolocation service has a good position."); 14 shouldBe('error.message', '"User denied Geolocation"'); 21 // Make another request, with permission already denied. 28 shouldBe('error.message', '"User denied Geolocation"');
|
permission-denied-stops-watches.js | 1 description("Tests that when Geolocation permission is denied, watches are stopped, as well as one-shots."); 22 shouldBe('error.message', '"User denied Geolocation"');
|
/external/e2fsprogs/lib/ss/ |
ss_err.et | 25 "Permission denied"
|
/external/bluetooth/bluez/src/ |
bluetooth.conf | 8 <!-- ../system.conf have denied everything, so we just punch some holes -->
|
/dalvik/libcore/security/src/test/java/org/apache/harmony/security/tests/java/security/ |
SignerTest.java | 55 public Permissions denied = new Permissions(); field in class:SignerTest.MySecurityManager 57 if (denied!=null && denied.implies(permission)) throw new SecurityException(); 180 * verify Signer.getPrivateKey() throws SecurityException if permission is denied 190 sm.denied.add(new SecurityPermission("getSignerPrivateKey")); 226 // test: SecurityException if permission is denied 229 sm.denied.add(new SecurityPermission("setSignerKeyPair"));
|
IdentityScopeTest.java | 48 public Permissions denied = new Permissions(); field in class:IdentityScopeTest.MySecurityManager 50 if (denied!=null && denied.implies(permission)) throw new SecurityException(); 137 * if permission is denied than SecurityException is thrown 170 // permission is denied 171 sm.denied.add(new SecurityPermission("setSystemScope"));
|
/dalvik/libcore/security/src/test/java/tests/java/security/ |
IdentityTest.java | 53 public Permissions denied = new Permissions(); field in class:IdentityTest.MySecurityManager 55 if (denied!=null && denied.implies(permission)) throw new SecurityException(); 101 * verify Identity.toString() throws Exception is permission is denied 111 sm.denied.add(new SecurityPermission("printIdentity")); 230 * verify addCertificate(Certificate certificate) throws SecurityException is permission is denied 240 sm.denied.add(new SecurityPermission("addIdentityCertificate")); 295 * verify removeCertificate(Certificate certificate) throws SecurityException if permission is denied 305 sm.denied.add(new SecurityPermission("removeIdentityCertificate")); 416 * verify Identity.setPublicKey() throws SecurityException if permission is denied [all...] |
/dalvik/libcore/security/src/main/java/java/security/acl/ |
Permission.java | 23 * It can be granted or denied to a {@link java.security.Principal Principal}
|
/dalvik/tests/060-reflection-security/src/ |
Enforcer.java | 30 throw new SecurityException("Denied!");
|
/external/e2fsprogs/debian/ |
uuid-dev.README.Debian | 16 purity shouldn't be denied to Ubuntu users.
|