OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ExemptionMechanismException
(Results
1 - 22
of
22
) 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
189
* @throws
ExemptionMechanismException
194
throws
ExemptionMechanismException
{
231
* @throws
ExemptionMechanismException
235
ExemptionMechanismException
{
255
* @throws
ExemptionMechanismException
260
ExemptionMechanismException
{
280
* @throws
ExemptionMechanismException
285
ExemptionMechanismException
{
299
* @throws
ExemptionMechanismException
303
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
41
return new Object[] { new
ExemptionMechanismException
(),
42
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
56
return "
ExemptionMechanismException
: ".concat(tE.toString()).concat(
61
* Test for <code>
ExemptionMechanismException
()</code> constructor
62
* Assertion: constructs
ExemptionMechanismException
with no detail message
65
ExemptionMechanismException
tE = new
ExemptionMechanismException
();
76
* Test for <code>
ExemptionMechanismException
(String)</code> constructor
77
* Assertion: constructs
ExemptionMechanismException
with detail message
81
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
36
import javax.crypto.
ExemptionMechanismException
;
217
throws
ExemptionMechanismException
{
218
throw new
ExemptionMechanismException
();
223
throws ShortBufferException,
ExemptionMechanismException
{
229
throw new
ExemptionMechanismException
();
236
ExemptionMechanismException
{
267
fail("
ExemptionMechanismException
expected");
268
} catch (
ExemptionMechanismException
e) {
274
ExemptionMechanismException
, ShortBufferException {
307
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
56
throws
ExemptionMechanismException
,
87
fail("
ExemptionMechanismException
must be thrown");
88
} catch (
ExemptionMechanismException
e) {
92
fail("
ExemptionMechanismException
must be thrown");
93
} catch (
ExemptionMechanismException
e) {
97
fail("
ExemptionMechanismException
must be thrown");
98
} 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
;
86
throws
ExemptionMechanismException
, ShortBufferException,
126
fail("
ExemptionMechanismException
must be thrown");
127
} catch (
ExemptionMechanismException
e) {
132
fail("
ExemptionMechanismException
must be thrown");
133
} catch (
ExemptionMechanismException
e) {
138
fail("
ExemptionMechanismException
must be thrown");
139
} catch (
ExemptionMechanismException
e) {
152
ExemptionMechanismException
, InvalidAlgorithmParameterException,
190
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/4/
android.jar
/prebuilts/sdk/5/
android.jar
/prebuilts/sdk/8/
android.jar
/prebuilts/sdk/9/
android.jar
Completed in 692 milliseconds