HomeSort by relevance Sort by last modified time
    Searched refs:adjList (Results 1 - 3 of 3) sorted by null

  /libcore/ojluni/src/main/java/sun/security/provider/certpath/
SunCertPathBuilderException.java 47 private transient AdjacencyList adjList;
101 * @param adjList the adjacency list
103 SunCertPathBuilderException(String msg, AdjacencyList adjList) {
105 this.adjList = adjList;
114 * @param adjList Adjacency list
117 AdjacencyList adjList)
120 this.adjList = adjList;
129 return adjList;
    [all...]
SunCertPathBuilderResult.java 54 private AdjacencyList adjList;
65 * @param adjList an Adjacency list containing debug information
69 PublicKey subjectPublicKey, AdjacencyList adjList)
72 this.adjList = adjList;
81 return adjList;
SunCertPathBuilder.java 135 List<List<Vertex>> adjList = new ArrayList<>();
136 PKIXCertPathBuilderResult result = buildCertPath(false, adjList);
142 adjList.clear();
143 result = buildCertPath(true, adjList);
147 new AdjacencyList(adjList));
154 List<List<Vertex>> adjList)
165 buildForward(adjList, certPathList, searchAllCertStores);
167 buildReverse(adjList, certPathList);
177 new AdjacencyList(adjList));
195 new AdjacencyList(adjList));
    [all...]

Completed in 46 milliseconds