Searched defs:getServices (Results 1 - 4 of 4) sorted by relevance

/libcore/ojluni/src/main/java/sun/security/jca/
H A DGetInstance.java112 public static List<Service> getServices(String type, String algorithm) { method in class:GetInstance
114 return list.getServices(type, algorithm);
120 * @deprecated use getServices(List<ServiceId>) instead
123 public static List<Service> getServices(String type, method in class:GetInstance
126 return list.getServices(type, algorithms);
131 * the specified algorithms. See getServices(String, String) for detals.
133 public static List<Service> getServices(List<ServiceId> ids) { method in class:GetInstance
135 return list.getServices(ids);
170 for (Service s : list.getServices(type, algorithm)) {
186 List<Service> services = getServices(typ
[all...]
H A DProviderList.java348 public List<Service> getServices(String type, String algorithm) { method in class:ProviderList
355 * @deprecated use getServices(List<ServiceId>) instead
358 public List<Service> getServices(String type, List<String> algorithms) { method in class:ProviderList
363 return getServices(ids);
366 public List<Service> getServices(List<ServiceId> ids) { method in class:ProviderList
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/
H A DTestCertUtils.java594 public synchronized Set<Provider.Service> getServices() { method in class:TestCertUtils.TestProvider
/libcore/ojluni/src/main/java/java/security/
H A DProvider.java424 // serviceMap changed since last call to getServices()
743 public synchronized Set<Service> getServices() { method in class:Provider
1527 * Ensure the values cached by {@link #getServices} and {@link #getService} are already computed
1539 // This call to getServices will update fields so that further calls will just return a
1541 getServices();

Completed in 281 milliseconds