Home
last modified time | relevance | path

Searched refs:pSrcName (Results 1 – 2 of 2) sorted by relevance

/libcore/ojluni/src/main/java/javax/crypto/spec/
DPSource.java45 private String pSrcName; field in PSource
56 protected PSource(String pSrcName) { in PSource() argument
57 if (pSrcName == null) { in PSource()
60 this.pSrcName = pSrcName; in PSource()
68 return pSrcName; in getAlgorithm()
/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
DPSourceTest.java100 String pSrcName = "pSrcName"; in testGetAlgorithm() local
101 PSource ps = new PSource(pSrcName) {}; in testGetAlgorithm()
103 + "in constructor", pSrcName.equals(ps.getAlgorithm())); in testGetAlgorithm()