Searched defs:componentInfo (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/android/content/pm/
H A DPackageUserState.java127 public boolean isMatch(ComponentInfo componentInfo, int flags) { argument
128 final boolean isSystemApp = componentInfo.applicationInfo.isSystemApp();
132 if (!isEnabled(componentInfo, flags)) return false;
141 && !componentInfo.directBootAware;
143 && componentInfo.directBootAware;
150 public boolean isEnabled(ComponentInfo componentInfo, int flags) { argument
166 if (!componentInfo.applicationInfo.enabled) {
175 if (ArrayUtils.contains(this.enabledComponents, componentInfo.name)) {
178 if (ArrayUtils.contains(this.disabledComponents, componentInfo.name)) {
182 return componentInfo
[all...]
H A DRegisteredServicesCache.java303 public final ComponentInfo componentInfo; field in class:RegisteredServicesCache.ServiceInfo
308 public ServiceInfo(V type, ComponentInfo componentInfo, ComponentName componentName) { argument
310 this.componentInfo = componentInfo;
312 this.uid = (componentInfo != null) ? componentInfo.applicationInfo.uid : -1;
368 long versionCode = service.componentInfo.applicationInfo.versionCode;
369 String pkg = service.componentInfo.packageName;
/frameworks/base/services/core/java/com/android/server/pm/
H A DSettings.java4269 boolean isEnabledAndMatchLPr(ComponentInfo componentInfo, int flags, int userId) { argument
4270 final PackageSetting ps = mPackages.get(componentInfo.packageName);
4274 return userState.isMatch(componentInfo, flags);

Completed in 94 milliseconds