OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:oldAccount
(Results
1 - 10
of
10
) sorted by null
/packages/inputmethods/LatinIME/java-overridable/src/com/android/inputmethod/latin/accounts/
AccountStateChangedListener.java
33
* @param
oldAccount
the account that was signed out of.
35
public static void onAccountSignedOut(@NonNull String
oldAccount
) {
42
* @param
oldAccount
the previous account that was being used for sign-in.
46
public static void onAccountSignedIn(@Nullable String
oldAccount
, @NonNull String newAccount) {
/packages/services/Telephony/src/com/android/phone/vvm/omtp/fetch/
FetchVoicemailReceiver.java
154
PhoneAccountHandle
oldAccount
) {
162
if (phone.getIccSerialNumber().equals(
oldAccount
.getId())) {
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/settings/
AccountsSettingsFragment.java
396
final String
oldAccount
= getSignedInAccountName();
406
AccountStateChangedListener.onAccountSignedIn(
oldAccount
, newAccount);
412
AccountStateChangedListener.onAccountSignedOut(
oldAccount
);
/packages/apps/Contacts/src/com/android/contacts/editor/
CompactContactEditorFragment.java
212
AccountWithDataSet
oldAccount
, AccountWithDataSet newAccount) {
215
rebindEditorsForNewContact(oldState,
oldAccount
, newAccount);
ContactEditorBaseFragment.java
[
all
...]
CompactRawContactsEditorView.java
106
* @param
oldAccount
Old account associated with oldState.
110
AccountWithDataSet
oldAccount
, AccountWithDataSet newAccount);
[
all
...]
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
AbstractConversationViewFragment.java
119
final Account
oldAccount
= mAccount;
122
onAccountChanged(newAccount,
oldAccount
);
230
protected abstract void onAccountChanged(Account newAccount, Account
oldAccount
);
SecureConversationViewFragment.java
222
public void onAccountChanged(Account newAccount, Account
oldAccount
) {
ConversationViewFragment.java
267
public void onAccountChanged(Account newAccount, Account
oldAccount
) {
269
if (isOverviewMode(newAccount) != isOverviewMode(
oldAccount
)) {
[
all
...]
/packages/services/Telecomm/src/com/android/server/telecom/
PhoneAccountRegistrar.java
628
PhoneAccount
oldAccount
= getPhoneAccountUnchecked(account.getAccountHandle());
629
if (
oldAccount
!= null) {
630
mState.accounts.remove(
oldAccount
);
631
isEnabled =
oldAccount
.isEnabled();
632
Log.i(this, getAccountDiffString(account,
oldAccount
));
[
all
...]
Completed in 740 milliseconds