HomeSort by relevance Sort by last modified time
    Searched refs:mailbox (Results 1 - 25 of 168) sorted by null

1 2 3 4 5 6 7

  /external/chromium_org/gpu/command_buffer/common/
mailbox_holder.cc 11 MailboxHolder::MailboxHolder(const Mailbox& mailbox,
14 : mailbox(mailbox),
mailbox_holder.h 11 #include "gpu/command_buffer/common/mailbox.h"
18 MailboxHolder(const gpu::Mailbox& mailbox,
21 gpu::Mailbox mailbox; member in struct:gpu::MailboxHolder
  /external/chromium_org/cc/layers/
texture_layer_client.h 16 // Returns true and provides a mailbox if a new frame is available.
18 // and the old mailbox is to be reused.
20 TextureMailbox* mailbox,
texture_layer.cc 116 const TextureMailbox& mailbox,
120 DCHECK(!mailbox.IsValid() || !holder_ref_ ||
121 !mailbox.Equals(holder_ref_->holder()->mailbox()) ||
123 DCHECK_EQ(mailbox.IsValid(), !!release_callback);
125 // If we never commited the mailbox, we need to release it here.
126 if (mailbox.IsValid()) {
128 TextureMailboxHolder::Create(mailbox, release_callback.Pass());
139 // The active frame needs to be replaced and the mailbox returned before the
145 const TextureMailbox& mailbox,
209 TextureMailbox mailbox; local
    [all...]
texture_layer.h 38 const TextureMailbox& mailbox() const { return mailbox_; } function in class:cc::TextureLayer::TextureMailboxHolder
50 const TextureMailbox& mailbox,
58 const TextureMailbox& mailbox,
84 // Used when mailbox names are specified instead of texture IDs.
124 // Code path for plugins which supply their own mailbox.
125 void SetTextureMailbox(const TextureMailbox& mailbox,
132 void SetTextureMailboxWithoutReleaseCallback(const TextureMailbox& mailbox);
149 const TextureMailbox& mailbox,
  /external/smack/src/org/xbill/DNS/
RPRecord.java 19 private Name mailbox; field in class:RPRecord
31 * @param mailbox The responsible person
35 RPRecord(Name name, int dclass, long ttl, Name mailbox, Name textDomain) {
38 this.mailbox = checkName("mailbox", mailbox);
44 mailbox = new Name(in);
50 mailbox = st.getName(origin);
58 sb.append(mailbox);
64 /** Gets the mailbox address of the RP Record *
    [all...]
MBRecord.java 6 * Mailbox Record - specifies a host containing a mailbox.
24 * @param mailbox The host containing the mailbox for the domain.
27 MBRecord(Name name, int dclass, long ttl, Name mailbox) {
28 super(name, Type.MB, dclass, ttl, mailbox, "mailbox");
31 /** Gets the mailbox for the domain */
MGRecord.java 6 * Mail Group Record - specifies a mailbox which is a member of a mail group.
24 * @param mailbox The mailbox that is a member of the group specified by the
28 MGRecord(Name name, int dclass, long ttl, Name mailbox) {
29 super(name, Type.MG, dclass, ttl, mailbox, "mailbox");
32 /** Gets the mailbox in the mail group specified by the domain */
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/
MailboxField.java 27 import org.apache.james.mime4j.field.address.Mailbox;
32 private final Mailbox mailbox; field in class:MailboxField
35 protected MailboxField(final String name, final String body, final String raw, final Mailbox mailbox, final ParseException parseException) {
37 this.mailbox = mailbox;
41 public Mailbox getMailbox() {
42 return mailbox;
53 Mailbox mailbox = null local
    [all...]
  /external/chromium_org/content/browser/compositor/
image_transport_factory_browsertest.cc 44 scoped_refptr<OwnedMailbox> mailbox = local
46 EXPECT_FALSE(mailbox->mailbox().IsZero());
66 EXPECT_TRUE(mailbox->mailbox().IsZero());
77 EXPECT_TRUE(mailbox_->mailbox().IsZero());
106 EXPECT_FALSE(mailbox_->mailbox().IsZero());
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
reflector_impl.cc 29 main.mailbox = new OwnedMailbox(helper);
33 &ReflectorImpl::InitOnImplThread, this, main.mailbox->holder()));
90 main.mailbox = NULL;
123 main.mailbox = new OwnedMailbox(helper);
130 main.mailbox->holder(),
171 static void ReleaseMailbox(scoped_refptr<OwnedMailbox> mailbox,
174 mailbox->UpdateSyncPoint(sync_point);
191 mailbox_holder.mailbox, mailbox_holder.sync_point);
204 if (!main.mirroring_layer || !main.mailbox ||
205 main.mailbox->mailbox().IsZero()
    [all...]
  /external/chromium_org/cc/output/
gl_frame_data.h 12 #include "gpu/command_buffer/common/mailbox.h"
23 gpu::Mailbox mailbox; member in class:cc::GLFrameData
  /external/chromium_org/gpu/command_buffer/service/
mailbox_manager.h 14 #include "gpu/command_buffer/common/mailbox.h"
31 // Look up the texture definition from the named mailbox.
32 Texture* ConsumeTexture(unsigned target, const Mailbox& mailbox);
34 // Put the texture into the named mailbox.
36 const Mailbox& mailbox,
47 // Destroy any mailbox that reference the given texture.
57 TargetName(unsigned target, const Mailbox& mailbox);
59 Mailbox mailbox; member in struct:gpu::gles2::MailboxManager::TargetName
    [all...]
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/content/renderer/
child_frame_compositing_helper.cc 220 void ChildFrameCompositingHelper::MailboxReleased(SwapBuffersInfo mailbox,
223 if (mailbox.type == SOFTWARE_COMPOSITOR_FRAME) {
224 delete mailbox.shared_memory;
225 mailbox.shared_memory = NULL;
227 // Reset mailbox's name if the resource was lost.
228 mailbox.name.SetZero();
232 if (last_host_id_ != mailbox.host_id ||
233 last_output_surface_id_ != mailbox.output_surface_id ||
234 last_route_id_ != mailbox.route_id)
237 if (mailbox.type == SOFTWARE_COMPOSITOR_FRAME
    [all...]
  /external/chromium_org/cc/resources/
texture_mailbox.cc 20 TextureMailbox::TextureMailbox(const gpu::Mailbox& mailbox,
23 : mailbox_holder_(mailbox, target, sync_point),
41 return IsTexture() && !memcmp(mailbox_holder_.mailbox.name,
42 other.mailbox_holder_.mailbox.name,
43 sizeof(mailbox_holder_.mailbox.name));
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; }
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
  /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
  /external/chromium_org/content/renderer/compositor_bindings/
web_external_texture_layer_impl.cc 66 cc::TextureMailbox* mailbox,
79 gpu::Mailbox name;
82 *mailbox = cc::TextureMailbox(bitmap->shared_memory(), bitmap->size());
84 *mailbox =
87 mailbox->set_allow_overlay(client_mailbox.allowOverlay);
89 if (mailbox->IsValid()) {
112 const blink::WebExternalTextureMailbox& mailbox,
122 memcpy(available_mailbox.name, mailbox.name, sizeof(available_mailbox.name));
web_external_texture_layer_impl.h 49 cc::TextureMailbox* mailbox,
56 const blink::WebExternalTextureMailbox& mailbox,
  /packages/apps/Email/src/com/android/email/provider/
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...]
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/gpu/
DrawingBufferTest.cpp 83 virtual void genMailboxCHROMIUM(WGC3Dbyte* mailbox)
87 memset(mailbox, m_currentMailboxByte, sizeof(temp.name));
90 virtual void produceTextureCHROMIUM(WGC3Denum target, const WGC3Dbyte* mailbox)
243 blink::WebExternalTextureMailbox mailbox; local
248 // Produce one mailbox at size 100x100.
250 EXPECT_TRUE(m_drawingBuffer->prepareMailbox(&mailbox, 0));
255 m_drawingBuffer->mailboxReleased(mailbox);
257 // Produce a mailbox at this size.
259 EXPECT_TRUE(m_drawingBuffer->prepareMailbox(&mailbox, 0));
264 m_drawingBuffer->mailboxReleased(mailbox);
378 blink::WebExternalTextureMailbox mailbox; local
430 blink::WebExternalTextureMailbox mailbox; local
    [all...]
  /external/chromium_org/content/common/
frame_param_macros.h 27 IPC_STRUCT_MEMBER(gpu::Mailbox, mailbox)
44 IPC_STRUCT_MEMBER(gpu::Mailbox, mailbox)

Completed in 209 milliseconds

1 2 3 4 5 6 7