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
67 public ServiceInfo() { method in class:ServiceInfo
70 public ServiceInfo(ServiceInfo orig) { method in class:ServiceInfo
83 return "ServiceInfo{"
98 public static final Creator<ServiceInfo> CREATOR =
99 new Creator<ServiceInfo>() {
100 public ServiceInfo createFromParcel(Parcel source) {
101 return new ServiceInfo(source);
103 public ServiceInfo[] newArra
108 private ServiceInfo(Parcel source) { method in class:ServiceInfo
[all...]
H A DRegisteredServicesCache.java96 Map<V, ServiceInfo<V>> services = null;
244 for (ServiceInfo<?> info : user.services.values()) {
295 public static class ServiceInfo<V> { class in class:RegisteredServicesCache
301 public ServiceInfo(V type, ComponentName componentName, int uid) { method in class:RegisteredServicesCache.ServiceInfo
309 return "ServiceInfo: " + type + ", " + componentName + ", uid " + uid;
318 public ServiceInfo<V> getServiceInfo(V type, int userId) {
330 * @return a collection of {@link RegisteredServicesCache.ServiceInfo} objects for all
333 public Collection<ServiceInfo<V>> getAllServices(int userId) {
341 new ArrayList<ServiceInfo<V>>(user.services.values()));
381 final ArrayList<ServiceInfo<
[all...]

Completed in 5326 milliseconds