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

/libcore/luni/src/main/java/org/apache/harmony/security/fortress/
H A DEngine.java82 private final String serviceName; field in class:Engine
124 this.serviceName = service;
146 throw notFound(serviceName, algorithm);
148 String name = this.serviceName + "." + algorithm.toUpperCase(Locale.US);
151 throw notFound(serviceName, algorithm);
168 Provider.Service service = provider.getService(serviceName, algorithm);
170 throw notFound(serviceName, algorithm);
175 private NoSuchAlgorithmException notFound(String serviceName, String algorithm) argument
177 throw new NoSuchAlgorithmException(serviceName + " " + algorithm
/libcore/luni/src/main/java/org/apache/harmony/security/utils/
H A DAlgNameMapper.java42 private static final String[] serviceName = { field in class:AlgNameMapper
149 for (String service : serviceName) {
/libcore/luni/src/main/java/java/security/
H A DSecurity.java360 * @param serviceName
364 * serviceName} is {@code null} or if no registered provider
367 public static Set<String> getAlgorithms(String serviceName) { argument
370 if (serviceName == null) {
375 if (service.getType().equalsIgnoreCase(serviceName)) {

Completed in 49 milliseconds