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

1 23 4 5 6

  /external/chromium_org/media/base/
video_frame_unittest.cc 227 gpu::Mailbox(),
244 // destroyed with the new sync point, when the mailbox is accessed by a caller.
248 gpu::Mailbox mailbox; local
249 mailbox.name[0] = 50;
256 mailbox,
269 EXPECT_EQ(mailbox.name[0], mailbox_holder->mailbox().name[0]);
  /external/chromium_org/cc/resources/
resource_provider_unittest.cc 84 void(GLenum target, const GLbyte* mailbox));
86 void(GLenum target, const GLbyte* mailbox));
97 // Shared data between multiple ResourceProviderContext. This contains mailbox
107 void GenMailbox(GLbyte* mailbox) {
108 memset(mailbox, 0, sizeof(GLbyte[64]));
109 memcpy(mailbox, &next_mailbox_, sizeof(next_mailbox_));
116 unsigned mailbox = 0; local
117 memcpy(&mailbox, mailbox_name, sizeof(mailbox));
118 ASSERT_TRUE(mailbox && mailbox < next_mailbox_)
321 GLbyte mailbox[64]; member in struct:cc::__anon3908::ContextSharedData::PendingProduceTexture
1588 gpu::Mailbox mailbox; local
1997 gpu::Mailbox mailbox; local
    [all...]
  /external/chromium_org/cc/test/
test_gles2_interface.cc 352 void TestGLES2Interface::GenMailboxCHROMIUM(GLbyte* mailbox) {
353 test_context_->genMailboxCHROMIUM(mailbox);
357 const GLbyte* mailbox) {
358 test_context_->produceTextureCHROMIUM(target, mailbox);
362 const GLbyte* mailbox) {
363 test_context_->consumeTextureCHROMIUM(target, mailbox);
test_gles2_interface.h 159 virtual void GenMailboxCHROMIUM(GLbyte* mailbox) OVERRIDE;
161 const GLbyte* mailbox) OVERRIDE;
163 const GLbyte* mailbox) OVERRIDE;
layer_tree_pixel_test.cc 378 gpu::Mailbox mailbox; local
379 context3d->genMailboxCHROMIUM(mailbox.name);
380 context3d->produceTextureCHROMIUM(GL_TEXTURE_2D, mailbox.name);
384 *texture_mailbox = TextureMailbox(mailbox, sync_point);
  /external/chromium_org/gpu/GLES2/
gl2extchromium.h 55 GL_APICALL void GL_APIENTRY glGenMailboxCHROMIUM(GLbyte* mailbox);
57 GLenum target, const GLbyte* mailbox);
59 GLenum target, const GLbyte* mailbox);
61 typedef void (GL_APIENTRYP PFNGLGENMAILBOXCHROMIUMPROC) (GLbyte* mailbox);
63 GLenum target, const GLbyte* mailbox);
65 GLenum target, const GLbyte* mailbox);
  /external/chromium_org/content/browser/renderer_host/
