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
52 public ServiceInfo() { method in class:ServiceInfo
55 public ServiceInfo(ServiceInfo orig) { method in class:ServiceInfo
68 return "ServiceInfo{"
83 public static final Creator<ServiceInfo> CREATOR =
84 new Creator<ServiceInfo>() {
85 public ServiceInfo createFromParcel(Parcel source) {
86 return new ServiceInfo(source);
88 public ServiceInfo[] newArra
93 private ServiceInfo(Parcel source) { method in class:ServiceInfo
[all...]
H A DRegisteredServicesCache.java78 private Map<V, ServiceInfo<V>> mServices;
128 Map<V, ServiceInfo<V>> services;
133 for (ServiceInfo info : services.values()) {
180 public static class ServiceInfo<V> { class in class:RegisteredServicesCache
186 public ServiceInfo(V type, ComponentName componentName, int uid) { method in class:RegisteredServicesCache.ServiceInfo
194 return "ServiceInfo: " + type + ", " + componentName + ", uid " + uid;
203 public ServiceInfo<V> getServiceInfo(V type) {
210 * @return a collection of {@link RegisteredServicesCache.ServiceInfo} objects for all
213 public Collection<ServiceInfo<V>> getAllServices() {
256 ArrayList<ServiceInfo<
[all...]

Completed in 40 milliseconds