OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ExemptionMechanismException
(Results
1 - 23
of
23
) sorted by null
/libcore/luni/src/main/java/javax/crypto/
ExemptionMechanismException.java
23
* This is the base class for {@code
ExemptionMechanismException
}.
25
public class
ExemptionMechanismException
extends GeneralSecurityException {
33
* Creates a new {@code
ExemptionMechanismException
} with the specified
39
public
ExemptionMechanismException
(String msg) {
44
* Creates a new {@code
ExemptionMechanismException
} with no message.
46
public
ExemptionMechanismException
() {
ExemptionMechanismSpi.java
42
* @throws
ExemptionMechanismException
46
throws
ExemptionMechanismException
;
59
* @throws
ExemptionMechanismException
64
ExemptionMechanismException
;
85
* @throws
ExemptionMechanismException
89
ExemptionMechanismException
;
104
* @throws
ExemptionMechanismException
109
ExemptionMechanismException
;
124
* @throws
ExemptionMechanismException
129
ExemptionMechanismException
;
[
all
...]
ExemptionMechanism.java
190
* @throws
ExemptionMechanismException
195
throws
ExemptionMechanismException
{
232
* @throws
ExemptionMechanismException
236
ExemptionMechanismException
{
256
* @throws
ExemptionMechanismException
261
ExemptionMechanismException
{
281
* @throws
ExemptionMechanismException
286
ExemptionMechanismException
{
300
* @throws
ExemptionMechanismException
304
ExemptionMechanismException
{
[
all
...]
/external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/serialization/
ExemptionMechanismExceptionTest.java
24
import javax.crypto.
ExemptionMechanismException
;
30
* Test for
ExemptionMechanismException
serialization
40
return new Object[] { new
ExemptionMechanismException
(),
41
new
ExemptionMechanismException
(null), new
ExemptionMechanismException
(msgs[1]) };
/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/serialization/
ExemptionMechanismExceptionTest.java
25
import javax.crypto.
ExemptionMechanismException
;
31
* Test for
ExemptionMechanismException
serialization
42
return new Object[] { new
ExemptionMechanismException
(),
43
new
ExemptionMechanismException
(null), new
ExemptionMechanismException
(msgs[1]) };
/external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/
ExemptionMechanismExceptionTest.java
24
import javax.crypto.
ExemptionMechanismException
;
30
* Tests for <code>
ExemptionMechanismException
</code> class constructors and
55
return "
ExemptionMechanismException
: ".concat(tE.toString()).concat(
60
* Test for <code>
ExemptionMechanismException
()</code> constructor
61
* Assertion: constructs
ExemptionMechanismException
with no detail message
64
ExemptionMechanismException
tE = new
ExemptionMechanismException
();
75
* Test for <code>
ExemptionMechanismException
(String)</code> constructor
76
* Assertion: constructs
ExemptionMechanismException
with detail message
80
ExemptionMechanismException
tE
[
all
...]
/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
ExemptionMechanismExceptionTest.java
25
import javax.crypto.
ExemptionMechanismException
;
30
* Tests for <code>
ExemptionMechanismException
</code> class constructors and
44
return "
ExemptionMechanismException
: ".concat(tE.toString()).concat(
49
* Test for <code>
ExemptionMechanismException
()</code> constructor
50
* Assertion: constructs
ExemptionMechanismException
with no detail message
53
ExemptionMechanismException
tE = new
ExemptionMechanismException
();
64
* Test for <code>
ExemptionMechanismException
(String)</code> constructor
65
* Assertion: constructs
ExemptionMechanismException
with detail message
69
ExemptionMechanismException
tE
[
all
...]
ExemptionMechanismSpiTest.java
34
import javax.crypto.
ExemptionMechanismException
;
51
protected byte[] engineGenExemptionBlob() throws
ExemptionMechanismException
{
56
protected int engineGenExemptionBlob(byte[] output, int outputOffset) throws ShortBufferException,
ExemptionMechanismException
{
66
protected void engineInit(Key key) throws InvalidKeyException,
ExemptionMechanismException
{
72
protected void engineInit(Key key, AlgorithmParameterSpec params) throws InvalidKeyException, InvalidAlgorithmParameterException,
ExemptionMechanismException
{
78
protected void engineInit(Key key, AlgorithmParameters params) throws InvalidKeyException, InvalidAlgorithmParameterException,
ExemptionMechanismException
{
119
fail("
ExemptionMechanismException
must be thrown");
120
} catch (
ExemptionMechanismException
e) {
124
fail("
ExemptionMechanismException
must be thrown");
125
} catch (
ExemptionMechanismException
e)
[
all
...]
ExemptionMechanismTest.java
34
import javax.crypto.
ExemptionMechanismException
;
215
throws
ExemptionMechanismException
{
216
throw new
ExemptionMechanismException
();
221
throws ShortBufferException,
ExemptionMechanismException
{
227
throw new
ExemptionMechanismException
();
234
ExemptionMechanismException
{
265
fail("
ExemptionMechanismException
expected");
266
} catch (
ExemptionMechanismException
e) {
272
ExemptionMechanismException
, ShortBufferException {
305
fail("
ExemptionMechanismException
expected")
[
all
...]
/external/apache-harmony/crypto/src/test/support/common/java/org/apache/harmony/crypto/tests/support/
MyExemptionMechanismSpi.java
30
import javax.crypto.
ExemptionMechanismException
;
49
throws
ExemptionMechanismException
{
55
throws ShortBufferException,
ExemptionMechanismException
{
66
ExemptionMechanismException
{
71
throw new
ExemptionMechanismException
("Incorrect key");
78
ExemptionMechanismException
{
83
throw new
ExemptionMechanismException
("Incorrect key");
90
ExemptionMechanismException
{
95
throw new
ExemptionMechanismException
("Incorrect key");
/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/support/
MyExemptionMechanismSpi.java
31
import javax.crypto.
ExemptionMechanismException
;
50
throws
ExemptionMechanismException
{
56
throws ShortBufferException,
ExemptionMechanismException
{
67
ExemptionMechanismException
{
72
throw new
ExemptionMechanismException
("Incorrect key");
79
ExemptionMechanismException
{
84
throw new
ExemptionMechanismException
("Incorrect key");
94
ExemptionMechanismException
{
99
throw new
ExemptionMechanismException
("Incorrect key");
/external/apache-harmony/crypto/src/test/api/java.injected/javax/crypto/
ExemptionMechanismSpiTest.java
55
throws
ExemptionMechanismException
,
86
fail("
ExemptionMechanismException
must be thrown");
87
} catch (
ExemptionMechanismException
e) {
91
fail("
ExemptionMechanismException
must be thrown");
92
} catch (
ExemptionMechanismException
e) {
96
fail("
ExemptionMechanismException
must be thrown");
97
} catch (
ExemptionMechanismException
e) {
/external/apache-harmony/crypto/src/test/impl/java/org/apache/harmony/crypto/tests/javax/crypto/
ExemptionMechanism_ImplTest.java
31
import javax.crypto.
ExemptionMechanismException
;
85
throws
ExemptionMechanismException
, ShortBufferException,
125
fail("
ExemptionMechanismException
must be thrown");
126
} catch (
ExemptionMechanismException
e) {
131
fail("
ExemptionMechanismException
must be thrown");
132
} catch (
ExemptionMechanismException
e) {
137
fail("
ExemptionMechanismException
must be thrown");
138
} catch (
ExemptionMechanismException
e) {
151
ExemptionMechanismException
, InvalidAlgorithmParameterException,
189
ExemptionMechanismException
, InvalidAlgorithmParameterException
[
all
...]
/prebuilts/sdk/11/
android.jar
/prebuilts/sdk/12/
android.jar
/prebuilts/sdk/13/
android.jar
/prebuilts/sdk/16/
android.jar
/prebuilts/sdk/17/
android.jar
/prebuilts/sdk/21/
android.jar
/prebuilts/sdk/4/
android.jar
/prebuilts/sdk/5/
android.jar
/prebuilts/sdk/8/
android.jar
/prebuilts/sdk/9/
android.jar
Completed in 172 milliseconds