/frameworks/base/core/java/android/app/admin/ |
D | AccountTypePolicyKey.java | 49 private final String mAccountType; field in AccountTypePolicyKey 60 mAccountType = Objects.requireNonNull((accountType)); in AccountTypePolicyKey() 65 mAccountType = source.readString(); in AccountTypePolicyKey() 73 mAccountType = null; in AccountTypePolicyKey() 81 return mAccountType; in getAccountType() 90 serializer.attribute(/* namespace= */ null, ATTR_ACCOUNT_TYPE, mAccountType); in saveToXml() 112 extraPolicyParams.putString(EXTRA_ACCOUNT_TYPE, mAccountType); in writeToBundle() 122 && Objects.equals(mAccountType, other.mAccountType); in equals() 127 return Objects.hash(getIdentifier(), mAccountType); in hashCode() 133 + "; mAccountType= " + mAccountType + "}"; in toString() [all …]
|
/frameworks/base/core/java/android/os/ |
D | NewUserRequest.java | 43 private final String mAccountType; field in NewUserRequest 53 mAccountType = builder.mAccountType; in NewUserRequest() 125 return mAccountType; in getAccountType() 145 + ", mAccountType='" + mAccountType + '\'' in toString() 162 private String mAccountType; field in NewUserRequest.Builder 248 mAccountType = accountType; in setAccountType() 286 if (TextUtils.isEmpty(mAccountName) != TextUtils.isEmpty(mAccountType)) { in checkIfPropertiesAreCompatible()
|
/frameworks/base/core/java/com/android/internal/app/ |
D | ConfirmUserCreationActivity.java | 49 private String mAccountType; field in ConfirmUserCreationActivity 64 mAccountType = intent.getStringExtra(UserManager.EXTRA_USER_ACCOUNT_TYPE); in onCreate() 110 final Account account = new Account(mAccountName, mAccountType); in checkUserCreationRequirements() 111 boolean accountExists = mAccountName != null && mAccountType != null in checkUserCreationRequirements() 113 | mUserManager.someUserHasSeedAccount(mAccountName, mAccountType)); in checkUserCreationRequirements() 121 && isUserPropertyWithinLimit(mAccountType, UserManager.MAX_ACCOUNT_STRING_LENGTH)) in checkUserCreationRequirements() 150 mUserManager.setSeedAccountData(user.id, mAccountName, mAccountType, mAccountOptions); in onClick()
|
/frameworks/base/services/tests/servicestests/src/com/android/server/accounts/ |
D | TestAccountType1Authenticator.java | 35 private final String mAccountType; field in TestAccountType1Authenticator 40 mAccountType = accountType; in TestAccountType1Authenticator() 64 if (!mAccountType.equals(accountType)) { in addAccount() 77 result.putString(AccountManager.KEY_ACCOUNT_TYPE, mAccountType); in addAccount() 107 if (!mAccountType.equals(account.type)) { in confirmCredentials() 147 if (!mAccountType.equals(account.type)) { in getAuthToken() 202 if (!mAccountType.equals(account.type)) { in updateCredentials() 264 if (!mAccountType.equals(accountType)) { in startAddAccountSession() 324 if (!mAccountType.equals(account.type)) { in startUpdateCredentialsSession() 377 if (!mAccountType.equals(accountType)) { in finishSession()
|
D | TestAccountType2Authenticator.java | 37 private final String mAccountType; field in TestAccountType2Authenticator 42 mAccountType = accountType; in TestAccountType2Authenticator()
|
/frameworks/base/cmds/requestsync/src/com/android/commands/requestsync/ |
D | RequestSync.java | 79 private String mAccountType; field in RequestSync 113 final Account account = mAccountName != null && mAccountType != null in run() 114 ? new Account(mAccountName, mAccountType) : null; in run() 162 mAccountType = nextArgRequired(); in parseArgs()
|
/frameworks/base/core/java/android/provider/ |
D | ContactsContract.java | 8514 private final String mAccountType; field in ContactsContract.SimAccount 8554 this.mAccountType = accountType; in SimAccount() 8570 return mAccountType; in getAccountType() 8590 return Objects.hash(mAccountName, mAccountType, mSimSlotIndex, mEfType); in hashCode() 8608 && Objects.equals(mAccountType, toCompare.mAccountType); in equals() 8614 dest.writeString(mAccountType); in writeToParcel()
|
/frameworks/base/core/java/android/accounts/ |
D | AccountManager.java | 2649 mAccountType = accountType; 2657 final String mAccountType; 2670 getAccountByTypeAndFeatures(mAccountType, mFeatures, 2695 mFuture = addAccount(mAccountType, mAuthTokenType, mFeatures,
|
/frameworks/base/services/core/java/com/android/server/accounts/ |
D | AccountManagerService.java | 3489 this, mAccountType, authTokenType, requiredFeatures, options); in addAccountAndLogMetrics() 3596 mAuthenticator.startAddAccountSession(this, mAccountType, authTokenType, in startAddAccountSession() 3702 || !mAccountType.equalsIgnoreCase(accountType)) { in onResult() 3707 sessionBundle.putString(AccountManager.KEY_ACCOUNT_TYPE, mAccountType); in onResult() 3845 mAuthenticator.finishSession(this, mAccountType, decryptedBundle); in finishSessionAsUser() 4159 mAuthenticator.editProperties(this, mAccountType); in editProperties() 4362 mAccountsOfType = getAccountsFromCache(mAccounts, mAccountType, 4959 final String mAccountType; 4999 mAccountType = accountType; 5075 Log.e(TAG, String.format(tmpl, activityName, pkgName, mAccountType)); [all …]
|
/frameworks/base/boot/hiddenapi/ |
D | hiddenapi-max-target-o.txt | 357 Landroid/accounts/AccountManager$GetAuthTokenByTypeAndFeaturesTask;->mAccountType:Ljava/lang/String;
|