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

/libcore/ojluni/src/main/java/sun/security/jca/
H A DGetInstance.java64 public static Service getService(String type, String algorithm) method in class:GetInstance
67 Service s = list.getService(type, algorithm);
75 public static Service getService(String type, String algorithm, method in class:GetInstance
85 Service s = p.getService(type, algorithm);
93 public static Service getService(String type, String algorithm, method in class:GetInstance
98 Service s = provider.getService(type, algorithm);
157 Service firstService = list.getService(type, algorithm);
206 return getInstance(getService(type, algorithm, provider), clazz);
212 return getInstance(getService(type, algorithm, provider), clazz, param);
218 return getInstance(getService(typ
[all...]
H A DProviderList.java72 // override getService() to return null slightly faster
73 public Service getService(String type, String algorithm) {
328 public Service getService(String type, String name) { method in class:ProviderList
331 Service s = p.getService(type, name);
436 Service s = p.getService(type, algorithm);
443 Service s = p.getService(id.type, id.algorithm);
/libcore/ojluni/src/main/java/java/security/
H A DProvider.java707 public synchronized Service getService(String type, String algorithm) { method in class:Provider
725 // ServiceKey from previous getService() call
866 * {@link #getService getService()} and its information will be removed
1242 if (provider.getService(type, algorithm) != this) {
1527 * Ensure the values cached by {@link #getServices} and {@link #getService} are already computed

Completed in 107 milliseconds