HomeSort by relevance Sort by last modified time
    Searched refs:authorities (Results 1 - 25 of 38) sorted by null

1 2

  /frameworks/base/core/java/com/android/server/backup/
AccountSyncSettingsBackupHelper.java 75 private static final String KEY_ACCOUNT_AUTHORITIES = "authorities";
131 // Create a map of Account types to authorities. Later this will make it easier for us to
153 List<String> authorities = accountTypeToAuthorities.get(account.type); local
155 // We ignore Accounts that don't have any authorities because there would be no sync
157 if (authorities == null || authorities.isEmpty()) {
165 // Add authorities for this Account type and check whether or not sync is enabled.
167 for (String authority : authorities) {
396 // Restore authorities.
397 JSONArray authorities = accountJSON.getJSONArray(KEY_ACCOUNT_AUTHORITIES) local
    [all...]
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/accounts/
AuthenticatorHelper.java 71 // authorities are initialized
257 ArrayList<String> authorities = mAccountTypeToAuthorities.get(sa.accountType); local
258 if (authorities == null) {
259 authorities = new ArrayList<String>();
260 mAccountTypeToAuthorities.put(sa.accountType, authorities);
266 authorities.add(sa.authority);
  /packages/apps/Settings/src/com/android/settings/accounts/
ChooseAccountActivity.java 141 // Skip preferences for authorities not specified. If no authorities specified,
197 Log.v(TAG, "No providers found for authorities: " + auths);
211 ArrayList<String> authorities = mAccountTypeToAuthorities.get(sa.accountType); local
212 if (authorities == null) {
213 authorities = new ArrayList<String>();
214 mAccountTypeToAuthorities.put(sa.accountType, authorities);
220 authorities.add(sa.authority);
AddAccountSettings.java 216 final String[] authorities = local
221 if (authorities != null) {
222 intent.putExtra(AccountPreferenceBase.AUTHORITIES_FILTER_KEY, authorities);
ManageAccountsSettings.java 221 // For all available sync authorities, sync those that are enabled for the account
285 final ArrayList<String> authorities = accountPref.getAuthorities(); local
287 if (authorities != null) {
288 for (String authority : authorities) {
AccountSyncSettings.java 594 ArrayList<SyncAdapterType> authorities = new ArrayList<>(); local
604 authorities.add(sa);
616 for (int j = 0, m = authorities.size(); j < m; j++) {
617 final SyncAdapterType syncAdapter = authorities.get(j);
  /packages/apps/Settings/src/com/android/settings/
AccountPreference.java 46 ArrayList<String> authorities, boolean showTypeIcon) {
49 mAuthorities = authorities;
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/accounts/
AccountSyncFragment.java 347 ArrayList<String> authorities = new ArrayList<>(syncAdapters.length); local
356 authorities.add(sa.authority);
365 final List<Preference> switches = new ArrayList<>(authorities.size());
370 for (final String authority : authorities) {
  /sdk/eclipse/scripts/
_mk_icons.sh 31 icon A green authorities
  /system/netd/tests/
dns_responder.cpp 374 std::vector<DNSRecord> authorities; member in struct:test::DNSHeader
428 authorities.resize(nscount);
430 cur = authorities[i].read(cur, buffer_end);
465 header.nscount = htons(authorities.size());
476 for (const DNSRecord& authority : authorities) {
830 header->authorities.clear();
  /frameworks/base/core/java/android/content/
ContentProvider.java 729 * Change the authorities of the ContentProvider.
733 * @param authorities the semi-colon separated authorities of the ContentProvider.
735 protected final void setAuthorities(String authorities) {
736 if (authorities != null) {
737 if (authorities.indexOf(';') == -1) {
738 mAuthority = authorities;
742 mAuthorities = authorities.split(";");
    [all...]
IntentFilter.java 72 * To specify a path, you also must specify both one or more authorities and
1308 final ArrayList<AuthorityEntry> authorities = mDataAuthorities; local
    [all...]
  /cts/tests/tests/content/src/android/content/cts/
IntentFilterTest.java     [all...]
  /frameworks/base/services/core/java/com/android/server/content/
SyncStorageEngine.java 153 final HashMap<String, AuthorityInfo> authorities = field in class:SyncStorageEngine.AccountInfo
353 // Primary list of all syncable authorities. Also our global lock.
751 for (AuthorityInfo authorityInfo : accountInfo.authorities.values()) {
772 for (AuthorityInfo authorityInfo : accountInfo.authorities.values()) {
    [all...]
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
BaseActivity.java 425 List<String> authorities = new ArrayList<>(); local
433 authorities.add(provider.authority);
439 return authorities;
  /frameworks/base/services/core/java/com/android/server/
IntentResolver.java 742 int authorities = filter.countDataAuthorities(); local
743 for (int z = 0; z < authorities; z++) {
  /libcore/benchmarks/src/benchmarks/regression/
R.java 1367 public static final int authorities = 0; field in class:R
    [all...]
  /external/robolectric/v3/
robolectric-resources-3.1-SNAPSHOT.jar 
  /external/robolectric/v3/runtime/
android-all-4.1.2_r1-robolectric-0.jar 
android-all-4.2.2_r1.2-robolectric-0.jar 
android-all-4.3_r2-robolectric-0.jar 
  /external/libgdx/backends/gdx-backend-android/libs/
android-4.4.jar 
  /external/robolectric/v1/lib/main/
android.jar 
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 

Completed in 1621 milliseconds

1 2