HomeSort by relevance Sort by last modified time
    Searched refs:accountId (Results 51 - 75 of 90) sorted by null

1 23 4

  /packages/apps/Exchange/src/com/android/exchange/eas/
EasProvision.java 165 final long accountId = getAccountId();
187 PolicyServiceProxy.setAccountPolicy(mContext, accountId, mPolicy, null);
198 PolicyServiceProxy.setAccountPolicy(mContext, accountId, mPolicy, mPolicyKey);
EasOperation.java 179 * @param accountId
181 protected EasOperation(final Context context, final long accountId) {
183 mAccountId = accountId;
474 final long accountId = getAccountId();
475 if (mConnection.setProtocolVersion(protocolVersion) && accountId != Account.NOT_SAVED) {
476 final Uri uri = ContentUris.withAppendedId(Account.CONTENT_URI, accountId);
    [all...]
EasLoadAttachment.java 72 * @param accountId The id of the account in question (i.e. its id in the database).
76 public EasLoadAttachment(final Context context, final long accountId, final long attachmentId,
80 super(context, accountId);
EasSearch.java 43 public EasSearch(final Context context, final long accountId, final SearchParams searchParams,
45 super(context, accountId);
EasFullSyncOperation.java 60 public EasFullSyncOperation(final Context context, final long accountId,
62 super(context, accountId);
EasSendMeetingResponse.java 55 public EasSendMeetingResponse(final Context context, final long accountId,
57 super(context, accountId);
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
Account.java 72 private String accountId;
259 json.put(AccountColumns.ACCOUNT_ID, accountId);
378 accountId = json.optString(UIProvider.AccountColumns.ACCOUNT_ID, accountManagerName);
438 accountId = cursor.getString(
612 accountId = in.readString();
656 dest.writeString(accountId);
684 TextUtils.equals(accountId, other.accountId) &&
    [all...]
  /packages/apps/Email/src/com/android/email/service/
EmailServiceUtils.java 172 * @param accountId the message of interest
175 public static EmailServiceProxy getServiceForAccount(Context context, long accountId) {
176 return getService(context, Account.getProtocol(context, accountId));
252 public static EmailServiceInfo getServiceInfoForAccount(Context context, long accountId) {
253 String protocol = Account.getProtocol(context, accountId);
    [all...]
AttachmentService.java     [all...]
EmailBroadcastProcessorService.java 357 long accountId = c.getLong(Account.CONTENT_ID_COLUMN);
358 Uri uri = ContentUris.withAppendedId(Account.CONTENT_URI, accountId);
  /packages/apps/Email/src/com/android/email/
LegacyConversions.java 79 final Message message, final long accountId, final long mailboxId)
136 localMessage.mAccountKey = accountId;
320 final Attachment localAttachment, long accountId)
325 final File saveIn = AttachmentUtilities.getAttachmentDirectory(context, accountId);
330 final File saveAs = AttachmentUtilities.getAttachmentFilename(context, accountId,
351 accountId, attachmentId).toString();
Preferences.java 262 public void setLastUsedAccountId(long accountId) {
265 .putLong(LAST_ACCOUNT_USED, accountId)
  /frameworks/base/core/java/android/provider/
CallLog.java 446 String accountId = null;
449 accountId = accountHandle.getId();
464 values.put(PHONE_ACCOUNT_ID, accountId);
  /packages/apps/Exchange/src/com/android/exchange/provider/
ExchangeDirectoryProvider.java 202 Long accountId = mAccountIdMap.get(accountName);
203 if (accountId == null) {
204 accountId = Utility.getFirstRowLong(context, Account.CONTENT_URI,
207 if (accountId != -1) {
208 mAccountIdMap.put(accountName, accountId);
211 return accountId;
307 final long accountId = getAccountIdByName(getContext(), accountName);
308 if (accountId == -1) {
329 final GalResult galResult = EasService.searchGal(getContext(), accountId,
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
MessageMove.java 116 * @param accountId The account we want to update.
119 public static List<MessageMove> getMoves(final Context context, final long accountId) {
121 final Cursor c = getCursor(cr, CONTENT_URI, ProjectionMoveQuery.PROJECTION, accountId);
MessageStateChange.java 108 * @param accountId The account we want to update.
112 public static List<MessageStateChange> getChanges(final Context context, final long accountId,
115 final Cursor c = getCursor(cr, CONTENT_URI, ProjectionChangeQuery.PROJECTION, accountId);
  /packages/apps/Email/src/com/android/email/mail/
Store.java 193 protected static void updateMailbox(Mailbox mailbox, long accountId, String mailboxPath,
195 mailbox.mAccountKey = accountId;
  /packages/apps/Email/src/com/android/email/mail/internet/
AuthenticationCache.java 30 CacheEntry(long accountId, String providerId, String accessToken, String refreshToken,
32 mAccountId = accountId;
  /packages/apps/Email/tests/src/com/android/email/
SecurityPolicyTests.java 210 private long assertAccountPolicyConsistent(long accountId, long oldKey) {
211 Account account = Account.restoreAccountWithId(mMockContext, accountId);
221 accountId,
236 long accountId = account.mId;
250 mMockContext, Account.restoreAccountWithId(mMockContext, accountId));
  /frameworks/base/services/core/java/com/android/server/accounts/
AccountManagerService.java 400 final long accountId = cursor.getLong(0);
407 db.delete(TABLE_ACCOUNTS, ACCOUNTS_ID + "=" + accountId, null);
    [all...]
  /packages/apps/Exchange/tests/src/com/android/exchange/provider/
MailboxUtilitiesTests.java     [all...]
  /packages/apps/Email/src/com/android/email/mail/store/
ImapStore.java 342 * @param accountId The ID of the account the mailbox is to be associated with
348 private ImapFolder addMailbox(Context context, long accountId, String mailboxPath,
354 mailbox = Mailbox.getMailboxForPath(context, accountId, mailboxPath);
364 updateMailbox(mailbox, accountId, mailboxPath, delimiter, selectable, mailboxType);
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapObexServer.java 120 if (D) Log.d(TAG, "BluetoothMapObexServer(): accountId=" + mAccountId);
388 long accountId = mAccountId;
393 if (accountId != -1) {
394 if (D) Log.d(TAG,"updateInbox accountId=" + accountId);
397 extras.putLong(BluetoothMapContract.EXTRA_UPDATE_ACCOUNT_ID, accountId);
401 if (D) Log.d(TAG,"updateInbox accountId=0 -> OBEX_HTTP_NOT_IMPLEMENTED");
    [all...]
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountSettingsFragment.java 161 public static Bundle buildArguments(final long accountId) {
163 b.putLong(ARG_ACCOUNT_ID, accountId);
429 private AccountLoader(Context context, String accountEmail, long accountId) {
433 mAccountId = accountId;
525 public static final String ARG_ACCOUNT_ID = "accountId";
    [all...]
  /frameworks/av/drm/common/
IDrmManagerService.cpp 354 const String8 accountId = drmRights.getAccountId();
355 data.writeString8((accountId == String8("")) ? String8("NULL") : accountId);
    [all...]

Completed in 1576 milliseconds

1 23 4