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

/frameworks/base/core/java/android/content/pm/
H A DServiceInfo.java28 public class ServiceInfo extends ComponentInfo class in inherits:ComponentInfo,Parcelable
80 public ServiceInfo() { method in class:ServiceInfo
83 public ServiceInfo(ServiceInfo orig) { method in class:ServiceInfo
102 return "ServiceInfo{"
117 public static final Creator<ServiceInfo> CREATOR =
118 new Creator<ServiceInfo>() {
119 public ServiceInfo createFromParcel(Parcel source) {
120 return new ServiceInfo(source);
122 public ServiceInfo[] newArra
127 private ServiceInfo(Parcel source) { method in class:ServiceInfo
[all...]
H A DRegisteredServicesCache.java100 Map<V, ServiceInfo<V>> services = null;
250 for (ServiceInfo<?> info : user.services.values()) {
301 public static class ServiceInfo<V> { class in class:RegisteredServicesCache
308 public ServiceInfo(V type, ComponentInfo componentInfo, ComponentName componentName) { method in class:RegisteredServicesCache.ServiceInfo
317 return "ServiceInfo: " + type + ", " + componentName + ", uid " + uid;
326 public ServiceInfo<V> getServiceInfo(V type, int userId) {
338 * @return a collection of {@link RegisteredServicesCache.ServiceInfo} objects for all
341 public Collection<ServiceInfo<V>> getAllServices(int userId) {
349 new ArrayList<ServiceInfo<V>>(user.services.values()));
357 List<ServiceInfo<
[all...]
/frameworks/base/telephony/java/android/telephony/mbms/
H A DServiceInfo.java40 public class ServiceInfo { class
52 public ServiceInfo(Map<Locale, String> newNames, String newClassName, List<Locale> newLocales, method in class:ServiceInfo
57 throw new IllegalArgumentException("Bad ServiceInfo construction");
76 protected ServiceInfo(Parcel in) { method in class:ServiceInfo
189 if (!(o instanceof ServiceInfo)) {
192 ServiceInfo that = (ServiceInfo) o;

Completed in 48 milliseconds