Searched refs:mAccountName (Results 1 – 4 of 4) sorted by relevance
/frameworks/base/core/java/com/android/internal/app/ |
D | ConfirmUserCreationActivity.java | 46 private String mAccountName; field in ConfirmUserCreationActivity 58 mAccountName = intent.getStringExtra(UserManager.EXTRA_USER_ACCOUNT_NAME); in onCreate() 104 final Account account = new Account(mAccountName, mAccountType); in checkUserCreationRequirements() 105 boolean accountExists = mAccountName != null && mAccountType != null in checkUserCreationRequirements() 107 | mUserManager.someUserHasSeedAccount(mAccountName, mAccountType)); in checkUserCreationRequirements() 117 message = getString(R.string.user_creation_account_exists, appName, mAccountName); in checkUserCreationRequirements() 119 message = getString(R.string.user_creation_adding, appName, mAccountName); in checkUserCreationRequirements() 135 mUserManager.setSeedAccountData(user.id, mAccountName, mAccountType, mAccountOptions); in onClick()
|
/frameworks/base/core/java/com/android/internal/widget/ |
D | AccountItemView.java | 39 private TextView mAccountName; field in AccountItemView 63 mAccountName = (TextView)view.findViewById(android.R.id.title); in initViewItem() 87 setText(mAccountName, name); in setAccountName()
|
/frameworks/base/cmds/requestsync/src/com/android/commands/requestsync/ |
D | RequestSync.java | 78 private String mAccountName; field in RequestSync 113 final Account account = mAccountName != null && mAccountType != null in run() 114 ? new Account(mAccountName, mAccountType) : null; in run() 160 mAccountName = nextArgRequired(); in parseArgs()
|
/frameworks/base/services/core/java/com/android/server/accounts/ |
D | AccountManagerService.java | 4698 final String mAccountName; 4735 mAccountName = accountName; 4928 boolean accountPresent = isAccountPresentForCaller(mAccountName, mAccountType); 4930 updateLastAuthenticatedTime(new Account(mAccountName, mAccountType)); 4937 new Account(mAccountName, mAccountType));
|