HomeSort by relevance Sort by last modified time
    Searched refs:ServiceInfo (Results 26 - 50 of 77) sorted by null

12 3 4

  /frameworks/base/core/java/android/content/pm/
PackageInfo.java 107 public ServiceInfo[] services;
289 services = source.createTypedArray(ServiceInfo.CREATOR);
ResolveInfo.java 39 * serviceInfo must be non-null.
48 public ServiceInfo serviceInfo;
144 ComponentInfo ci = activityInfo != null ? activityInfo : serviceInfo;
178 ComponentInfo ci = activityInfo != null ? activityInfo : serviceInfo;
199 if (serviceInfo != null) return serviceInfo.getIconResource();
224 } else if (serviceInfo != null) {
225 pw.println(prefix + "ServiceInfo:");
226 serviceInfo.dump(pw, prefix + " ")
    [all...]
IPackageManager.aidl 40 import android.content.pm.ServiceInfo;
74 ServiceInfo getServiceInfo(in ComponentName className, int flags, int userId);
  /frameworks/base/core/tests/coretests/src/android/app/activity/
MetaDataTest.java 25 import android.content.pm.ServiceInfo;
126 ServiceInfo si = mContext.getPackageManager().getServiceInfo(
  /packages/apps/Contacts/src/com/android/contacts/util/
LocalizedNameResolver.java 27 import android.content.pm.ServiceInfo;
88 for (ServiceInfo si : pi.services) {
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
PhotoPriorityResolver.java 30 import android.content.pm.ServiceInfo;
114 for (ServiceInfo si : pi.services) {
  /packages/wallpapers/LivePicker/src/com/android/wallpaper/livepicker/
LiveWallpaperChange.java 34 import android.content.pm.ServiceInfo;
65 if (ri.serviceInfo.name.equals(comp.getClassName())) {
70 Log.w(TAG, "Bad wallpaper " + ri.serviceInfo, e);
74 Log.w(TAG, "Bad wallpaper " + ri.serviceInfo, e);
  /frameworks/base/core/java/android/app/
WallpaperInfo.java 27 import android.content.pm.ServiceInfo;
85 ServiceInfo si = service.serviceInfo;
157 return mService.serviceInfo.packageName;
165 return mService.serviceInfo.name;
172 public ServiceInfo getServiceInfo() {
173 return mService.serviceInfo;
180 return new ComponentName(mService.serviceInfo.packageName,
181 mService.serviceInfo.name);
213 return pm.getDrawable(mService.serviceInfo.packageName
    [all...]
IApplicationThread.java 25 import android.content.pm.ServiceInfo;
77 void scheduleCreateService(IBinder token, ServiceInfo info,
  /frameworks/base/core/java/android/view/textservice/
SpellCheckerInfo.java 26 import android.content.pm.ServiceInfo;
67 ServiceInfo si = service.serviceInfo;
160 mService.serviceInfo.packageName, mService.serviceInfo.name);
167 return mService.serviceInfo.packageName;
209 return pm.getText(getPackageName(), mLabel, mService.serviceInfo.applicationInfo);
226 public ServiceInfo getServiceInfo() {
227 return mService.serviceInfo;
  /frameworks/base/core/java/android/speech/tts/
TtsEngines.java 27 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;
  /external/jmdns/src/javax/jmdns/impl/
DNSQuestion.java 12 import javax.jmdns.ServiceInfo;
13 import javax.jmdns.ServiceInfo.Fields;
95 for (ServiceInfo serviceInfo : jmDNSImpl.getServices().values()) {
96 this.addAnswersForServiceInfo(jmDNSImpl, answers, (ServiceInfoImpl) serviceInfo);
DNSEntry.java 13 import javax.jmdns.ServiceInfo.Fields;
  /frameworks/base/core/java/android/accessibilityservice/
AccessibilityServiceInfo.java 24 import android.content.pm.ServiceInfo;
268 ServiceInfo serviceInfo = resolveInfo.serviceInfo;
269 mId = new ComponentName(serviceInfo.packageName, serviceInfo.name).flattenToShortString();
276 parser = serviceInfo.loadXmlMetaData(packageManager,
295 serviceInfo.applicationInfo);
331 + serviceInfo.packageName);
426 ServiceInfo serviceInfo = mResolveInfo.serviceInfo
    [all...]
  /frameworks/base/core/java/android/webkit/
PluginManager.java 30 import android.content.pm.ServiceInfo;
127 ServiceInfo serviceInfo = info.serviceInfo;
128 if (serviceInfo == null) {
136 pkgInfo = pm.getPackageInfo(serviceInfo.packageName,
140 Log.w(LOGTAG, "Can't find plugin: " + serviceInfo.packageName);
169 if (serviceInfo.metaData == null) {
170 Log.e(LOGTAG, "The plugin '" + serviceInfo.name + "' has no type defined");
174 String pluginType = serviceInfo.metaData.getString(PLUGIN_TYPE)
    [all...]
  /packages/apps/Settings/src/com/android/settings/
VoiceInputOutputSettings.java 23 import android.content.pm.ServiceInfo;
124 new ComponentName(resolveInfo.serviceInfo.packageName,
125 resolveInfo.serviceInfo.name).flattenToShortString();
166 new ComponentName(resolveInfo.serviceInfo.packageName,
167 resolveInfo.serviceInfo.name).flattenToShortString();
186 ServiceInfo si = currentRecognizer.serviceInfo;
  /cts/tests/tests/accessibilityservice/src/android/accessibilityservice/cts/
AccessibilityActivityTestCase.java 30 import android.content.pm.ServiceInfo;
263 ServiceInfo serviceInfo = enabledService.getResolveInfo().serviceInfo;
264 if (DELEGATING_SERVICE_PACKAGE.equals(serviceInfo.packageName)
265 && DELEGATING_SERVICE_CLASS_NAME.equals(serviceInfo.name)) {
  /frameworks/base/services/java/com/android/server/am/
ServiceRecord.java 29 import android.content.pm.ServiceInfo;
61 final ServiceInfo serviceInfo;
72 final boolean exported; // from ServiceInfo.exported
281 Intent.FilterComparison intent, ServiceInfo sInfo, Runnable restarter) {
287 serviceInfo = sInfo;
  /development/apps/Development/src/com/android/development/
PackageSummary.java 30 import android.content.pm.ServiceInfo;
208 ServiceInfo si = info.services[i];
  /frameworks/base/services/tests/servicestests/src/com/android/server/
AccessibilityManagerServiceTest.java 23 import android.content.pm.ServiceInfo;
164 ServiceInfo serviceInfo = info.getResolveInfo().serviceInfo;
165 if (packageName.equals(serviceInfo.packageName)) {
166 if (firstMockServiceClassName.equals(serviceInfo.name)) {
168 } else if (secondMockServiceClassName.equals(serviceInfo.name)) {
AccessibilityManagerTest.java 29 import android.content.pm.ServiceInfo;
  /frameworks/base/test-runner/src/android/test/mock/
MockPackageManager.java 40 import android.content.pm.ServiceInfo;
125 public ServiceInfo getServiceInfo(ComponentName className, int flags)
  /packages/apps/Contacts/src/com/android/contacts/model/
ExternalAccountType.java 28 import android.content.pm.ServiceInfo;
192 for (ServiceInfo serviceInfo : packageInfo.services) {
193 final XmlResourceParser parser = serviceInfo.loadXmlMetaData(pm,
  /frameworks/base/core/java/android/content/
SyncQueue.java 54 final RegisteredServicesCache.ServiceInfo<SyncAdapterType> syncAdapterInfo =
SyncManager.java 554 for (RegisteredServicesCache.ServiceInfo<SyncAdapterType> syncAdapter :
574 final RegisteredServicesCache.ServiceInfo<SyncAdapterType> syncAdapterInfo =
654 final Collection<RegisteredServicesCache.ServiceInfo<SyncAdapterType>>
659 for (RegisteredServicesCache.ServiceInfo<SyncAdapterType> serviceInfo : serviceInfos) {
660 types[i] = serviceInfo.type;
    [all...]

Completed in 1481 milliseconds

12 3 4