Searched defs:ServiceInfo (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/content/pm/
H A DServiceInfo.java28 public class ServiceInfo extends ComponentInfo class in inherits:ComponentInfo,Parcelable
74 public ServiceInfo() { method in class:ServiceInfo
77 public ServiceInfo(ServiceInfo orig) { method in class:ServiceInfo
96 return "ServiceInfo{"
111 public static final Creator<ServiceInfo> CREATOR =
112 new Creator<ServiceInfo>() {
113 public ServiceInfo createFromParcel(Parcel source) {
114 return new ServiceInfo(source);
116 public ServiceInfo[] newArra
121 private ServiceInfo(Parcel source) { method in class:ServiceInfo
[all...]
H A DRegisteredServicesCache.java98 Map<V, ServiceInfo<V>> services = null;
246 for (ServiceInfo<?> info : user.services.values()) {
297 public static class ServiceInfo<V> { class in class:RegisteredServicesCache
304 public ServiceInfo(V type, ComponentInfo componentInfo, ComponentName componentName) { method in class:RegisteredServicesCache.ServiceInfo
313 return "ServiceInfo: " + type + ", " + componentName + ", uid " + uid;
322 public ServiceInfo<V> getServiceInfo(V type, int userId) {
334 * @return a collection of {@link RegisteredServicesCache.ServiceInfo} objects for all
337 public Collection<ServiceInfo<V>> getAllServices(int userId) {
345 new ArrayList<ServiceInfo<V>>(user.services.values()));
353 List<ServiceInfo<
[all...]

Completed in 442 milliseconds