HomeSort by relevance Sort by last modified time
    Searched refs:mailbox (Results 76 - 100 of 132) sorted by null

1 2 34 5 6

  /packages/apps/Exchange/src/com/android/exchange/
EasOutboxService.java 39 import com.android.emailcommon.provider.Mailbox;
84 protected EasOutboxService(Context _context, Mailbox _mailbox) {
281 // Then, we need the serverId of the mailbox
282 cols = Utility.getRowColumns(context, Mailbox.CONTENT_URI, boxId,
351 // The reference message and mailbox are called item and collection in EAS
565 Mailbox mailbox = Mailbox.restoreMailboxOfType(context, accountId, Mailbox.TYPE_OUTBOX); local
566 if (mailbox != null)
    [all...]
EasAccountService.java 39 import com.android.emailcommon.provider.Mailbox;
64 * AccountMailbox handles sync for the EAS "account mailbox"; this includes sync of the mailbox list
65 * as well as management of mailbox push (using the EAS "Ping" command
70 '=' + Mailbox.CHECK_INTERVAL_PING;
72 MailboxColumns.SYNC_INTERVAL + " IN (" + Mailbox.CHECK_INTERVAL_PING +
73 ',' + Mailbox.CHECK_INTERVAL_PUSH + ") AND " + MailboxColumns.TYPE + "!=\"" +
74 Mailbox.TYPE_EAS_ACCOUNT_MAILBOX + '\"';
77 '=' + Mailbox.CHECK_INTERVAL_PUSH_HOLD;
81 MailboxColumns.ACCOUNT_KEY + "=? and type in (" + Mailbox.TYPE_INBOX + ',
452 Mailbox mailbox = Mailbox.restoreMailboxWithId(mContext, mailboxId); local
    [all...]
  /external/chromium_org/content/common/gpu/client/
command_buffer_proxy_impl.h 35 struct Mailbox;
80 virtual bool ProduceFrontBuffer(const gpu::Mailbox& mailbox) OVERRIDE;
122 // Generates n unique mailbox names that can be used with
126 bool GenerateMailboxNames(unsigned num, std::vector<gpu::Mailbox>* names);
command_buffer_proxy_impl.cc 465 std::vector<gpu::Mailbox>* names) {
472 bool CommandBufferProxyImpl::ProduceFrontBuffer(const gpu::Mailbox& mailbox) {
476 return Send(new GpuCommandBufferMsg_ProduceFrontBuffer(route_id_, mailbox));
gl_helper_unittests.cc 820 gpu::Mailbox mailbox; local
821 context_->genMailboxCHROMIUM(mailbox.name);
822 EXPECT_FALSE(mailbox.IsZero());
823 context_->produceTextureCHROMIUM(GL_TEXTURE_2D, mailbox.name);
861 mailbox,
    [all...]
  /external/chromium_org/cc/resources/
resource_provider.h 103 // Wraps an external texture mailbox into a GL resource.
104 ResourceId CreateResourceFromTextureMailbox(const TextureMailbox& mailbox);
353 TextureMailbox mailbox; member in struct:cc::ResourceProvider::Resource
  /external/chromium_org/content/browser/renderer_host/
render_widget_host_view_android.h 24 #include "gpu/command_buffer/common/mailbox.h"
187 virtual bool PrepareTextureMailbox(cc::TextureMailbox* mailbox,
237 void BuffersSwapped(const gpu::Mailbox& mailbox,
313 // The mailbox of the previously received frame.
314 gpu::Mailbox current_mailbox_;
  /packages/apps/Email/tests/src/com/android/emailcommon/utility/
UtilityMediumTests.java 26 import com.android.emailcommon.provider.Mailbox;
100 Mailbox mailbox = local
101 ProviderTestUtils.setupMailbox("mailbox", account.mId, true, mMockContext);
102 Message message = ProviderTestUtils.setupMessage("foo", account.mId, mailbox.mId, false,
  /packages/apps/Email/src/com/android/email/mail/store/
ImapFolder.java 47 import com.android.emailcommon.provider.Mailbox;
79 /** The local mailbox associated with this remote folder */
80 Mailbox mMailbox;
1177 final Mailbox mailbox = mMailbox; local
    [all...]
  /external/chromium_org/content/common/
cc_messages_unittest.cc 191 for (size_t i = 0; i < arraysize(a.mailbox.name); ++i)
192 EXPECT_EQ(a.mailbox.name[i], b.mailbox.name[i]);
516 arbitrary_resource1.mailbox.SetName(arbitrary_mailbox1);
524 arbitrary_resource2.mailbox.SetName(arbitrary_mailbox2);
  /packages/apps/Email/src/com/android/email/
NotificationController.java 47 import com.android.emailcommon.provider.Mailbox;
351 LogUtils.w(LOG_TAG, "Null folder cursor for mailbox %s",
371 "Null folder for mailbox %s", uiAccount.settings.defaultInbox);
397 Mailbox mailbox = Mailbox.restoreMailboxWithId(mContext, message.mMailboxKey);
398 showNotification(mailbox.mAccountKey,
425 final Mailbox mailbox = Mailbox.restoreMailboxOfType(mContext, account.mId
    [all...]
  /external/chromium_org/third_party/WebKit/public/platform/
WebGraphicsContext3D.h 448 virtual void genMailboxCHROMIUM(WGC3Dbyte* mailbox) { }
449 virtual void produceTextureCHROMIUM(WGC3Denum target, const WGC3Dbyte* mailbox) { }
450 virtual void consumeTextureCHROMIUM(WGC3Denum target, const WGC3Dbyte* mailbox) { }
  /external/chromium_org/webkit/common/gpu/
webgraphicscontext3d_in_process_command_buffer_impl.h 505 virtual void genMailboxCHROMIUM(WGC3Dbyte* mailbox);
507 const WGC3Dbyte* mailbox);
509 const WGC3Dbyte* mailbox);
  /external/chromium_org/media/base/
video_frame.cc 449 const gpu::Mailbox& mailbox,
452 : mailbox_(mailbox),
  /packages/apps/Exchange/src/com/android/exchange/service/
EasOutboxSyncHandler.java 21 import com.android.emailcommon.provider.Mailbox;
66 private final Mailbox mMailbox;
70 final Mailbox mailbox) {
72 mMailbox = mailbox;
215 // Then, we need the serverId of the mailbox
216 cols = Utility.getRowColumns(context, Mailbox.CONTENT_URI, boxId,
  /packages/apps/Exchange/tests/src/com/android/exchange/adapter/
EmailSyncAdapterTests.java 29 import com.android.emailcommon.provider.Mailbox;
107 Mailbox box1 = EmailContentSetupUtils.setupMailbox("box1", mAccount.mId, true,
168 void setupSyncParserAndAdapter(Account account, Mailbox mailbox) throws IOException {
169 EasSyncService service = getTestService(account, mailbox);
  /external/chromium_org/content/common/gpu/
gpu_command_buffer_stub.h 34 struct Mailbox;
154 void OnProduceFrontBuffer(const gpu::Mailbox& mailbox);
  /external/chromium_org/ppapi/proxy/
ppapi_command_buffer_proxy.cc 48 bool PpapiCommandBufferProxy::ProduceFrontBuffer(const gpu::Mailbox& mailbox) {
  /external/chromium_org/ui/compositor/
layer.cc 504 void Layer::SetTextureMailbox(const cc::TextureMailbox& mailbox,
517 texture_layer_->SetTextureMailbox(mailbox);
518 mailbox_ = mailbox;
665 bool Layer::PrepareTextureMailbox(cc::TextureMailbox* mailbox,
  /packages/apps/Email/tests/src/com/android/email/mail/store/
ImapStoreUnitTests.java 57 import com.android.emailcommon.provider.Mailbox;
87 * {@link Mailbox#FLAG_ACCEPTS_MOVED_MAIL} and {@link Mailbox#FLAG_HOLDS_MAIL}.
538 * TODO: Test the process of opening and indexing a mailbox with one unread message in it.
2307 Mailbox mailbox = new Mailbox(); local
    [all...]
  /external/chromium_org/gpu/command_buffer/client/
gles2_c_lib_autogen.h 703 void GLES2GenMailboxCHROMIUM(GLbyte* mailbox) {
704 gles2::GetGLContext()->GenMailboxCHROMIUM(mailbox);
706 void GLES2ProduceTextureCHROMIUM(GLenum target, const GLbyte* mailbox) {
707 gles2::GetGLContext()->ProduceTextureCHROMIUM(target, mailbox);
709 void GLES2ConsumeTextureCHROMIUM(GLenum target, const GLbyte* mailbox) {
710 gles2::GetGLContext()->ConsumeTextureCHROMIUM(target, mailbox);
    [all...]
gles2_trace_implementation_impl_autogen.h     [all...]
  /packages/apps/Exchange/src/com/android/exchange/adapter/
EmailSyncAdapter.java 55 import com.android.emailcommon.provider.Mailbox;
153 || mMailbox.mType == Mailbox.TYPE_INBOX) {
217 // Permanently delete if in trash mailbox
220 boolean isTrashMailbox = mMailbox.mType == Mailbox.TYPE_TRASH;
319 if (mMailbox.mType == Mailbox.TYPE_INBOX) {
326 uri = ContentUris.withAppendedId(Mailbox.CONTENT_URI, mMailbox.mId);
394 * Return the estimated number of items to be synced in the current mailbox, based on the
490 final InputStream in, final Mailbox mailbox, final Account account)
492 super(context, resolver, in, mailbox, account)
    [all...]
  /external/chromium_org/gpu/
command_buffer_common.target.darwin-arm.mk 31 gpu/command_buffer/common/mailbox.cc
command_buffer_common.target.darwin-mips.mk 31 gpu/command_buffer/common/mailbox.cc

Completed in 925 milliseconds

1 2 34 5 6