HomeSort by relevance Sort by last modified time
    Searched refs:Mailbox (Results 26 - 50 of 163) sorted by null

12 3 4 5 6 7

  /packages/apps/Email/src/com/android/email/service/
EmailServiceStub.java 53 import com.android.emailcommon.provider.Mailbox;
99 final Mailbox mailbox = Mailbox.restoreMailboxWithId(mContext, mailboxId); local
100 if (mailbox == null) return;
101 final Account account = Account.restoreAccountWithId(mContext, mailbox.mAccountKey);
107 final Bundle extras = Mailbox.createSyncBundle(mailboxId);
114 extras.putInt(Mailbox.SYNC_EXTRA_DELTA_MESSAGE_COUNT, deltaMessageCount);
157 Mailbox mailbox = Mailbox.restoreMailboxWithId(mContext, message.mMailboxKey) local
298 final Mailbox mailbox = Mailbox.newSystemMailbox(mContext, accountId, type); local
    [all...]
ImapService.java 58 import com.android.emailcommon.provider.Mailbox;
91 * Simple cache for last search result mailbox by account and serverId, since the most common
92 * case will be repeated use of the same mailbox
96 private static Mailbox mLastSearchRemoteMailbox = null;
164 final Account account, final Mailbox folder, final boolean loadMore,
233 // Note: mailbox key and account key not needed - they are projected for the SELECT
249 * @param toMailbox the destination mailbox we're syncing
253 Folder remoteFolder, ArrayList<Message> messages, final Mailbox toMailbox)
280 final Mailbox mailbox, Folder remoteFolder, ArrayList<Message> unsyncedMessages
794 Mailbox mailbox = new Mailbox(); local
832 Mailbox mailbox = getRemoteMailboxForMessage(context, oldMessage); local
889 Mailbox mailbox = null; local
954 Mailbox mailbox = null; local
1457 final Mailbox mailbox = Mailbox.restoreMailboxWithId(context, searchParams.mMailboxId); local
    [all...]
  /external/chromium_org/gpu/command_buffer/service/
