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

1 23 4 5 6

  /external/chromium_org/cc/layers/
texture_layer_impl.h 64 void SetTextureMailbox(const TextureMailbox& mailbox);
80 // This is a resource that's a GL copy of a software texture mailbox.
texture_layer_unittest.cc 246 virtual bool PrepareTextureMailbox(TextureMailbox* mailbox,
248 *mailbox = TextureMailbox();
308 MOCK_METHOD3(Release, void(const std::string& mailbox,
329 gpu::Mailbox m1;
332 gpu::Mailbox m2;
441 TextureMailbox mailbox(
446 layer_->SetTextureMailbox(mailbox);
466 // Case #1: change mailbox before the commit. The old mailbox should be
477 // Case #2: change mailbox after the commit (and draw), where th
    [all...]
texture_layer_impl.cc 39 void TextureLayerImpl::SetTextureMailbox(const TextureMailbox& mailbox) {
42 texture_mailbox_ = mailbox;
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/chromium/
Canvas2DLayerBridge.cpp 293 // No available mailbox: create one.
308 void Canvas2DLayerBridge::mailboxReleased(const WebKit::WebExternalTextureMailbox& mailbox)
312 if (!memcmp(mailboxInfo->m_mailbox.name, mailbox.name, sizeof(mailbox.name))) {
313 mailboxInfo->m_mailbox.syncPoint = mailbox.syncPoint;
  /external/chromium_org/cc/test/
test_web_graphics_context_3d.h 102 virtual void genMailboxCHROMIUM(WebKit::WGC3Dbyte* mailbox);
104 const WebKit::WGC3Dbyte* mailbox) { }
106 const WebKit::WGC3Dbyte* mailbox) { }
layer_tree_pixel_test.cc 364 gpu::Mailbox mailbox; local
365 context3d->genMailboxCHROMIUM(mailbox.name);
366 context3d->produceTextureCHROMIUM(GL_TEXTURE_2D, mailbox.name);
371 mailbox,
test_web_graphics_context_3d.cc 372 void TestWebGraphicsContext3D::genMailboxCHROMIUM(WebKit::WGC3Dbyte* mailbox) {
381 memset(mailbox, 0, 64);
387 mailbox[0] = mailbox_name1;
388 mailbox[1] = mailbox_name2;
389 mailbox[2] = '\0';
  /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;
197 private static final int MAILBOX = MAILBOX_BASE;
269 array.put(MAILBOX_BASE >> BASE_SHIFT, Mailbox.TABLE_NAME);
389 * When we sync folders, we do two passes: First to create the mailbox rows, and second
398 // Update the parentKey for each mailbox row to match the _id of the row whose
405 // update mailbox set parentKey = (select _id from mailbox as b where
406 // mailbox.parentServerId=b.serverId and mailbox.parentServerId not null and
407 // mailbox.accountKey=b.accountKey
2924 Mailbox mailbox = Mailbox.restoreMailboxWithId(context, mailboxId); local
3747 Mailbox mailbox = Mailbox.restoreMailboxWithId(context, mailboxId); local
3812 Mailbox mailbox = Mailbox.restoreMailboxWithId(mContext, mMailboxId); local
4392 Mailbox mailbox = Mailbox.restoreMailboxOfType(getContext(), accountId, mailboxType); local
4581 final Mailbox mailbox = local
5100 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...]
  /external/chromium_org/content/common/gpu/client/
gl_helper.cc 20 #include "gpu/command_buffer/common/mailbox.h"
129 WebGLId ConsumeMailboxToTexture(const gpu::Mailbox& mailbox,
131 return helper_->ConsumeMailboxToTexture(mailbox, sync_point);
233 const gpu::Mailbox& mailbox,
271 const gpu::Mailbox& mailbox,
576 const gpu::Mailbox& src_mailbox,
693 WebKit::WebGLId GLHelper::ConsumeMailboxToTexture(const gpu::Mailbox& mailbox
    [all...]
gl_helper.h 21 struct Mailbox;
242 const gpu::Mailbox& src_mailbox,
290 // Creates a texture and consumes a mailbox into it. Returns 0 on failure.
291 // Note the mailbox is assumed to be GL_TEXTURE_2D.
292 WebKit::WebGLId ConsumeMailboxToTexture(const gpu::Mailbox& mailbox,
384 const gpu::Mailbox& mailbox,
  /packages/apps/Email/src/com/android/email/service/
Pop3Service.java 50 import com.android.emailcommon.provider.Mailbox;
90 long inboxId = Mailbox.findMailboxOfType(mContext, att.mAccountKey, Mailbox.TYPE_INBOX);
91 if (inboxId == Mailbox.NO_MAILBOX) return;
120 final Mailbox folder, final int deltaMessageCount) throws MessagingException {
163 // Note: mailbox key and account key not needed - they are projected
174 * @param toMailbox the destination mailbox we're syncing
179 final Mailbox toMailbox) throws MessagingException {
234 * @param mailbox the mailbox to syn
    [all...]
  /external/chromium_org/content/browser/renderer_host/
render_widget_host_view_android.cc 70 const gpu::Mailbox& return_mailbox,
75 ack.gl_frame_data->mailbox = return_mailbox;
689 if (!frame->gl_frame_data || frame->gl_frame_data->mailbox.IsZero())
693 current_mailbox_ = gpu::Mailbox();
712 BuffersSwapped(frame->gl_frame_data->mailbox, output_surface_id, callback);
743 NOTREACHED() << "Deprecated. Use --composite-to-mailbox.";
759 gpu::Mailbox mailbox; local
762 reinterpret_cast<char*>(mailbox.name));
767 BuffersSwapped(mailbox, kUndefinedOutputSurfaceId, callback)
    [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() ]
  /packages/apps/Exchange/src/com/android/exchange/eas/
EasSync.java 30 import com.android.emailcommon.provider.Mailbox;
52 * Performs an Exchange Sync operation for one {@link Mailbox}.
61 // State for the mailbox we're currently syncing.
125 ContentUris.withAppendedId(Mailbox.CONTENT_URI, mMailboxId),
126 Mailbox.ProjectionSyncData.PROJECTION, null, null, null);
131 Mailbox.ProjectionSyncData.COLUMN_SERVER_ID);
133 Mailbox.ProjectionSyncData.COLUMN_SYNC_KEY);
136 // For some reason we can get here without a valid mailbox sync key
140 "Tried to sync mailbox %d with invalid mailbox sync key"
192 final Mailbox mailbox = Mailbox.restoreMailboxWithId(mContext, mMailboxId); local
    [all...]
  /external/chromium_org/gpu/command_buffer/service/
gles2_cmd_decoder.h 31 struct Mailbox;
125 virtual bool ProduceFrontBuffer(const Mailbox& mailbox) = 0;
gles2_cmd_decoder_mock.h 12 #include "gpu/command_buffer/common/mailbox.h"
47 MOCK_METHOD1(ProduceFrontBuffer, bool(const Mailbox& mailbox));
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/gpu/
DrawingBuffer.h 68 WebKit::WebExternalTextureMailbox mailbox; member in struct:WebCore::DrawingBuffer::MailboxInfo
  /external/chromium_org/content/common/
cc_messages.h 221 IPC_STRUCT_TRAITS_MEMBER(mailbox)
245 IPC_STRUCT_TRAITS_MEMBER(mailbox)
  /external/chromium_org/media/base/
video_frame.h 11 #include "gpu/command_buffer/common/mailbox.h"
60 // on the class is destroyed. The VideoFrame holds a reference to the mailbox
61 // but anyone else who queries the mailbox should also hold a reference while
62 // it is uses the mailbox, to ensure it remains valid. When finished with the
63 // mailbox, call Return() with a new sync point, to ensure the mailbox remains
71 MailboxHolder(const gpu::Mailbox& mailbox,
75 const gpu::Mailbox& mailbox() const { return mailbox_; function in class:media::VideoFrame::MailboxHolder
    [all...]
  /external/chromium_org/ui/compositor/
layer.h 255 // Set new TextureMailbox for this layer. Note that |mailbox| may hold a
256 // shared memory resource or an actual mailbox for a texture.
257 void SetTextureMailbox(const cc::TextureMailbox& mailbox, float scale_factor);
323 virtual bool PrepareTextureMailbox(cc::TextureMailbox* mailbox,
  /packages/apps/Exchange/src/com/android/exchange/service/
EasMailboxSyncHandler.java 14 import com.android.emailcommon.provider.Mailbox;
27 * Performs an Exchange mailbox sync for "normal" mailboxes.
44 final Account account, final Mailbox mailbox, final Bundle syncExtras,
46 super(context, contentResolver, account, mailbox, syncExtras, syncResult);
121 // Permanently delete if in trash mailbox
124 final boolean isTrashMailbox = mMailbox.mType == Mailbox.TYPE_TRASH;
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
Mailbox.java 45 public class Mailbox extends EmailContent implements MailboxColumns, Parcelable {
53 * which mailbox to sync. Is intentionally private, we have helper functions
67 * Sync extras key to specify that only a specific mailbox type should be synced.
71 * Sync extras key when syncing a mailbox to specify how many additional messages to sync.
77 public static final String TABLE_NAME = "Mailbox";
84 CONTENT_URI = Uri.parse(EmailContent.CONTENT_URI + "/mailbox");
232 * Projection to use when reading {@link MailboxColumns#ACCOUNT_KEY} for a mailbox.
251 // Sentinel values for the mSyncInterval field of both Mailbox records
257 // Ping indicates that the EAS mailbox is synced based on a "ping" from the server
260 // Push-Hold indicates an EAS push or ping Mailbox shouldn't sync just ye
520 Mailbox mailbox = null; local
540 Mailbox mailbox = restoreMailboxForPath(context, accountId, path); local
    [all...]

Completed in 2811 milliseconds

1 23 4 5 6