Searched refs:accountName (Results 1 - 10 of 10) sorted by relevance

/frameworks/base/test-runner/src/android/test/
H A DSyncBaseInstrumentation.java47 protected void syncProvider(Uri uri, String accountName, String authority) throws Exception { argument
50 Account account = new Account(accountName, "com.google");
/frameworks/ex/common/java/com/android/common/content/
H A DSyncStateContentProviderHelper.java117 final String accountName = c.getString(0);
119 Account account = new Account(accountName, accountType);
122 new String[]{accountName, accountType});
/frameworks/base/core/java/android/accounts/
H A DChooseTypeAndAccountActivity.java315 String accountName = null;
319 accountName = data.getStringExtra(AccountManager.KEY_ACCOUNT_NAME);
323 if (accountName == null || accountType == null) {
332 accountName = account.name;
339 if (accountName != null || accountType != null) {
340 setResultAndFinish(accountName, accountType);
411 private void setResultAndFinish(final String accountName, final String accountType) { argument
413 bundle.putString(AccountManager.KEY_ACCOUNT_NAME, accountName);
418 + "selected account " + accountName + ", " + accountType);
H A DAccountManager.java2274 final String accountName = result.getString(KEY_ACCOUNT_NAME);
2276 if (TextUtils.isEmpty(accountName) || TextUtils.isEmpty(accountType)) {
2280 final Account account = new Account(accountName, accountType);
/frameworks/base/core/java/com/android/server/backup/
H A DAccountSyncSettingsBackupHelper.java260 String accountName = accountJSON.getString(KEY_ACCOUNT_NAME);
263 Account account = new Account(accountName, accountType);
333 String accountName = accountJSON.getString(KEY_ACCOUNT_NAME);
336 final Account account = new Account(accountName, accountType);
/frameworks/ex/common/java/com/android/common/contacts/
H A DBaseEmailAddressAdapter.java102 public String accountName; field in class:BaseEmailAddressAdapter.DirectoryPartition
130 private static final String DIRECTORY_ACCOUNT_NAME = "accountName";
384 partition.accountName = directoryCursor.getString(DirectoryListQuery.ACCOUNT_NAME);
406 if (mAccount != null && mAccount.name.equals(partition.accountName) &&
/frameworks/base/services/core/java/com/android/server/accounts/
H A DAccountManagerService.java391 final String accountName = cursor.getString(2);
394 Slog.w(TAG, "deleting account " + accountName + " because type "
402 final Account account = new Account(accountName, accountType);
412 accountNames.add(accountName);
421 for (String accountName : accountNames) {
422 accountsForType[i] = new Account(accountName, accountType);
1463 String accountName = cursor.getString(1);
1469 new Account(accountName, accountType),
1777 false /* stripAuthTokenFromResult */, null /* accountName */,
2166 true /* stripAuthTokenFromResult */, null /* accountName */,
2902 Session(UserAccounts accounts, IAccountManagerResponse response, String accountType, boolean expectActivityLaunch, boolean stripAuthTokenFromResult, String accountName, boolean authDetailsRequired) argument
2909 Session(UserAccounts accounts, IAccountManagerResponse response, String accountType, boolean expectActivityLaunch, boolean stripAuthTokenFromResult, String accountName, boolean authDetailsRequired, boolean updateLastAuthenticatedTime) argument
3822 isAccountPresentForCaller(String accountName, String accountType) argument
[all...]
/frameworks/opt/chips/src/com/android/ex/chips/
H A DBaseRecipientAdapter.java99 public String accountName; field in class:BaseRecipientAdapter.DirectorySearchParams
652 params.accountName = directoryCursor.getString(DirectoryListQuery.ACCOUNT_NAME);
672 if (account != null && account.name.equals(params.accountName) &&
/frameworks/base/services/core/java/com/android/server/content/
H A DSyncStorageEngine.java2035 String accountName = parser.getAttributeValue(null, "account");
2048 + " account=" + accountName
2062 if (accountName != null && authorityName != null) {
2064 new Account(accountName, accountType),
2099 + accountName + " auth=" + authorityName
2310 String accountName = c.getString(c.getColumnIndex("account"));
2319 new EndPoint(new Account(accountName, accountType),
/frameworks/base/core/java/android/content/
H A DContentResolver.java1784 String accountName = extras.getString(SYNC_EXTRAS_ACCOUNT);
1785 if (!TextUtils.isEmpty(accountName)) {
1786 account = new Account(accountName, "com.google");

Completed in 1395 milliseconds