Home
last modified time | relevance | path

Searched defs:account (Results 1 – 17 of 17) sorted by relevance

/development/samples/SampleSyncAdapter/src/com/example/android/samplesync/syncadapter/
DSyncAdapter.java67 public void onPerformSync(Account account, Bundle extras, String authority, in onPerformSync()
80 ContactManager.setAccountContactsVisibility(getContext(), account, true); in onPerformSync() local
156 private long getServerSyncMarker(Account account) { in getServerSyncMarker()
169 private void setServerSyncMarker(Account account, long marker) { in setServerSyncMarker()
/development/apps/PushApiAuthenticator/src/com/example/android/pushapiauthenticator/
DMyAccountAuthenticator.java42 public Bundle getAuthToken(AccountAuthenticatorResponse response, Account account, in getAuthToken()
47 public Bundle confirmCredentials(AccountAuthenticatorResponse response, Account account, in confirmCredentials()
60 public Bundle hasFeatures(AccountAuthenticatorResponse response, Account account, in hasFeatures()
65 public Bundle updateCredentials(AccountAuthenticatorResponse response, Account account, in updateCredentials()
/development/samples/DeviceAdminWhitelistedAccount/src/com/example/android/app/admin/whitelistedaccount/
DMyAuthenticator.java56 final Account account = new Account( in setUpAccount() local
84 public Bundle updateCredentials(AccountAuthenticatorResponse response, Account account, in updateCredentials()
90 public Bundle confirmCredentials(AccountAuthenticatorResponse response, Account account, in confirmCredentials()
96 public Bundle getAuthToken(AccountAuthenticatorResponse response, Account account, in getAuthToken()
107 public Bundle hasFeatures(AccountAuthenticatorResponse response, Account account, in hasFeatures()
/development/samples/browseable/CardEmulation/src/com.example.android.cardemulation/
DCardEmulationFragment.java46 EditText account = (EditText) v.findViewById(R.id.card_account_field); in onCreateView() local
66 String account = s.toString(); in afterTextChanged() local
67 AccountStorage.SetAccount(getActivity(), account); in afterTextChanged() local
DAccountStorage.java52 String account = prefs.getString(PREF_ACCOUNT_NUMBER, DEFAULT_ACCOUNT_NUMBER); in GetAccount() local
DCardService.java90 String account = AccountStorage.GetAccount(this); in processCommandApdu() local
/development/samples/SampleSyncAdapter/src/com/example/android/samplesync/authenticator/
DAuthenticator.java76 AccountAuthenticatorResponse response, Account account, Bundle options) { in confirmCredentials()
88 public Bundle getAuthToken(AccountAuthenticatorResponse response, Account account, in getAuthToken()
136 AccountAuthenticatorResponse response, Account account, String[] features) { in hasFeatures()
147 public Bundle updateCredentials(AccountAuthenticatorResponse response, Account account, in updateCredentials()
DAuthenticatorActivity.java173 final Account account = new Account(mUsername, Constants.ACCOUNT_TYPE); in finishConfirmCredentials() local
194 final Account account = new Account(mUsername, Constants.ACCOUNT_TYPE); in finishLogin() local
/development/samples/browseable/BasicSyncAdapter/src/com.example.android.common/accounts/
DGenericAccountService.java95 Account account, Bundle bundle) in confirmCredentials()
102 Account account, String s, Bundle bundle) in getAuthToken()
114 Account account, String s, Bundle bundle) in updateCredentials()
121 Account account, String[] strings) in hasFeatures()
/development/samples/browseable/BasicSyncAdapter/src/com.example.android.basicsyncadapter/
DSyncUtils.java53 Account account = GenericAccountService.GetAccount(ACCOUNT_TYPE); in CreateSyncAccount() local
DSyncAdapter.java135 public void onPerformSync(Account account, Bundle extras, String authority, in onPerformSync()
/development/apps/Development/src/com/android/development/
DAccountsTester.java110 Account account; field in AccountsTester.AccountArrayAdapter.ViewHolder
140 final Account account = getItem(position); in getView() local
269 final Account account = mLongPressedAccount; in onContextItemSelected() local
281 final Account account = mLongPressedAccount; in onContextItemSelected() local
452 private GetAndInvalidateAuthTokenCallback(Account account) { in GetAndInvalidateAuthTokenCallback()
DSyncAdapterDriver.java166 Account account = new Account(accountName, in startSync() local
/development/samples/browseable/CardReader/src/com.example.android.cardreader/
DCardReaderFragment.java99 public void onAccountReceived(final String account) { in onAccountReceived()
DLoyaltyCardReader.java48 public void onAccountReceived(String account); in onAccountReceived()
/development/samples/SampleSyncAdapter/src/com/example/android/samplesync/platform/
DContactManager.java60 public static long ensureSampleGroupExists(Context context, Account account) { in ensureSampleGroupExists()
105 public static synchronized long updateContacts(Context context, String account, in updateContacts()
174 public static List<RawContact> getDirtyContacts(Context context, Account account) { in getDirtyContacts()
439 public static void setAccountContactsVisibility(Context context, Account account, in setAccountContactsVisibility()
/development/samples/SampleSyncAdapter/src/com/example/android/samplesync/client/
DNetworkUtilities.java161 Account account, String authtoken, long serverSyncState, List<RawContact> dirtyContacts) in syncContacts()