Lines Matching refs:currentState

275         ReverseState currentState = new ReverseState();
297 currentState.initState(buildParams.getMaxPathLength(),
302 currentState.updateState(anchor);
304 currentState.crlChecker =
306 currentState.algorithmChecker = new AlgorithmChecker(anchor);
307 currentState.untrustedChecker = new UntrustedChecker();
309 depthFirstSearchReverse(null, currentState,
344 ForwardState currentState = new ForwardState();
345 currentState.initState(buildParams.getCertPathCheckers());
352 currentState.crlChecker
354 currentState.untrustedChecker = new UntrustedChecker();
356 depthFirstSearchForward(targetSubjectDN, currentState,
375 * @param currentState the current PKIX validation state
377 void depthFirstSearchForward(X500Principal dN, ForwardState currentState,
386 + ", " + currentState.toString() + ")");
394 (builder.getMatchingCerts(currentState, orderedCertStores), adjList);
410 * Restore state to currentState each time through the loop.
416 ForwardState nextState = (ForwardState) currentState.clone();
687 * @param currentState the current PKIX validation state
689 void depthFirstSearchReverse(X500Principal dN, ReverseState currentState,
696 + ", " + currentState.toString() + ")");
703 (builder.getMatchingCerts(currentState, orderedCertStores), adjList);
716 * Restore state to currentState each time through the loop.
722 ReverseState nextState = (ReverseState) currentState.clone();
738 if (!currentState.isInitial())
741 this.trustAnchor = currentState.trustAnchor;
770 (finalPublicKey, currentState.pubKey);
805 if (!currentState.isInitial())