Searched defs:folderId (Results 1 - 9 of 9) sorted by relevance

/packages/providers/PartnerBookmarksProvider/src/com/android/providers/partnerbookmarks/
H A DPartnerBookmarksContract.java81 * @param folderId the ID of the folder to point to
83 public static final Uri buildFolderUri(long folderId) { argument
84 return ContentUris.withAppendedId(CONTENT_URI_PARTNER_BOOKMARKS_FOLDER, folderId);
/packages/apps/Browser/src/com/android/browser/addbookmark/
H A DFolderSpinnerAdapter.java55 public void addRecentFolder(long folderId, String folderName) { argument
57 mRecentFolderId = folderId;
/packages/apps/Exchange/src/com/android/exchange/eas/
H A DEasFullSyncOperation.java212 private int syncMailbox(final long folderId, final boolean hasCallbackMethod, argument
214 final Mailbox mailbox = Mailbox.restoreMailboxWithId(mContext, folderId);
216 LogUtils.d(TAG, "Could not load folder %d", folderId);
/packages/apps/UnifiedEmail/src/com/android/mail/providers/protos/mock/
H A DMockUiProvider.java276 private static Map<String, Object> createFolderDetailsMap(int folderId, int accountId, argument
278 return createFolderDetailsMap(folderId, accountId, name, false, unread, total);
281 private static Map<String, Object> createFolderDetailsMap(int folderId, int accountId, argument
283 final String folderUri = getMockAccountFolderUri(accountId, folderId);
286 folderMap.put(BaseColumns._ID, folderId);
392 private static String getMockAccountFolderUri(int accountId, int folderId) { argument
393 return getMockAccountUri(accountId) + "/folder/" + folderId;
/packages/apps/Bluetooth/lib/mapapi/com/android/bluetooth/mapapi/
H A DBluetoothMapEmailProvider.java443 Long folderId = values.getAsLong(BluetoothMapContract.MessageColumns.FOLDER_ID);
444 if(folderId == null) {
454 id = insertMessage(accountId, folderId.toString());
471 * @param folderId the ID of the folder to create a new message in.
474 abstract protected String insertMessage(String accountId, String folderId); argument
609 Long folderId = values.getAsLong(BluetoothMapContract.MessageColumns.FOLDER_ID);
611 return updateMessage(accountId, messageId, folderId, flagRead);
634 * @param folderId the new folder ID value to set - ignore if null.
638 abstract protected int updateMessage(String accountId, Long messageId, Long folderId, Boolean flagRead); argument
653 long folderId
676 syncFolder(long accountId, long folderId) argument
[all...]
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DNestedFolderTeaserView.java414 private static int getLoaderId(final int folderId) { argument
415 return folderId + LOADER_FOLDER_LIST;
493 for (final int folderId : oldFolderIds) {
495 mFolderHolders.remove(folderId);
496 mLoaderManager.destroyLoader(getLoaderId(folderId));
580 final int folderId = getFolderId(loader.getId());
582 final FolderHolder folderHolder = mFolderHolders.get(folderId);
586 LogUtils.d(LOG_TAG, "Folder id %d loader finished", folderId);
644 final int folderId = getFolderId(id);
645 final Uri uri = mFolderHolders.get(folderId)
[all...]
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
H A DBluetoothMapContent.java949 private String setWhereFilterFolderTypeEmail(long folderId) { argument
951 if (folderId >= 0) {
952 where = BluetoothMapContract.MessageColumns.FOLDER_ID + " = " + folderId;
1231 + " folderId = " + folderElement.getEmailFolderId()
1928 long folderId = c.getLong(c.getColumnIndex(BluetoothMapContract.MessageColumns.FOLDER_ID));
1929 folderElement = currentFolder.getEmailFolderById(folderId);
H A DBluetoothMapContentObserver.java318 long folderId = -1; // Email folder ID field in class:BluetoothMapContentObserver.Msg
328 public Msg(long id, long folderId) { argument
330 this.folderId = folderId;
512 long folderId = c.getInt(c.getColumnIndex(BluetoothMapContract.MessageColumns.FOLDER_ID));
514 Msg msg = new Msg(id, folderId);
703 int folderId = c.getInt(c.getColumnIndex(
706 BluetoothMapFolderElement folderElement = mFolders.getEmailFolderById(folderId);
719 msg = new Msg(id, folderId);
726 if (folderId !
[all...]
/packages/apps/Email/provider_src/com/android/email/provider/
H A DEmailProvider.java4224 final long folderId = c.getLong(0);
4225 recentFolders[i] = uiUri("uifolder", folderId);
4226 LogUtils.d(TAG, "Default recent folder: %d, with uri %s", folderId,
5665 * @param folderId the folder id to be notified
5668 private void notifyUIFolder(final String folderId, final long accountId) { argument
5669 notifyUI(UIPROVIDER_CONVERSATION_NOTIFIER, folderId);
5670 notifyUI(UIPROVIDER_FOLDER_NOTIFIER, folderId);
5688 final String folderId = (String) message.obj;
5689 LogUtils.d(TAG, "Notifying conversation Uri %s twice", folderId);
5690 notifyUI(UIPROVIDER_CONVERSATION_NOTIFIER, folderId);
5703 notifyUIFolder(final long folderId, final long accountId) argument
[all...]

Completed in 689 milliseconds