HomeSort by relevance Sort by last modified time
    Searched defs:ServiceInfo (Results 1 - 7 of 7) sorted by null

  /frameworks/base/core/java/android/content/pm/
ServiceInfo.java 28 public class ServiceInfo extends ComponentInfo
36 public ServiceInfo() {
39 public ServiceInfo(ServiceInfo orig) {
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[] newArray(int size)
    [all...]
RegisteredServicesCache.java 78 private Map<V, ServiceInfo<V>> mServices;
128 Map<V, ServiceInfo<V>> services;
133 for (ServiceInfo info : services.values()) {
180 public static class ServiceInfo<V> {
185 private ServiceInfo(V type, ComponentName componentName, int uid) {
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<V>> serviceInfos = new ArrayList<ServiceInfo<V>>()
    [all...]
  /cts/tests/tests/content/src/android/content/pm/cts/
ServiceInfoTest.java 26 import android.content.pm.ServiceInfo;
31 @TestTargetClass(ServiceInfo.class)
46 method = "ServiceInfo",
52 method = "ServiceInfo",
53 args = {android.content.pm.ServiceInfo.class}
73 // Test ServiceInfo()
74 new ServiceInfo();
76 ServiceInfo serviceInfo = pm.getServiceInfo(componentName, 0);
77 // Test ServiceInfo(ServiceInfo orig
    [all...]
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/7/
android.jar 

Completed in 177 milliseconds