OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:minCRL
(Results
1 - 11
of
11
) sorted by null
/libcore/luni/src/main/java/java/security/cert/
X509CRLSelector.java
48
private BigInteger
minCRL
;
217
* @param
minCRL
221
public void setMinCRLNumber(BigInteger
minCRL
) {
222
this.
minCRL
=
minCRL
;
318
return
minCRL
;
377
if (
minCRL
!= null) {
378
result.append("\n
minCRL
: " +
minCRL
);
414
if ((
minCRL
!= null) || (maxCRL != null))
[
all
...]
/external/apache-harmony/security/src/test/impl/java.injected/java/security/cert/
X509CRLSelectorTest.java
350
* setMinCRLNumber(BigInteger
minCRL
) method testing.
352
* null crlNumber criteria, if specified
minCRL
value matches the selector,
357
BigInteger
minCRL
= new BigInteger("10000");
358
TestCRL crl = new TestCRL(
minCRL
);
363
selector.setMinCRLNumber(
minCRL
);
496
* Tests if the method return null in the case of not specified
minCRL
501
assertNull("Initially the
minCRL
should be null.",
503
BigInteger
minCRL
= new BigInteger("10000");
504
selector.setMinCRLNumber(
minCRL
);
506
minCRL
.equals(selector.getMinCRL()))
[
all
...]
/libcore/luni/src/test/java/tests/security/cert/
X509CRLSelector2Test.java
235
* setMinCRLNumber(BigInteger
minCRL
) method testing. Tests if CRLs with any
237
* criteria, if specified
minCRL
value matches the selector, and if CRL with
244
BigInteger
minCRL
= new BigInteger("10000");
245
CRL crl = new TestCRL(
minCRL
);
250
selector.setMinCRLNumber(
minCRL
);
387
* of not specified
minCRL
criteria, and if the returned value corresponds
392
assertNull("Initially the
minCRL
should be null.", selector.getMinCRL());
393
BigInteger
minCRL
= new BigInteger("10000");
394
selector.setMinCRLNumber(
minCRL
);
395
assertTrue("The result should be equal to specified.",
minCRL
[
all
...]
/prebuilts/sdk/10/
android.jar
/prebuilts/sdk/11/
android.jar
/prebuilts/sdk/13/
android.jar
/prebuilts/sdk/16/
android.jar
/prebuilts/sdk/5/
android.jar
/prebuilts/sdk/7/
android.jar
/prebuilts/sdk/8/
android.jar
/prebuilts/sdk/9/
android.jar
Completed in 31 milliseconds