mailbox_synchronizer.h 8 #include "gpu/command_buffer/common/mailbox.h"
34 // Create a texture from a globally visible mailbox.
35 Texture* CreateTextureFromMailbox(unsigned target, const Mailbox& mailbox);
46 TargetName(unsigned target, const Mailbox& mailbox);
57 Mailbox mailbox; member in struct:gpu::gles2::MailboxSynchronizer::TargetName
mailbox_manager.cc 27 const Mailbox& mailbox) {
28 TargetName target_name(target, mailbox);
35 // See if it's visible in another mailbox manager, and if so make it visible
37 Texture* texture = sync_->CreateTextureFromMailbox(target, mailbox);
49 const Mailbox& mailbox,
51 TargetName target_name(target, mailbox);
97 MailboxManager::TargetName::TargetName(unsigned target, const Mailbox& mailbox)
    [all...]
  /external/chromium_org/gpu/ipc/
gpu_command_buffer_traits.h 13 struct Mailbox;
28 struct GPU_EXPORT ParamTraits<gpu::Mailbox> {
29 typedef gpu::Mailbox param_type;
gpu_command_buffer_traits.cc 42 void ParamTraits<gpu::Mailbox>::Write(Message* m, const param_type& p) {
46 bool ParamTraits<gpu::Mailbox>::Read(const Message* m,
57 void ParamTraits<gpu::Mailbox>::Log(const param_type& p, std::string* l) {
63 WriteParam(m, p.mailbox);
71 if (!ReadParam(m, iter, &p->mailbox) ||
79 ParamTraits<gpu::Mailbox>::Log(p.mailbox, l);
  /packages/apps/Email/src/com/android/email/provider/
FolderPickerActivity.java 34 import com.android.emailcommon.provider.Mailbox;
75 mMailboxType = i.getIntExtra(MAILBOX_TYPE_EXTRA, Mailbox.TYPE_TRASH);
76 long trashMailboxId = Mailbox.findMailboxOfType(this, mAccountId, Mailbox.TYPE_TRASH);
77 // If we already have a trash mailbox, we're done (if in setup; a race?)
78 if (trashMailboxId != Mailbox.NO_MAILBOX && mInSetup) {
187 // If we already have a mailbox of this type, change it back to generic mail type
188 Mailbox ofType = Mailbox.restoreMailboxOfType(this, mAccountId, mMailboxType);
190 values.put(MailboxColumns.TYPE, Mailbox.TYPE_MAIL)
197 Mailbox mailbox = Mailbox.restoreMailboxWithId(this, id); local
    [all...]
EmailProvider.java 94 import com.android.emailcommon.provider.Mailbox;
208 private static final int MAILBOX = MAILBOX_BASE;
290 array.put(MAILBOX_BASE >> BASE_SHIFT, Mailbox.TABLE_NAME);
426 * When we sync folders, we do two passes: First to create the mailbox rows, and second
435 // Update the parentKey for each mailbox row to match the _id of the row whose
442 // update mailbox set parentKey = (select _id from mailbox as b where
443 // mailbox.parentServerId=b.serverId and mailbox.parentServerId not null and
444 // mailbox.accountKey=b.accountKey
3264 Mailbox mailbox = Mailbox.restoreMailboxWithId(context, mailboxId); local
4716 Mailbox mailbox = Mailbox.restoreMailboxOfType(getContext(), accountId, mailboxType); local
4905 final Mailbox mailbox = local
5487 Mailbox mailbox = Mailbox.restoreMailboxWithId(getContext(), id); local
    [all...]
EmailConversationCursor.java 34 import com.android.emailcommon.provider.Mailbox;
47 * any pending notifications for the corresponding mailbox should be canceled). We also handle
48 * getExtras() to provide a snapshot of the mailbox's status
70 Mailbox mailbox = Mailbox.restoreMailboxWithId(context, mailboxId); local
72 if (mailbox != null) {
73 mMailboxTypeId = mailbox.mType;
76 mailbox.mUiLastSyncResult);
77 mExtras.putInt(UIProvider.CursorExtraKeys.EXTRA_TOTAL_COUNT, mailbox.mTotalCount)
133 Mailbox mailbox = Mailbox.restoreMailboxWithId(mContext, mMailboxId); local
    [all...]
WidgetProvider.java 26 import com.android.emailcommon.provider.Mailbox;
95 if (accountId == Account.NO_ACCOUNT || mailboxId == Mailbox.NO_MAILBOX) {
96 LogUtils.d(LOG_TAG, "Couldn't load account or mailbox. accountId: %d" +
104 // Get Account and folder objects for the account id and mailbox id
134 if (mailboxId == Mailbox.QUERY_ALL_INBOXES) {
135 return EmailProvider.getVirtualMailboxId(accountId, Mailbox.TYPE_INBOX);
136 } else if (mailboxId == Mailbox.QUERY_ALL_UNREAD) {
137 return EmailProvider.getVirtualMailboxId(accountId, Mailbox.TYPE_UNREAD);
182 * Returns the saved mailbox ID for the given widget. Otherwise,
183 * {@link com.android.emailcommon.provider.Mailbox#NO_MAILBOX} i
    [all...]
  /packages/apps/Exchange/src/com/android/exchange/eas/
EasSearch.java 8 import com.android.emailcommon.provider.Mailbox;
75 final Mailbox searchMailbox = Mailbox.restoreMailboxWithId(mContext, mDestMailboxId);
78 LogUtils.i(LOG_TAG, "search mailbox ceased to exist");
83 // Set the status of this mailbox to indicate query
84 statusValues.put(Mailbox.UI_SYNC_STATUS, UIProvider.SyncStatus.LIVE_QUERY);
89 s.data(Tags.SEARCH_NAME, "Mailbox");
94 final Mailbox inbox =
95 Mailbox.restoreMailboxOfType(mContext, mAccount.mId, Mailbox.TYPE_INBOX)
    [all...]
EasSyncCollectionTypeBase.java 6 import com.android.emailcommon.provider.Mailbox;
33 * Write the contents of a Collection node in an EAS sync request appropriate for our mailbox.
41 * @param mailbox
47 final double protocolVersion, final Account account, final Mailbox mailbox,
54 * @param mailbox
60 final Mailbox mailbox, final InputStream is) throws IOException;
  /packages/apps/Email/tests/src/com/android/email/mail/
StoreTests.java 30 import com.android.emailcommon.provider.Mailbox;
102 Mailbox testMailbox = new Mailbox();
104 Store.updateMailbox(testMailbox, 1L, "inbox", '/', true, Mailbox.TYPE_MAIL);
110 Store.updateMailbox(testMailbox, 2L, "inbox/a", '/', true, Mailbox.TYPE_MAIL);
116 Store.updateMailbox(testMailbox, 3L, "inbox/a/b/c/d", '/', true, Mailbox.TYPE_MAIL);
122 Store.updateMailbox(testMailbox, 4L, "inbox/a/b/c", '\0', true, Mailbox.TYPE_MAIL);
  /external/chromium_org/cc/resources/
video_resource_updater.h 80 gpu::Mailbox mailbox; member in struct:cc::VideoResourceUpdater::PlaneResource
85 gpu::Mailbox mailbox)
89 mailbox(mailbox) {}
103 gpu::Mailbox mailbox; member in struct:cc::VideoResourceUpdater::RecycleResourceData
texture_mailbox.h 19 // can hold a shared memory resource as well as a texture mailbox.
24 TextureMailbox(const gpu::Mailbox& mailbox, uint32 target, uint32 sync_point);
30 bool IsTexture() const { return !mailbox_holder_.mailbox.IsZero(); }
35 const gpu::Mailbox& mailbox() const { return mailbox_holder_.mailbox; } function in class:cc::TextureMailbox
36 const int8* name() const { return mailbox().name; }
  /external/chromium_org/content/common/gpu/
texture_image_transport_surface.h 14 #include "gpu/command_buffer/common/mailbox.h"
76 void BufferPresentedImpl(const gpu::Mailbox& mailbox_name);
86 // The mailbox name for the current backbuffer texture. Needs to be unique per
88 gpu::Mailbox back_mailbox_;
89 gpu::Mailbox front_mailbox_;
115 // Holds a reference to the mailbox manager for cleanup.
  /external/chromium_org/content/browser/compositor/
owned_mailbox.h 17 // This class holds a texture id and gpu::Mailbox, and deletes the texture
26 const gpu::Mailbox& mailbox() const { return mailbox_holder_.mailbox; } function in class:content::OwnedMailbox
  /external/chromium_org/media/video/
picture.cc 18 const gpu::Mailbox& texture_mailbox)
  /packages/apps/Email/tests/src/com/android/email/provider/
ProviderTests.java 50 import com.android.emailcommon.provider.Mailbox;
153 db.update(Mailbox.TABLE_NAME, values, null, null);
156 /** Returns the number of messages in a mailbox. */
159 ContentUris.withAppendedId(Mailbox.CONTENT_URI, mailboxId),
169 Context c, Mailbox b, boolean starred, boolean read, int flagLoaded) {
361 * Get the value of the unread count in the mailbox of the account.
362 * This can be different from the actual number of unread messages in that mailbox.
368 c = mMockContext.getContentResolver().query(Mailbox.CONTENT_URI,
410 Mailbox box1 = ProviderTestUtils.setupMailbox("box1", account1Id, true, mMockContext);
454 Mailbox box1 = ProviderTestUtils.setupMailbox("box1", account1Id, true, mMockContext)
    [all...]
  /external/chromium_org/content/renderer/gpu/
mailbox_output_surface.h 22 // are sent to the browser through the mailbox extension.
53 const gpu::Mailbox& mailbox,
55 : texture_id(texture_id), mailbox(mailbox), size(size), sync_point(0) {}
58 gpu::Mailbox mailbox; member in struct:content::MailboxOutputSurface::TransferableFrame
  /packages/apps/Exchange/src/com/android/exchange/
ExchangeBroadcastReceiver.java 16 import com.android.emailcommon.provider.Mailbox;
36 bundle.putBoolean(Mailbox.SYNC_EXTRA_ACCOUNT_ONLY, true);
Eas.java 20 import com.android.emailcommon.provider.Mailbox;
96 // Mailbox Types
169 * Gets the Exchange folder class for a mailbox type (PIM collections have different values
171 * @param mailboxType The type of the mailbox we're interested in, from {@link Mailbox}.
172 * @return The folder class for the mailbox we're interested in.
176 case Mailbox.TYPE_CALENDAR:
178 case Mailbox.TYPE_CONTACTS:
  /external/chromium_org/content/renderer/media/android/
stream_texture_factory.h 12 #include "gpu/command_buffer/common/mailbox.h"
67 // a mailbox so it can be shipped in a VideoFrame.
70 gpu::Mailbox* texture_mailbox) = 0;
stream_texture_factory_impl.h 36 gpu::Mailbox* texture_mailbox) OVERRIDE;
  /external/chromium_org/media/filters/
gpu_video_accelerator_factories.h 12 #include "gpu/command_buffer/common/mailbox.h"
57 std::vector<gpu::Mailbox>* texture_mailboxes,

Completed in 660 milliseconds

12 3 4 5 6 7