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
36 public ServiceInfo() { method in class:ServiceInfo
39 public ServiceInfo(ServiceInfo orig) { method in class:ServiceInfo
50 return "ServiceInfo{"
64 public static final Creator<ServiceInfo> CREATOR =
65 new Creator<ServiceInfo>() {
66 public ServiceInfo createFromParcel(Parcel source) {
67 return new ServiceInfo(source);
69 public ServiceInfo[] newArra
74 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
185 private ServiceInfo(V type, ComponentName componentName, int uid) { method in class:RegisteredServicesCache.ServiceInfo
193 return "ServiceInfo: " + type + ", " + componentName + ", uid " + uid;
202 public ServiceInfo<V> getServiceInfo(V type) {
209 * @return a collection of {@link RegisteredServicesCache.ServiceInfo} objects for all
212 public Collection<ServiceInfo<V>> getAllServices() {
255 ArrayList<ServiceInfo<
[all...]

Completed in 277 milliseconds