Searched defs:providerName (Results 1 - 6 of 6) sorted by relevance

/packages/apps/AccountsAndSyncSettings/src/com/android/settings/
H A DProviderPreference.java37 public ProviderPreference(Context context, String accountType, Drawable icon, CharSequence providerName) { argument
41 mProviderName = providerName;
H A DAddAccountSettings.java46 ProviderEntry(CharSequence providerName, String accountType) { argument
47 name = providerName;
68 CharSequence providerName = getLabelForType(accountType);
84 mProviderList.add(new ProviderEntry(providerName, accountType));
86 if (LDEBUG) Log.v(TAG, "Skipped pref " + providerName + ": has no authority we need");
/packages/apps/IM/plugin/com/android/im/plugin/
H A DImPluginInfo.java47 public ImPluginInfo(String providerName, String packageName, argument
49 mProviderName = providerName;
/packages/apps/IM/src/com/android/im/app/
H A DDatabaseUtils.java141 * @param providerName the plugin provider name
148 String providerName, String providerFullName, String signUpUrl,
153 long providerId = Imps.Provider.getProviderIdForName(cr, providerName);
166 Log.d(TAG, "Plugin " + providerName + "(" + providerId +
170 providerId = insertProviderRow(cr, providerName, providerFullName, signUpUrl);
172 Log.d(TAG, "Plugin " + providerName + "(" + providerId +
213 private static long insertProviderRow(ContentResolver cr, String providerName, argument
216 values.put(Imps.Provider.NAME, providerName);
147 updateProviderDb(ContentResolver cr, String providerName, String providerFullName, String signUpUrl, Map<String, String> config) argument
H A DImPluginHelper.java98 String providerName = null;
103 providerName = metaData.getString(ImPluginConstants.METADATA_PROVIDER_NAME);
107 if (TextUtils.isEmpty(providerName) || TextUtils.isEmpty(providerFullName)) {
112 if (isPluginDuplicated(providerName)) {
121 ImPluginInfo pluginInfo = new ImPluginInfo(providerName, serviceInfo.packageName,
142 private boolean isPluginDuplicated(String providerName) { argument
144 if (plugin.mProviderName.equals(providerName)) {
/packages/apps/IM/src/com/android/im/provider/
H A DImps.java94 public static final long getProviderIdForName(ContentResolver cr, String providerName) { argument
96 selectionArgs[0] = providerName;

Completed in 226 milliseconds