OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:supportedExts
(Results
1 - 4
of
4
) sorted by null
/libcore/ojluni/src/main/java/sun/security/provider/certpath/
KeyChecker.java
52
private Set<String>
supportedExts
;
87
if (
supportedExts
== null) {
88
supportedExts
= new HashSet<String>(3);
89
supportedExts
.add(KeyUsage_Id.toString());
90
supportedExts
.add(ExtendedKeyUsage_Id.toString());
91
supportedExts
.add(SubjectAlternativeName_Id.toString());
92
supportedExts
= Collections.unmodifiableSet(
supportedExts
);
94
return
supportedExts
;
ConstraintsChecker.java
64
private Set<String>
supportedExts
;
94
if (
supportedExts
== null) {
95
supportedExts
= new HashSet<String>(2);
96
supportedExts
.add(BasicConstraints_Id.toString());
97
supportedExts
.add(NameConstraints_Id.toString());
98
supportedExts
= Collections.unmodifiableSet(
supportedExts
);
100
return
supportedExts
;
PolicyChecker.java
72
private Set<String>
supportedExts
;
156
if (
supportedExts
== null) {
157
supportedExts
= new HashSet<String>(4);
158
supportedExts
.add(CertificatePolicies_Id.toString());
159
supportedExts
.add(PolicyMappings_Id.toString());
160
supportedExts
.add(PolicyConstraints_Id.toString());
161
supportedExts
.add(InhibitAnyPolicy_Id.toString());
162
supportedExts
= Collections.unmodifiableSet(
supportedExts
);
164
return
supportedExts
;
[
all
...]
ForwardBuilder.java
713
Set<String>
supportedExts
= checker.getSupportedExtensions();
714
if (
supportedExts
!= null) {
715
unresCritExts.removeAll(
supportedExts
);
[
all
...]
Completed in 65 milliseconds