Searched refs:certPathList (Results 1 - 4 of 4) sorted by relevance

/libcore/ojluni/src/main/java/sun/security/provider/certpath/
H A DReverseBuilder.java339 * @param certPathList the certPathList generated thus far
343 List<X509Certificate> certPathList)
373 if ((certPathList != null) && (!certPathList.isEmpty())) {
375 for (X509Certificate c : certPathList) {
532 /** Adds the certificate to the certPathList
535 * @param certPathList the certification path list
539 LinkedList<X509Certificate> certPathList) {
540 certPathList
342 verifyCert(X509Certificate cert, State currState, List<X509Certificate> certPathList) argument
538 addCertToPath(X509Certificate cert, LinkedList<X509Certificate> certPathList) argument
548 removeFinalCertFromPath(LinkedList<X509Certificate> certPathList) argument
[all...]
H A DSunCertPathBuilder.java162 LinkedList<X509Certificate> certPathList = new LinkedList<>();
165 buildForward(adjList, certPathList, searchAllCertStores);
167 buildReverse(adjList, certPathList);
189 // the certPathList
190 Collections.reverse(certPathList);
193 cf.generateCertPath(certPathList), trustAnchor,
215 LinkedList<X509Certificate> certPathList)
263 adjacencyList, certPathList);
282 + "certPathList.size: " + certPathList
214 buildReverse(List<List<Vertex>> adjacencyList, LinkedList<X509Certificate> certPathList) argument
289 buildForward(List<List<Vertex>> adjacencyList, LinkedList<X509Certificate> certPathList, boolean searchAllCertStores) argument
[all...]
H A DBuilder.java92 * Verifies the cert against the currentState, using the certPathList
97 * @param certPathList the certPathList generated thus far
100 List<X509Certificate> certPathList)
114 * Adds the certificate to the certPathList
117 * @param certPathList the certification path list
120 LinkedList<X509Certificate> certPathList);
123 * Removes final certificate from the certPathList
125 * @param certPathList the certification path list
128 (LinkedList<X509Certificate> certPathList);
99 verifyCert(X509Certificate cert, State currentState, List<X509Certificate> certPathList) argument
119 addCertToPath(X509Certificate cert, LinkedList<X509Certificate> certPathList) argument
127 removeFinalCertFromPath(LinkedList<X509Certificate> certPathList) argument
[all...]
H A DForwardBuilder.java653 * @param certPathList the certPathList generated thus far
657 List<X509Certificate> certPathList)
676 if (certPathList != null) {
677 for (X509Certificate cpListCert : certPathList) {
862 /** Adds the certificate to the certPathList
865 * @param certPathList the certification path list
869 LinkedList<X509Certificate> certPathList)
871 certPathList.addFirst(cert);
874 /** Removes final certificate from the certPathList
656 verifyCert(X509Certificate cert, State currentState, List<X509Certificate> certPathList) argument
868 addCertToPath(X509Certificate cert, LinkedList<X509Certificate> certPathList) argument
879 removeFinalCertFromPath(LinkedList<X509Certificate> certPathList) argument
[all...]

Completed in 35 milliseconds