software_frame_manager.cc 163 cc::TextureMailbox* mailbox,
166 *mailbox = cc::TextureMailbox(
  /external/chromium_org/content/renderer/pepper/
pepper_platform_context_3d.cc 103 std::vector<gpu::Mailbox> names;
122 void PlatformContext3D::GetBackingMailbox(gpu::Mailbox* mailbox,
124 *mailbox = mailbox_;
  /packages/apps/Email/src/com/android/email/mail/store/
Pop3Store.java 36 import com.android.emailcommon.provider.Mailbox;
59 /** The name of the only mailbox available to POP3 accounts */
108 Mailbox mailbox = Mailbox.restoreMailboxOfType(mContext, mAccount.mId, Mailbox.TYPE_INBOX); local
109 if (mailbox == null) {
110 mailbox = Mailbox.newSystemMailbox(mContext, mAccount.mId, Mailbox.TYPE_INBOX)
    [all...]
  /packages/apps/Exchange/src/com/android/exchange/adapter/
SearchParser.java 12 import com.android.emailcommon.provider.Mailbox;
29 private final Mailbox mMailbox;
35 final InputStream in, final Mailbox mailbox, final Account account,
41 mMailbox = mailbox;
  /packages/apps/Exchange/src/com/android/exchange/eas/
EasSyncBase.java 10 import com.android.emailcommon.provider.Mailbox;
36 private final Mailbox mMailbox;
42 public EasSyncBase(final Context context, final Account account, final Mailbox mailbox) {
44 mMailbox = mailbox;
48 * Get the sync key for this mailbox.
86 LogUtils.d(TAG, "Syncing account %d mailbox %d (class %s) with syncKey %s", mAccount.mId,
157 * @param type The type of the {@link Mailbox} that we're trying to sync.
162 case Mailbox.TYPE_MAIL:
163 case Mailbox.TYPE_INBOX
    [all...]
EasSync.java 29 import com.android.emailcommon.provider.Mailbox;
51 * Performs an Exchange Sync operation for one {@link Mailbox}.
57 /** Result code indicating that the mailbox for an upsync is no longer present. */
64 // State for the mailbox we're currently syncing.
133 ContentUris.withAppendedId(Mailbox.CONTENT_URI, mMailboxId),
134 Mailbox.ProjectionSyncData.PROJECTION, null, null, null);
139 Mailbox.ProjectionSyncData.COLUMN_SERVER_ID);
141 Mailbox.ProjectionSyncData.COLUMN_SYNC_KEY);
143 // For some reason we can get here without a valid mailbox sync key
147 "Tried to sync mailbox %d with invalid mailbox sync key"
215 final Mailbox mailbox = Mailbox.restoreMailboxWithId(mContext, mMailboxId); local
    [all...]
  /external/chromium_org/cc/layers/
texture_layer_impl.h 63 void SetTextureMailbox(const TextureMailbox& mailbox,
80 // This is a resource that's a GL copy of a software texture mailbox.
texture_layer_impl.cc 43 const TextureMailbox& mailbox,
46 DCHECK_EQ(mailbox.IsValid(), !!release_callback);
48 texture_mailbox_ = mailbox;
texture_layer_unittest.cc 255 TextureMailbox* mailbox,
258 *mailbox = TextureMailbox();
318 MOCK_METHOD3(Release, void(const std::string& mailbox,
339 gpu::Mailbox m1;
342 gpu::Mailbox m2;
546 // The main thread ref is the last one, so the mailbox is released back to the
605 // The second impl reference is destroyed last, causing the mailbox to be
661 // The second impl reference is destroyed last, causing the mailbox to be
765 TextureMailbox mailbox(std::string(64, mailbox_char));
770 layer_->SetTextureMailbox(mailbox, callback.Pass())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
Canvas2DLayerBridge.cpp 343 // No available mailbox: create one.
358 void Canvas2DLayerBridge::mailboxReleased(const blink::WebExternalTextureMailbox& mailbox)
362 if (!memcmp(mailboxInfo->m_mailbox.name, mailbox.name, sizeof(mailbox.name))) {
363 mailboxInfo->m_mailbox.syncPoint = mailbox.syncPoint;
367 // last live mailbox and the layer bridge is not externally
  /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 88 import com.android.emailcommon.provider.Mailbox;
199 private static final int MAILBOX = MAILBOX_BASE;
271 array.put(MAILBOX_BASE >> BASE_SHIFT, Mailbox.TABLE_NAME);
394 * When we sync folders, we do two passes: First to create the mailbox rows, and second
403 // Update the parentKey for each mailbox row to match the _id of the row whose
410 // update mailbox set parentKey = (select _id from mailbox as b where
411 // mailbox.parentServerId=b.serverId and mailbox.parentServerId not null and
412 // mailbox.accountKey=b.accountKey
2938 Mailbox mailbox = Mailbox.restoreMailboxWithId(context, mailboxId); local
3761 Mailbox mailbox = Mailbox.restoreMailboxWithId(context, mailboxId); local
3826 Mailbox mailbox = Mailbox.restoreMailboxWithId(mContext, mMailboxId); local
4406 Mailbox mailbox = Mailbox.restoreMailboxOfType(getContext(), accountId, mailboxType); local
4595 final Mailbox mailbox = local
5114 Mailbox mailbox = Mailbox.restoreMailboxWithId(getContext(), id); local
    [all...]
  /packages/apps/Email/src/com/android/email2/ui/
MailActivityEmail.java 39 import com.android.emailcommon.provider.Mailbox;
94 EmailProvider.LEGACY_AUTHORITY, "view/mailbox", MATCH_LEGACY_SHORTCUT_INTENT);
178 final Mailbox mailbox = Mailbox.restoreMailboxWithId(this, mailboxId); local
179 if (mailbox == null) {
180 LogUtils.e(LOG_TAG, "unable to restore mailbox");
184 final Intent viewIntent = getViewIntent(mailbox.mAccountKey, mailboxId);
300 LogUtils.e(LOG_TAG, "Null folder cursor for account %d, mailbox %d",
310 LogUtils.e(LOG_TAG, "Empty folder cursor for account %d, mailbox %d"
    [all...]
  /packages/apps/Email/emailsync/src/com/android/emailsync/
SyncManager.java 56 import com.android.emailcommon.provider.Mailbox;
93 // The SyncServiceManager's mailbox "id"
112 // Mailbox was marked push
129 MailboxColumns.ACCOUNT_KEY + "=? and type in (" + Mailbox.TYPE_INBOX + ','
130 + Mailbox.TYPE_EAS_ACCOUNT_MAILBOX + ',' + Mailbox.TYPE_CONTACTS + ','
131 + Mailbox.TYPE_CALENDAR + ')';
133 MailboxColumns.ACCOUNT_KEY + "=? and type = " + Mailbox.TYPE_INBOX ;
136 "(" + MailboxColumns.TYPE + '=' + Mailbox.TYPE_OUTBOX
137 + " or " + MailboxColumns.SYNC_INTERVAL + "<" + Mailbox.CHECK_INTERVAL_NEVER + ')
1214 final Mailbox mailbox = service.mMailbox; local
    [all...]
  /packages/apps/Email/src/com/android/email/service/
Pop3Service.java 50 import com.android.emailcommon.provider.Mailbox;
83 long inboxId = Mailbox.findMailboxOfType(mContext, att.mAccountKey, Mailbox.TYPE_INBOX);
84 if (inboxId == Mailbox.NO_MAILBOX) return;
108 final Mailbox folder, final int deltaMessageCount) throws MessagingException {
151 // Note: mailbox key and account key not needed - they are projected
162 * @param toMailbox the destination mailbox we're syncing
167 final Mailbox toMailbox) throws MessagingException {
222 * @param mailbox the mailbox to syn
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/parser/
AddressListParser.jj 183 void mailbox() :
184 {/*@bgen(jjtree) mailbox */
190 {/*@bgen(jjtree) mailbox */
265 [ mailbox() ]
268 [ mailbox() ]
  /external/chromium_org/gpu/command_buffer/service/
gles2_cmd_decoder.h 32 struct Mailbox;
120 virtual void ProduceFrontBuffer(const Mailbox& mailbox) = 0;
gles2_cmd_decoder_mock.h 12 #include "gpu/command_buffer/common/mailbox.h"
46 MOCK_METHOD1(ProduceFrontBuffer, void(const Mailbox& mailbox));
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/gpu/
DrawingBuffer.h 69 blink::WebExternalTextureMailbox mailbox; member in struct:WebCore::DrawingBuffer::MailboxInfo

Completed in 335 milliseconds

1 23 4 5 6