Home | History | Annotate | Download | only in webkit

Lines Matching refs:serviceInfo

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);
181 Class<?> cls = getPluginClass(serviceInfo.packageName, serviceInfo.name);
187 Log.e(LOGTAG, "The plugin's class' " + serviceInfo.name + "' does not extend the appropriate class.");
192 Log.e(LOGTAG, "Can't find plugin: " + serviceInfo.packageName);
195 Log.e(LOGTAG, "Can't find plugin's class: " + serviceInfo.name);