Home | History | Annotate | Download | only in packageinstaller

Lines Matching refs:appInfo

93             ApplicationInfo appInfo, View snippetView) {
94 return initSnippetForInstalledApp(pContext, appInfo, snippetView, null);
109 ApplicationInfo appInfo, View snippetView, UserHandle user) {
111 Drawable icon = appInfo.loadIcon(pm);
117 appInfo.loadLabel(pm),
128 * @param appInfo ApplicationInfo object of package whose resources are to be loaded
165 * @param appInfo ApplicationInfo object of package whose resources are to be loaded
169 Activity pContext, ApplicationInfo appInfo, File sourceFile) {
178 if (appInfo.labelRes != 0) {
180 label = res.getText(appInfo.labelRes);
185 label = (appInfo.nonLocalizedLabel != null) ?
186 appInfo.nonLocalizedLabel : appInfo.packageName;
191 if (appInfo.icon != 0) {
193 icon = res.getDrawable(appInfo.icon);