Searched refs:ServiceInfo (Results 1 - 25 of 48) sorted by relevance

12

/frameworks/base/core/java/android/content/pm/
H A DServiceInfo.aidl20 parcelable ServiceInfo;
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.java91 public Map<V, ServiceInfo<V>> services = null;
173 for (ServiceInfo<?> info : user.services.values()) {
224 public static class ServiceInfo<V> { class in class:RegisteredServicesCache
230 public ServiceInfo(V type, ComponentName componentName, int uid) { method in class:RegisteredServicesCache.ServiceInfo
238 return "ServiceInfo: " + type + ", " + componentName + ", uid " + uid;
247 public ServiceInfo<V> getServiceInfo(V type, int userId) {
259 * @return a collection of {@link RegisteredServicesCache.ServiceInfo} objects for all
262 public Collection<ServiceInfo<V>> getAllServices(int userId) {
270 new ArrayList<ServiceInfo<V>>(user.services.values()));
300 final ArrayList<ServiceInfo<
[all...]
H A DPackageInfo.java107 public ServiceInfo[] services;
301 services = source.createTypedArray(ServiceInfo.CREATOR);
H A DIPackageManager.aidl41 import android.content.pm.ServiceInfo;
77 ServiceInfo getServiceInfo(in ComponentName className, int flags, int userId);
H A DResolveInfo.java53 public ServiceInfo serviceInfo;
244 pw.println(prefix + "ServiceInfo:");
345 serviceInfo = ServiceInfo.CREATOR.createFromParcel(source);
/frameworks/base/tools/layoutlib/bridge/src/android/view/accessibility/
H A DAccessibilityManager.java21 import android.content.pm.ServiceInfo;
101 * Returns the {@link ServiceInfo}s of the installed accessibility services.
103 * @return An unmodifiable list with {@link ServiceInfo}s.
105 public List<ServiceInfo> getAccessibilityServiceList() {
108 List<ServiceInfo> services = null;
/frameworks/base/services/java/com/android/server/accounts/
H A DIAccountAuthenticatorCache.java35 * Accessor for the {@link android.content.pm.RegisteredServicesCache.ServiceInfo} that
39 * @return the {@link android.content.pm.RegisteredServicesCache.ServiceInfo} that
42 RegisteredServicesCache.ServiceInfo<AuthenticatorDescription> getServiceInfo(
48 Collection<RegisteredServicesCache.ServiceInfo<AuthenticatorDescription>> getAllServices(
/frameworks/base/services/java/com/android/server/
H A DRecognitionManagerService.java29 import android.content.pm.ServiceInfo;
92 ServiceInfo info = null;
120 ServiceInfo serviceInfo = available.get(i).serviceInfo;
130 ServiceInfo serviceInfo = available.get(0).serviceInfo;
/frameworks/base/services/tests/servicestests/src/com/android/server/accounts/
H A DAccountManagerServiceTest.java24 import android.content.pm.RegisteredServicesCache.ServiceInfo;
192 private ArrayList<ServiceInfo<AuthenticatorDescription>> mServices;
195 mServices = new ArrayList<ServiceInfo<AuthenticatorDescription>>();
198 mServices.add(new ServiceInfo<AuthenticatorDescription>(d1, null, 0));
199 mServices.add(new ServiceInfo<AuthenticatorDescription>(d2, null, 0));
203 public ServiceInfo<AuthenticatorDescription> getServiceInfo(
205 for (ServiceInfo<AuthenticatorDescription> service : mServices) {
214 public Collection<ServiceInfo<AuthenticatorDescription>> getAllServices(int userId) {
/frameworks/support/v7/mediarouter/src/android/support/v7/media/
H A DRegisteredMediaRouteProviderWatcher.java26 import android.content.pm.ServiceInfo;
71 ServiceInfo serviceInfo = resolveInfo.serviceInfo;
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityManager.java23 import android.content.pm.ServiceInfo;
299 * Returns the {@link ServiceInfo}s of the installed accessibility services.
301 * @return An unmodifiable list with {@link ServiceInfo}s.
306 public List<ServiceInfo> getAccessibilityServiceList() {
308 List<ServiceInfo> services = new ArrayList<ServiceInfo>();
/frameworks/base/core/java/android/view/inputmethod/
H A DInputMethodInfo.java28 import android.content.pm.ServiceInfo;
119 ServiceInfo si = service.serviceInfo;
258 final ServiceInfo si = ri.serviceInfo;
274 ServiceInfo si = new ServiceInfo();
315 public ServiceInfo getServiceInfo() {
/frameworks/base/core/tests/coretests/src/android/app/activity/
H A DMetaDataTest.java25 import android.content.pm.ServiceInfo;
126 ServiceInfo si = mContext.getPackageManager().getServiceInfo(
/frameworks/base/core/java/android/app/
H A DWallpaperInfo.java27 import android.content.pm.ServiceInfo;
85 ServiceInfo si = service.serviceInfo;
172 public ServiceInfo getServiceInfo() {
H A DIApplicationThread.java25 import android.content.pm.ServiceInfo;
79 void scheduleCreateService(IBinder token, ServiceInfo info,
/frameworks/base/core/java/android/view/textservice/
H A DSpellCheckerInfo.java26 import android.content.pm.ServiceInfo;
67 ServiceInfo si = service.serviceInfo;
226 public ServiceInfo getServiceInfo() {
/frameworks/base/core/tests/inputmethodtests/src/android/os/
H A DInputMethodTest.java24 import android.content.pm.ServiceInfo;
93 final ServiceInfo si = new ServiceInfo();
/frameworks/base/core/java/android/speech/tts/
H A DTtsEngines.java27 import android.content.pm.ServiceInfo;
139 private boolean isSystemEngine(ServiceInfo info) {
168 ServiceInfo service = resolveInfos.get(0).serviceInfo;
190 private String settingsActivityFromServiceInfo(ServiceInfo si, PackageManager pm) {
239 ServiceInfo service = resolve.serviceInfo;
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DEnableAccessibilityController.java24 import android.content.pm.ServiceInfo;
245 ServiceInfo serviceInfo = service.getResolveInfo().serviceInfo;
/frameworks/base/services/java/com/android/server/content/
H A DSyncQueue.java24 import android.content.pm.RegisteredServicesCache.ServiceInfo;
67 final ServiceInfo<SyncAdapterType> syncAdapterInfo = mSyncAdapters.getServiceInfo(
/frameworks/base/core/java/android/accessibilityservice/
H A DAccessibilityServiceInfo.java24 import android.content.pm.ServiceInfo;
410 ServiceInfo serviceInfo = resolveInfo.serviceInfo;
622 ServiceInfo serviceInfo = mResolveInfo.serviceInfo;
/frameworks/base/services/java/com/android/server/am/
H A DServiceRecord.java32 import android.content.pm.ServiceInfo;
64 final ServiceInfo serviceInfo;
75 final boolean exported; // from ServiceInfo.exported
301 Intent.FilterComparison intent, ServiceInfo sInfo, boolean callerIsFg,
/frameworks/base/core/java/android/nfc/cardemulation/
H A DApduServiceInfo.java22 import android.content.pm.ServiceInfo;
109 ServiceInfo si = info.serviceInfo;
/frameworks/base/services/tests/servicestests/src/com/android/server/
H A DAccessibilityManagerServiceTest.java23 import android.content.pm.ServiceInfo;
166 ServiceInfo serviceInfo = info.getResolveInfo().serviceInfo;

Completed in 2502 milliseconds

12