Searched defs:adjList (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DSunCertPathBuilderException.java47 private transient AdjacencyList adjList; field in class:SunCertPathBuilderException
101 * @param adjList the adjacency list
103 SunCertPathBuilderException(String msg, AdjacencyList adjList) { argument
105 this.adjList = adjList;
114 * @param adjList Adjacency list
117 AdjacencyList adjList)
120 this.adjList = adjList;
129 return adjList;
116 SunCertPathBuilderException(String msg, Throwable cause, AdjacencyList adjList) argument
[all...]
H A DSunCertPathBuilderResult.java54 private AdjacencyList adjList; field in class:SunCertPathBuilderResult
65 * @param adjList an Adjacency list containing debug information
69 PublicKey subjectPublicKey, AdjacencyList adjList)
72 this.adjList = adjList;
81 return adjList;
67 SunCertPathBuilderResult(CertPath certPath, TrustAnchor trustAnchor, PolicyNode policyTree, PublicKey subjectPublicKey, AdjacencyList adjList) argument
H A DSunCertPathBuilder.java185 List<List<Vertex>> adjList = new ArrayList<List<Vertex>>();
187 buildCertPath(buildForward, false, adjList);
193 adjList.clear();
194 result = buildCertPath(buildForward, true, adjList);
198 new AdjacencyList(adjList));
205 boolean searchAllCertStores, List<List<Vertex>> adjList)
217 buildForward(adjList, certPathList, searchAllCertStores);
219 buildReverse(adjList, certPathList);
229 new AdjacencyList(adjList));
247 new AdjacencyList(adjList));
204 buildCertPath(boolean buildForward, boolean searchAllCertStores, List<List<Vertex>> adjList) argument
377 depthFirstSearchForward(X500Principal dN, ForwardState currentState, ForwardBuilder builder, List<List<Vertex>> adjList, LinkedList<X509Certificate> certPathList) argument
689 depthFirstSearchReverse(X500Principal dN, ReverseState currentState, ReverseBuilder builder, List<List<Vertex>> adjList, LinkedList<X509Certificate> certPathList) argument
818 addVertices(Collection<X509Certificate> certs, List<List<Vertex>> adjList) argument
[all...]

Completed in 51 milliseconds