Home | History | Annotate | Download | only in utils

Lines Matching refs:ResolveInfo

20 import android.content.pm.ResolveInfo;
33 ResolveInfo service, String id, String parentId, int type, boolean isHardwareInput)
44 ResolveInfo service,
66 * private TvInputInfo(ResolveInfo service, String id, int type, boolean isHardwareInput,
72 ResolveInfo service,
82 ResolveInfo.class,
119 * private TvInputInfo(ResolveInfo service, String id, int type, boolean isHardwareInput,
126 ResolveInfo service,
136 ResolveInfo.class,
175 ResolveInfo service, String id, String parentId, int type, boolean isHardwareInput)
179 ResolveInfo.class, String.class, String.class, int.class, boolean.class);
184 public static ResolveInfo createResolveInfo(String packageName, String name) {
185 ResolveInfo resolveInfo = new ResolveInfo();
186 resolveInfo.serviceInfo = new ServiceInfo();
187 resolveInfo.serviceInfo.packageName = packageName;
188 resolveInfo.serviceInfo.name = name;
189 resolveInfo.serviceInfo.metaData = new Bundle();
190 resolveInfo.serviceInfo.applicationInfo = new ApplicationInfo();
191 return resolveInfo;