HomeSort by relevance Sort by last modified time
    Searched full:account (Results 426 - 450 of 4748) sorted by null

<<11121314151617181920>>

  /packages/apps/Dialer/java/com/android/voicemail/impl/sync/
OmtpVvmSyncService.java 82 VvmLog.v(TAG, "Sync requested: " + action + " - for account: " + phoneAccount);
93 VvmLog.v(TAG, "Sync requested for disabled account");
222 private boolean syncAll(String action, ImapHelper imapHelper, PhoneAccountHandle account) {
227 uploadSuccess = upload(account, imapHelper);
230 downloadSuccess = download(imapHelper, account);
244 private boolean syncOne(ImapHelper imapHelper, Voicemail voicemail, PhoneAccountHandle account) {
245 if (shouldPerformPrefetch(account, imapHelper)) {
247 new VoicemailFetchedCallback(mContext, voicemail.getUri(), account);
284 private boolean download(ImapHelper imapHelper, PhoneAccountHandle account) {
286 List<Voicemail> localVoicemails = mQueryHelper.getAllVoicemails(account);
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
MailActivity.java 46 import com.android.mail.providers.Account;
84 * The account name currently in use. Used to construct the NFC mailto: message. This needs
85 * to be static since the {@link ComposeActivity} needs to statically change the account name
96 * send an email to the current account.
111 private static NdefMessage getMailtoNdef(String account) {
114 accountBytes = URLEncoder.encode(account, "UTF-8").getBytes("UTF-8");
116 accountBytes = account.getBytes();
239 * email to the account provided as the argument. This message is to be shared with
243 * @param account The email address to send mail to.
245 public static void setNfcMessage(String account) {
    [all...]
FolderListFragment.java 53 import com.android.mail.providers.Account;
82 * Tapping on Accounts takes the user to the default Inbox for that account. Tapping on
99 * any folder for a given account.
114 /** URI that points to the list of folders for the current account. */
125 * True if the folder list belongs to a folder selection activity (one account only)
148 /** Loader id for the list of all folders in the account */
184 /** Listen for account changes. */
186 /** Listen to changes to selected folder or account */
199 /** The current account according to the controller */
200 protected Account mCurrentAccount
    [all...]
  /bionic/tools/bionicbb/
README.md 35 for a Jenkins account that has the appropriate permissions to launch the jobs
38 You will also need to add the HTTP password for the buildbot's Gerrit account to
55 Bionicbb polls a gmail account to find changes that need to be built. The gmail
56 account needs to have a gerrit account set up with project watches on anything
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/telecom/
OutgoingCallTestActivity.java 68 PhoneAccount account = PhoneAccountUtils.getPhoneAccount(this);
69 if (account != null) {
87 PhoneAccount account = PhoneAccountUtils.getPhoneAccount(this);
90 if (account != null && account.isEnabled() &&
  /frameworks/base/core/java/android/content/
SyncActivityTooManyDeletes.java 20 import android.accounts.Account;
42 private Account mAccount;
57 mAccount = (Account) extras.getParcelable("account");
91 // TODO: consider displaying the icon of the account type
ContentResolver.java 19 import android.accounts.Account;
85 * {@link #requestSync(android.accounts.Account, String, android.os.Bundle)}
88 public static final String SYNC_EXTRAS_ACCOUNT = "account";
170 * the given account/authority pair. One required initialization step is to
171 * ensure that {@link #setIsSyncable(android.accounts.Account, String, int)} has been
2166 Account account = null; local
    [all...]
SyncRequest.java 19 import android.accounts.Account;
31 /** Account to pass to the sync adapter. Can be null. */
32 private final Account mAccountToSync;
76 * @return account object for this sync.
80 public Account getAccount() {
240 * The Account object that together with an Authority name define the SyncAdapter (if
243 private Account mAccount;
245 * The Authority name that together with an Account define the SyncAdapter (if
283 * {@link ContentResolver#getPeriodicSyncs(Account account, String provider)}, so n
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbapclient/
PhonebookPullRequest.java 20 import android.accounts.Account;
50 private final Account mAccount;
54 public PhonebookPullRequest(Context context, Account account) {
56 mAccount = account;
  /packages/apps/Calendar/src/com/android/calendar/
CalendarSettingsActivity.java 19 import android.accounts.Account;
38 private Account[] mAccounts;
46 Account[] accounts = AccountManager.get(this).getAccounts();
50 Account acct = accounts[i];
124 Account[] accounts = AccountManager.get(CalendarSettingsActivity.this).getAccounts();
  /packages/apps/Contacts/src/com/android/contacts/editor/
RawContactDeltaComparator.java 24 import com.android.contacts.model.account.AccountType;
25 import com.android.contacts.model.account.GoogleAccountType;
62 // Check account type. Sort Google before non-Google.
106 // Check account name
120 // Both are in the same account, fall back to contact ID
  /packages/apps/Contacts/src/com/android/contacts/util/
AccountsListAdapter.java 29 import com.android.contacts.model.account.AccountInfo;
30 import com.android.contacts.model.account.AccountWithDataSet;
37 * List-Adapter for Account selection
53 * @param currentAccount the Account currently selected by the user, which should come
65 // If it's not empty use the previous "current" account (the first one in the list)
  /packages/apps/Settings/src/com/android/settings/accounts/
AccountDetailDashboardFragment.java 18 import android.accounts.Account;
42 private static final String METADATA_IA_ACCOUNT = "com.android.settings.ia.account";
44 public static final String KEY_ACCOUNT = "account";
52 Account mAccount;
93 return MetricsEvent.ACCOUNT;
AddAccountSettings.java 44 * Entry point Activity for account setup. Works as follows
48 * 2) After receiving an account type from ChooseAccountActivity, this Activity launches the
49 * account setup specified by AccountManager.
50 * 3) After the account setup, this Activity finishes without showing anything.
55 * would see the list of account types when leaving this Activity, since the UI is already ready
56 * when returning from each account setup, which doesn't look good.
114 if (Log.isLoggable(TAG, Log.VERBOSE)) Log.v(TAG, "account added: " + bundle);
145 // We aren't allowed to add an account.
152 // We already called add account - maybe the callback was lost.
194 // Go to account setup screen. finish() is called inside mCallback
    [all...]
  /packages/apps/Settings/src/com/android/settings/dashboard/
SupportFragment.java 19 import android.accounts.Account;
112 // Monitor account change.
128 // Stop monitor account change.
141 public void onAccountsUpdated(Account[] accounts) {
142 // Account changed, update support items.
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/accounts/
AddAccountWithTypeActivity.java 43 "com.google.android.gms.common.account.CHOOSE_ACCOUNT_TYPE";
52 Log.e(TAG, "Failed to retrieve add account intent from authenticator");
58 Log.e(TAG, "Failed to get add account intent: ", e);
82 // User selected an account type, so kick off the add account flow for that.
  /packages/apps/UnifiedEmail/src/com/android/mail/compose/
ComposeActivity.java 96 import com.android.mail.providers.Account;
302 protected Account mAccount;
345 private Account[] mAccounts;
373 public static void editDraft(Context launcher, Account account, Message message) {
374 launch(launcher, account, message, EDIT_DRAFT, null, null, null, null,
381 public static void compose(Context launcher, Account account) {
382 launch(launcher, account, null, COMPOSE, null, null, null, null, null /* extraValues */);
388 public static void composeToAddress(Context launcher, Account account, String toAddress)
542 final Account account; local
796 Account account = null; local
2290 String account = accountName; local
    [all...]
  /packages/apps/Email/res/values-nl/
strings.xml 53 <string name="accounts_welcome" msgid="7230367425520242593">"Uw account instellen binnen enkele stappen."</string>
65 <string name="account_duplicate_dlg_title" msgid="3768813340753269695">"Dubbel account"</string>
66 <string name="account_duplicate_dlg_message_fmt" msgid="6747351773934787126">"U gebruikt deze gebruikersnaam al voor het account \'<xliff:g id="DUPLICATE">%s</xliff:g>\'."</string>
70 <string name="account_setup_creating_account_msg" msgid="2898648422471181490">"Account maken?"</string>
72 <string name="account_setup_ab_instructions_format" msgid="6223657094843768202">"U heeft aangegeven dat <xliff:g id="EMAIL">%1$s</xliff:g> <xliff:g id="USERPROTOCOL">%2$s</xliff:g> gebruikt, maar het account gebruikt mogelijk <xliff:g id="PROVIDERPROTOCOL">%3$s</xliff:g>"</string>
73 <string name="account_setup_names_headline" msgid="2031978210683887370">"Uw account is ingesteld."</string>
74 <string name="account_setup_names_account_name_label" msgid="3487538709712378441">"Geef dit account een naam (optioneel)"</string>
77 <string name="account_setup_account_type_instructions" msgid="968088954656738617">"Welk type account is dit?"</string>
117 <string name="account_setup_options_sync_contacts_label" msgid="5029046373980454714">"Contacten van dit account synchroniseren"</string>
118 <string name="account_setup_options_sync_calendar_label" msgid="303441956432308807">"Agenda van dit account synchroniseren"</string
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/widget/
SelectPhoneAccountDialogFragment.java 51 * the choice to set the phone account as default.
72 * @param listener The listener for the results of the account selection.
88 * @param listener The listener for the results of the account selection.
247 PhoneAccount account = mTelecomManager.getPhoneAccount(accountHandle); local
248 if (account == null) {
251 holder.labelTextView.setText(account.getLabel());
252 if (account.getAddress() == null ||
253 TextUtils.isEmpty(account.getAddress().getSchemeSpecificPart())) {
259 account.getAddress().getSchemeSpecificPart()));
261 holder.imageView.setImageDrawable(PhoneAccountCompat.createIconDrawable(account,
    [all...]
  /packages/apps/Dialer/java/com/android/contacts/common/widget/
SelectPhoneAccountDialogFragment.java 51 * the choice to set the phone account as default.
73 * @param listener The listener for the results of the account selection.
91 * @param listener The listener for the results of the account selection.
268 PhoneAccount account = local
270 if (account == null) {
273 holder.labelTextView.setText(account.getLabel());
274 if (account.getAddress() == null
275 || TextUtils.isEmpty(account.getAddress().getSchemeSpecificPart())) {
281 account.getAddress().getSchemeSpecificPart()));
284 PhoneAccountCompat.createIconDrawable(account, getContext()))
    [all...]
  /packages/services/Telephony/src/com/android/services/telephony/
TelecomAccountRegistry.java 103 * Registers the specified account with Telecom as a PhoneAccountHandle.
108 // Build the Phone account handle.
113 // Populate the phone account data.
244 // Check to see if the newly registered account should replace the old account.
258 Log.i(this, "Adding Merged Account with group: " + Log.pii(groupId));
261 PhoneAccount account = PhoneAccount.builder(phoneAccountHandle, label) local
275 // Register with Telecom and put into the account entry.
276 mTelecomManager.registerPhoneAccount(account);
278 return account;
    [all...]
  /external/robolectric/v3/runtime/
android-all-4.3_r2-robolectric-0.jar 
  /prebuilts/misc/common/robolectric/lib/
android-all-4.3_r2-robolectric-0.jar 
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
BaseContactsProvider2Test.java 23 import android.accounts.Account;
106 protected Account mAccount = new Account("account1", "account type1");
107 protected Account mAccountTwo = new Account("account2", "account type2");
111 protected final static Account NO_ACCOUNT = new Account("a", "b");
175 protected Uri setCallerIsSyncAdapter(Uri uri, Account account)
    [all...]
  /cts/tests/tests/telecom/src/android/telecom/cts/
DataObjectUnitTests.java 59 PhoneAccount account = PhoneAccount.builder( local
69 assertNotNull(account);
70 assertEquals(accountHandle, account.getAccountHandle());
71 assertEquals(tel, account.getAddress());
72 assertEquals(tel, account.getSubscriptionAddress());
73 assertEquals(PhoneAccount.CAPABILITY_CALL_PROVIDER, account.getCapabilities());
74 assertEquals(Color.RED, account.getHighlightColor());
75 assertEquals(ACCOUNT_LABEL, account.getShortDescription());
76 assertEquals(ACCOUNT_LABEL, account.getLabel());
77 assertEquals(Arrays.asList("tel"), account.getSupportedUriSchemes())
    [all...]

Completed in 1260 milliseconds

<<11121314151617181920>>