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.java349 public List<Service> getServices(String type, String algorithm) { method in class:ProviderList
356 * @deprecated use getServices(List<ServiceId>) instead
359 public List<Service> getServices(String type, List<String> algorithms) { method in class:ProviderList
364 return getServices(ids);
367 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.java675 // serviceMap changed since last call to getServices()
1101 public synchronized Set<Service> getServices() { method in class:Provider
1908 * Ensure the values cached by {@link #getServices} and {@link #getService} are already computed
1920 // This call to getServices will update fields so that further calls will just return a
1922 getServices();

Completed in 143 milliseconds