HomeSort by relevance Sort by last modified time
    Searched refs:ServiceInfo (Results 76 - 100 of 153) sorted by null

1 2 34 5 6 7

  /development/apps/Development/src/com/android/development/
PackageSummary.java 30 import android.content.pm.ServiceInfo;
205 ServiceInfo si = info.services[i];
  /frameworks/base/core/java/android/app/
IApplicationThread.java 25 import android.content.pm.ServiceInfo;
85 void scheduleCreateService(IBinder token, ServiceInfo info,
  /frameworks/base/services/tests/servicestests/src/com/android/server/
AccessibilityManagerServiceTest.java 23 import android.content.pm.ServiceInfo;
181 ServiceInfo serviceInfo = info.getResolveInfo().serviceInfo;
182 if (packageName.equals(serviceInfo.packageName)) {
183 if (firstMockServiceClassName.equals(serviceInfo.name)) {
185 } else if (secondMockServiceClassName.equals(serviceInfo.name)) {
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/account/
ExternalAccountType.java 24 import android.content.pm.ServiceInfo;
198 final ServiceInfo serviceInfo = resolveInfo.serviceInfo;
199 if (serviceInfo == null) {
203 final XmlResourceParser parser = serviceInfo.loadXmlMetaData(
208 serviceInfo.packageName, serviceInfo.name,
  /packages/apps/Settings/src/com/android/settings/location/
SettingsInjector.java 25 import android.content.pm.ServiceInfo;
157 ServiceInfo si = service.serviceInfo;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
nspapi.h 244 SERVICE_INFOA ServiceInfo;
249 SERVICE_INFOW ServiceInfo;
scesvc.h 102 typedef SCESTATUS (*PF_UpdateService)(PSCESVC_CALLBACK_INFO pSceCbInfo,PSCESVC_CONFIGURATION_INFO ServiceInfo);
  /external/jmdns/src/javax/jmdns/impl/
DNSEntry.java 13 import javax.jmdns.ServiceInfo.Fields;
ServiceInfoImpl.java 28 import javax.jmdns.ServiceInfo;
42 public class ServiceInfoImpl extends ServiceInfo implements DNSListener, DNSStatefulObject {
70 public void textValueUpdated(ServiceInfo target, byte[] value);
125 * @see javax.jmdns.ServiceInfo#create(String, String, int, int, int, String)
148 * @see javax.jmdns.ServiceInfo#create(String, String, int, int, int, Map)
163 * @see javax.jmdns.ServiceInfo#create(String, String, int, int, int, byte[])
210 ServiceInfoImpl(ServiceInfo info) {
438 * @see javax.jmdns.ServiceInfo#getServer()
537 * @see javax.jmdns.ServiceInfo#getInetAddresses()
549 * @see javax.jmdns.ServiceInfo#getInet4Addresses(
    [all...]
  /frameworks/base/core/java/android/content/pm/
AppsQueryHelper.java 142 ServiceInfo serviceInfo = resolveInfos.get(i).serviceInfo;
143 if (systemAppsOnly && !serviceInfo.applicationInfo.isSystemApp()) {
146 if (!result.contains(serviceInfo.packageName)) {
147 result.add(serviceInfo.packageName);
IPackageManager.aidl 47 import android.content.pm.ServiceInfo;
89 ServiceInfo getServiceInfo(in ComponentName className, int flags, int userId);
  /frameworks/base/services/core/java/com/android/server/content/
SyncManager.java 680 for (RegisteredServicesCache.ServiceInfo<SyncAdapterType> service
724 RegisteredServicesCache.ServiceInfo<SyncAdapterType> syncAdapterInfo =
    [all...]
  /frameworks/base/core/java/android/nfc/cardemulation/
ApduServiceInfo.java 23 import android.content.pm.ServiceInfo;
125 ServiceInfo si = info.serviceInfo;
268 return new ComponentName(mService.serviceInfo.packageName,
269 mService.serviceInfo.name);
392 res = pm.getResourcesForApplication(mService.serviceInfo.packageName);
  /frameworks/base/test-runner/src/android/test/mock/
MockPackageManager.java 45 import android.content.pm.ServiceInfo;
180 public ServiceInfo getServiceInfo(ComponentName className, int flags)
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
BridgePackageManager.java 44 import android.content.pm.ServiceInfo;
165 public ServiceInfo getServiceInfo(ComponentName component, int flags)
  /packages/apps/Nfc/src/com/android/nfc/cardemulation/
RegisteredServicesCache.java 31 import android.content.pm.ServiceInfo;
240 ServiceInfo si = resolvedService.serviceInfo;
303 ApduServiceInfo serviceInfo = userServices.services.get(component);
304 if (serviceInfo == null || (serviceInfo.getUid() != dynamicAids.uid)) {
309 serviceInfo.setOrReplaceDynamicAidGroup(group);
451 ApduServiceInfo serviceInfo = getService(userId, componentName);
452 if (serviceInfo == null) {
456 if (serviceInfo.getUid() != uid)
    [all...]
  /packages/apps/Settings/src/com/android/settings/applications/
ProcessStatsDetail.java 30 import android.content.pm.ServiceInfo;
366 ServiceInfo serviceInfo = getPackageManager().getServiceInfo(
368 if (serviceInfo.labelRes != 0) {
369 return serviceInfo.loadLabel(getPackageManager());
  /packages/apps/Settings/src/com/android/settings/notification/
SoundSettings.java 28 import android.content.pm.ServiceInfo;
310 final ServiceInfo info = pm.getServiceInfo(suppressor, 0);
  /packages/services/Car/service/src/com/android/car/pm/
CarPackageManagerService.java 29 import android.content.pm.ServiceInfo;
412 ServiceInfo serviceInfo = resolveInfo.serviceInfo;
413 if (serviceInfo == null) {
416 if (serviceInfo.isEnabled()) {
418 serviceInfo.packageName) != PackageManager.PERMISSION_GRANTED) {
421 Log.i(CarLog.TAG_PACKAGE, "found policy holding service:" + serviceInfo);
423 serviceInfo);
  /frameworks/base/services/core/java/com/android/server/notification/
ZenModeHelper.java 34 import android.content.pm.ServiceInfo;
282 ServiceInfo owner = getServiceInfo(automaticZenRule.getOwner());
415 private ServiceInfo getServiceInfo(ComponentName owner) {
425 ServiceInfo info = resolveInfo.serviceInfo;
    [all...]
  /frameworks/base/media/java/android/media/tv/
TvInputInfo.java 29 import android.content.pm.ServiceInfo;
316 public ServiceInfo getServiceInfo() {
317 return mService.serviceInfo;
325 return new ComponentName(mService.serviceInfo.packageName, mService.serviceInfo.name);
334 intent.setClassName(mService.serviceInfo.packageName, mSetupActivity);
347 intent.setClassName(mService.serviceInfo.packageName, mSettingsActivity);
452 return context.getPackageManager().getText(mService.serviceInfo.packageName,
569 + ", pkg=" + mService.serviceInfo.packageName
570 + ", service=" + mService.serviceInfo.name + "}"
    [all...]
  /frameworks/base/services/core/java/com/android/server/am/
ServiceRecord.java 33 import android.content.pm.ServiceInfo;
71 final ServiceInfo serviceInfo;
79 final boolean exported; // from ServiceInfo.exported
313 Intent.FilterComparison intent, ServiceInfo sInfo, boolean callerIsFg,
320 serviceInfo = sInfo;
337 if ((serviceInfo.applicationInfo.flags&ApplicationInfo.FLAG_PERSISTENT) == 0) {
338 tracker = ams.mProcessStats.getServiceStateLocked(serviceInfo.packageName,
339 serviceInfo.applicationInfo.uid, serviceInfo.applicationInfo.versionCode
    [all...]
  /packages/apps/Settings/src/com/android/settings/accessibility/
AccessibilitySettings.java 24 import android.content.pm.ServiceInfo;
476 ServiceInfo serviceInfo = info.getResolveInfo().serviceInfo;
477 ComponentName componentName = new ComponentName(serviceInfo.packageName,
478 serviceInfo.name);
493 String packageName = serviceInfo.packageName;
498 getActivity(), serviceInfo.packageName, UserHandle.myUserId());
530 new ComponentName(info.getResolveInfo().serviceInfo.packageName,
688 ServiceInfo serviceInfo = service.getResolveInfo().serviceInfo
    [all...]
  /packages/services/Telecomm/src/com/android/server/telecom/
InCallController.java 26 import android.content.pm.ServiceInfo;
    [all...]
  /packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
InCallControllerTests.java 27 import android.content.pm.ServiceInfo;
469 serviceInfo = new ServiceInfo();
470 serviceInfo.packageName = DEF_PKG;
471 serviceInfo.name = DEF_CLASS;
472 serviceInfo.permission = Manifest.permission.BIND_INCALL_SERVICE;
473 serviceInfo.metaData = new Bundle();
474 serviceInfo.metaData.putBoolean(
477 serviceInfo.metaData.putBoolean(
485 serviceInfo = new ServiceInfo()
    [all...]

Completed in 826 milliseconds

1 2 34 5 6 7