Home
last modified time | relevance | path

Searched refs:sInfo (Results 1 – 8 of 8) sorted by relevance

/frameworks/base/services/tests/mockingservicestests/src/com/android/server/am/
DServiceBindingOomAdjPolicyTest.java588 final ServiceInfo sInfo = new ServiceInfo(); in makeServiceInfo() local
589 sInfo.name = serviceName; in makeServiceInfo()
590 sInfo.processName = packageName; in makeServiceInfo()
591 sInfo.packageName = packageName; in makeServiceInfo()
592 sInfo.applicationInfo = new ApplicationInfo(); in makeServiceInfo()
593 sInfo.applicationInfo.uid = packageUid; in makeServiceInfo()
594 sInfo.applicationInfo.packageName = packageName; in makeServiceInfo()
595 sInfo.exported = true; in makeServiceInfo()
596 return sInfo; in makeServiceInfo()
/frameworks/base/services/core/java/com/android/server/am/
DComponentAliasResolver.java437 ServiceInfo sInfo = rInfo != null ? rInfo.serviceInfo : null; in resolveService()
438 if (sInfo == null) { in resolveService()
441 return new ComponentName(sInfo.applicationInfo.packageName, sInfo.name); in resolveService()
DActiveServices.java881 static String getProcessNameForService(ServiceInfo sInfo, ComponentName name, in getProcessNameForService() argument
888 if ((sInfo.flags & ServiceInfo.FLAG_ISOLATED_PROCESS) == 0 in getProcessNameForService()
889 || (inPrivateSharedIsolatedProcess && !isDefaultProcessService(sInfo))) { in getProcessNameForService()
892 return sInfo.processName; in getProcessNameForService()
899 return sInfo.processName + ":" + name.getClassName(); in getProcessNameForService()
4804 final ServiceInfo sInfo = new ServiceInfo(); in retrieveServiceLocked() local
4823 sInfo.applicationInfo = aInfo; in retrieveServiceLocked()
4824 sInfo.packageName = aInfo.packageName; in retrieveServiceLocked()
4825 sInfo.mForegroundServiceType = fgsDelegateOptions.mForegroundServiceTypes; in retrieveServiceLocked()
4826 sInfo.processName = aInfo.processName; in retrieveServiceLocked()
[all …]
DServiceRecord.java1136 Intent.FilterComparison intent, ServiceInfo sInfo, boolean callerIsFg, in ServiceRecord() argument
1138 this(ams, name, instanceName, definingPackageName, definingUid, intent, sInfo, callerIsFg, in ServiceRecord()
1139 restarter, sInfo.processName, INVALID_UID, null, false); in ServiceRecord()
1144 Intent.FilterComparison intent, ServiceInfo sInfo, boolean callerIsFg, in ServiceRecord() argument
1154 serviceInfo = sInfo; in ServiceRecord()
1155 appInfo = sInfo.applicationInfo; in ServiceRecord()
1156 packageName = sInfo.applicationInfo.packageName; in ServiceRecord()
1162 permission = sInfo.permission; in ServiceRecord()
1163 exported = sInfo.exported; in ServiceRecord()
/frameworks/native/headers/media_plugin/media/hardware/
DHardwareAPI.h496 HDRStaticInfo sInfo; // IN/OUT member
/frameworks/av/media/libstagefright/omx/
DSoftVideoDecoderOMXComponent.cpp600 hdrStaticInfoParams->sInfo = mHdrStaticInfo; in getConfig()
693 mHdrStaticInfo = hdrStaticInfoParams->sInfo; in internalSetConfig()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ims/
DImsResolverTest.java2276 ImsResolver.ImsServiceInfo sInfo) { in isImsServiceInfoEqual() argument
2277 if (!Objects.equals(sInfo.name, name)) { in isImsServiceInfoEqual()
2283 if (!sInfo.getSupportedFeatures().contains( in isImsServiceInfoEqual()
2290 if (!sInfo.getSupportedFeatures().contains( in isImsServiceInfoEqual()
2297 if (!sInfo.getSupportedFeatures().contains( in isImsServiceInfoEqual()
/frameworks/av/media/libstagefright/
DACodec.cpp3941 HDRStaticInfo *info = &params.sInfo; in setHDRStaticInfoForVideoCodec()
3943 setHDRStaticInfoIntoFormat(params.sInfo, outputFormat); in setHDRStaticInfoForVideoCodec()
4013 setHDRStaticInfoIntoFormat(params.sInfo, format); in getHDRStaticInfoForVideoCodec()
4042 const HDRStaticInfo *info = &params.sInfo; in setHDRStaticInfo()