HomeSort by relevance Sort by last modified time
    Searched refs:mAccountId (Results 1 - 25 of 39) sorted by null

1 2

  /frameworks/base/drm/java/android/drm/
ProcessedData.java 29 private String mAccountId = "_NO_USER";
40 mAccountId = accountId;
52 mAccountId = accountId;
71 return mAccountId;
DrmRights.java 43 private String mAccountId;
67 mAccountId = accountId;
82 mAccountId = accountId;
124 mAccountId = data.getAccountId();
159 return mAccountId;
  /frameworks/av/drm/common/
DrmRights.cpp 25 mAccountId(accountId),
39 mAccountId(accountId),
57 return mAccountId;
  /packages/apps/Email/src/com/android/email/activity/
MailboxFinder.java 51 private final long mAccountId;
80 mAccountId = accountId;
130 if (mClosed || (accountId != mAccountId)) {
137 mCallback.onMailboxNotFound(mAccountId);
175 if (Account.isSecurityHold(mContext, mAccountId)) {
181 long mailboxId = Mailbox.findMailboxOfType(mContext, mAccountId, mMailboxType);
188 final boolean accountExists = Account.isValidId(mContext, mAccountId);
208 mCallback.onAccountSecurityHold(mAccountId);
224 mCallback.onMailboxNotFound(mAccountId);
234 mCallback.onMailboxFound(mAccountId, mailboxId)
    [all...]
Welcome.java 95 private long mAccountId;
189 mAccountId = IntentUtilities.getAccountIdFromIntent(intent);
230 AccountSettings.actionSettings(this, mAccountId);
284 mInboxFinder = new MailboxFinder(this, mAccountId, Mailbox.TYPE_INBOX,
345 * {@link #mAccountId} and {@link #mAccountUuid}.
361 mAccountId = resolveAccountId(this, mAccountId, mAccountUuid);
362 if (Account.isNormalAccount(mAccountId) &&
363 Mailbox.findMailboxOfType(this, mAccountId, Mailbox.TYPE_INBOX)
373 * Start {@link EmailActivity} using {@link #mAccountId}, {@link #mMailboxId} an
    [all...]
MoveMessageToDialog.java 61 private long mAccountId;
209 if (idSet == null || idSet.mAccountId == Account.NO_ACCOUNT
215 mAccountId = idSet.mAccountId;
234 mAccountId, mMailboxId);
337 private final long mAccountId;
341 mAccountId = accountId;
UIControllerTwoPane.java 397 long accountId = mListContext.mAccountId;
567 private final long mAccountId;
586 mAccountId = accountId;
595 mInboxId = Account.getInboxId(mContext, mAccountId);
608 mRefreshManager.refreshMessageList(mAccountId, mMailboxId, true);
611 if (mAccountId != Account.NO_ACCOUNT) {
613 mRefreshManager.refreshMailboxList(mAccountId);
618 mRefreshManager.refreshMessageList(mAccountId, mInboxId, true);
628 if (mRefreshManager.isMailboxListRefreshing(mAccountId)) {
631 final long nextRefreshTime = mRefreshManager.getLastMailboxListRefreshTime(mAccountId)
    [all...]
AccountSelectorAdapter.java 308 private final long mAccountId;
319 mAccountId = accountId;
334 resultCursor.setAccountMailboxInfo(getContext(), mAccountId, mMailboxId);
355 if (accountId == mAccountId) {
382 if (mAccountId == Account.NO_ACCOUNT) {
385 if (mAccountId == Account.ACCOUNT_ID_COMBINED_VIEW) {
402 recentMailboxes = mailboxManager.getMostRecent(mAccountId, mUseTwoPane);
427 accountPosition, mAccountId);
448 mFolderProperties.getMessageCount(c), accountPosition, mAccountId);
488 private long mAccountId;
    [all...]
MailboxMoveToAdapter.java 139 private final long mAccountId;
144 mAccountId = accountId;
150 final String protocol = Account.getProtocol(getContext(), mAccountId);
MessagesAdapter.java 203 itemView.mAccountId = accountId;
292 private final long mAccountId;
301 mAccountId = listContext.mAccountId;
308 setSelection(Message.buildMessageListSelection(mContext, mAccountId, mMailboxId));
412 mListContext.mAccountId, mListContext.getSearchParams());
MailboxFragmentAdapter.java 364 listItem.mAccountId = accountId;
514 private final long mAccountId;
526 mAccountId = accountId;
550 new String[] { Long.toString(mAccountId), Long.toString(mParentKey) },
558 new String[] { Long.toString(mAccountId) }, MAILBOX_ORDER_BY);
569 .getMostRecent(mAccountId, true);
588 int accountStarredCount = Message.getFavoriteMessageCount(mContext, mAccountId);
  /packages/apps/Email/src/com/android/email/
MessageListContext.java 42 public final long mAccountId;
57 mAccountId = accountId;
141 return mAccountId == om.mAccountId
148 return Objects.hashCode(mAccountId, mMailboxId, mSearchParams);
153 return "[MessageListContext " + mAccountId + ":" + mMailboxId + ":" + mSearchParams + "]";
158 mAccountId = in.readLong();
170 dest.writeLong(mAccountId);
  /packages/apps/Email/tests/src/com/android/email/
MessagingControllerUnitTests.java 35 private long mAccountId;
47 Account.CONTENT_URI, mAccountId);
82 mAccountId = mAccount.mId;
RefreshManagerTest.java 130 assertEquals(ACCOUNT_1, mListener.mAccountId);
134 assertEquals(ACCOUNT_1, mController.mAccountId);
154 assertEquals(ACCOUNT_2, mListener.mAccountId);
158 assertEquals(ACCOUNT_2, mController.mAccountId);
169 assertEquals(ACCOUNT_1, mListener.mAccountId);
181 assertEquals(ACCOUNT_1, mListener.mAccountId);
198 assertEquals(ACCOUNT_2, mListener.mAccountId);
209 assertEquals(ACCOUNT_2, mListener.mAccountId);
228 assertEquals(ACCOUNT_1, mListener.mAccountId);
232 assertEquals(ACCOUNT_1, mController.mAccountId);
    [all...]
  /packages/apps/Email/src/com/android/email/widget/
EmailWidgetLoader.java 63 private long mAccountId;
126 Account account = Account.restoreAccountWithId(mContext, mAccountId);
131 if (mAccountId == Account.ACCOUNT_ID_COMBINED_VIEW) {
175 mAccountId = accountId;
183 if (mAccountId == Account.ACCOUNT_ID_COMBINED_VIEW) {
197 new String[] { Long.toString(mAccountId), Long.toString(mMailboxId) });
204 setSelectionArgs(new String[] { Long.toString(mAccountId) });
EmailWidget.java 116 private long mAccountId = Account.NO_ACCOUNT;
168 mAccountId = accountId;
169 mLoader.load(mAccountId, mailboxId);
210 PendingIntent.getActivity(mContext, (int) mAccountId, intent,
289 if (mAccountId == Account.ACCOUNT_ID_COMBINED_VIEW
290 || Account.restoreAccountWithId(mContext, mAccountId) == null) {
299 intent = MessageCompose.getMessageComposeIntent(mContext, mAccountId);
303 intent = Welcome.createOpenAccountInboxIntent(mContext, mAccountId);
427 if (mAccountId != Account.ACCOUNT_ID_COMBINED_VIEW) {
  /frameworks/av/include/drm/
DrmRights.h 98 String8 mAccountId;
  /packages/apps/Email/tests/src/com/android/email/activity/setup/
AccountSettingsTests.java 45 private long mAccountId;
73 Uri uri = ContentUris.withAppendedId(Account.CONTENT_URI, mAccountId);
163 mAccountId = mAccount.mId;
165 return AccountSettings.createAccountSettingsIntent(mContext, mAccountId, null);
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountSettingsEditQuickResponsesFragment.java 71 private final long mAccountId;
80 .newInstance(quickResponse, mAccountId)
118 mAccountId = accountId;
142 private final long mAccountId;
170 mAccountId = accountId;
181 mContext, mAccountId);
193 mAccountId);
  /packages/apps/Email/tests/src/com/android/email/service/
AttachmentDownloadServiceTests.java 48 private long mAccountId;
64 mAccountId = mAccount.mId;
66 mMailbox = ProviderTestUtils.setupMailbox("mailbox", mAccountId, true, mMockContext);
73 mService.addServiceIntentForTest(mAccountId, new Intent(mContext,
95 Message message = ProviderTestUtils.setupMessage("message", mAccountId, mMailboxId, false,
255 mService.mAttachmentStorageMap.remove(mAccountId);
260 mService.mAttachmentStorageMap.remove(mAccountId);
  /packages/apps/Email/tests/src/com/android/email/activity/
FindParentMailboxTaskTest.java 34 private long mAccountId;
70 mAccountId = a.mId;
290 mProviderContext, null, mAccountId, enableHighlight, parentMailboxId,
MailboxFinderTest.java 198 assertEquals(accountId, mCallback.mAccountId);
287 assertEquals(accountId, mCallback.mAccountId);
422 public volatile long mAccountId = -1;
438 mAccountId = accountId;
444 mAccountId = accountId;
451 mAccountId = accountId;
  /packages/apps/Exchange/exchange2/src/com/android/exchange/adapter/
FolderSyncParser.java 101 long mAccountId;
130 mAccountId = mAccount.mId;
131 mAccountIdAsString = Long.toString(mAccountId);
146 new String[] {Long.toString(mAccountId)});
173 ExchangeService.deleteAccountPIMData(mAccountId);
178 new String[] {Long.toString(mAccountId)});
180 ExchangeService.stopNonAccountMailboxSyncsForAccount(mAccountId);
235 mAccountId, mMailbox.mId);
354 mailbox.mAccountKey = mAccountId;
AttachmentLoader.java 59 private final long mAccountId;
69 mAccountId = mAttachment.mAccountKey;
72 mAttachmentUri = AttachmentUtilities.getAttachmentUri(mAccountId, mAttachmentId);
  /packages/apps/Gallery2/tests/src/com/android/photos/data/
PhotoProviderTest.java 60 private long mAccountId;
81 mAccountId = PhotoDatabaseUtils.queryAccountIdFromName(db, ACCOUNT_NAME);
83 Albums.VISIBILITY_PRIVATE, mAccountId);
86 MIME_TYPE, mAccountId);
189 Uri accountUri = ContentUris.withAppendedId(Accounts.CONTENT_URI, mAccountId);
193 "image/jpeg", mAccountId);

Completed in 443 milliseconds

1 2