Searched refs:mailbox (Results 1 - 25 of 96) sorted by relevance

1234

/external/smack/src/org/xbill/DNS/
H A DRPRecord.java19 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) { argument
38 this.mailbox = checkName("mailbox", mailbox);
44 mailbox = new Name(in);
50 mailbox = st.getName(origin);
58 sb.append(mailbox);
64 /** Gets the mailbox addres
[all...]
H A DMBRecord.java6 * 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) { argument
28 super(name, Type.MB, dclass, ttl, mailbox, "mailbox");
31 /** Gets the mailbox for the domain */
H A DMGRecord.java6 * 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) { argument
29 super(name, Type.MG, dclass, ttl, mailbox, "mailbox");
32 /** Gets the mailbox in the mail group specified by the domain */
/external/chromium_org/third_party/WebKit/Source/web/tests/
H A DDrawingBufferTest.cpp80 virtual void genMailboxCHROMIUM(WGC3Dbyte* mailbox) argument
84 memset(mailbox, m_currentMailboxByte, sizeof(temp.name));
87 virtual void produceTextureCHROMIUM(WGC3Denum target, const WGC3Dbyte* mailbox) argument
136 blink::WebExternalTextureMailbox mailbox; local
137 EXPECT_FALSE(m_drawingBuffer->prepareMailbox(&mailbox, 0));
142 blink::WebExternalTextureMailbox mailbox; local
147 // Produce one mailbox at size 100x100.
149 EXPECT_TRUE(m_drawingBuffer->prepareMailbox(&mailbox, 0));
154 m_drawingBuffer->mailboxReleased(mailbox);
156 // Produce a mailbox a
[all...]
/external/chromium_org/gpu/command_buffer/service/
H A Dmailbox_manager.cc26 void MailboxManager::GenerateMailbox(Mailbox* mailbox) { argument
27 crypto::RandBytes(mailbox->name, sizeof(mailbox->name));
31 const Mailbox& mailbox) {
32 TargetName target_name(target, mailbox);
39 // See if it's visible in another mailbox manager, and if so make it visible
41 Texture* texture = sync_->CreateTextureFromMailbox(target, mailbox);
53 const Mailbox& mailbox,
55 TargetName target_name(target, mailbox);
101 MailboxManager::TargetName::TargetName(unsigned target, const Mailbox& mailbox) argument
30 ConsumeTexture(unsigned target, const Mailbox& mailbox) argument
52 ProduceTexture(unsigned target, const Mailbox& mailbox, Texture* texture) argument
[all...]
H A Dmailbox_manager.h14 #include "gpu/command_buffer/common/mailbox.h"
36 // Generate a unique unguessable mailbox name.
37 void GenerateMailbox(Mailbox* mailbox);
39 // Look up the texture definition from the named mailbox.
40 Texture* ConsumeTexture(unsigned target, const Mailbox& mailbox);
42 // Put the texture into the named mailbox.
44 const Mailbox& mailbox,
55 // Destroy any mailbox that reference the given texture.
65 TargetName(unsigned target, const Mailbox& mailbox);
67 Mailbox mailbox; member in struct:gpu::gles2::MailboxManager::TargetName
[all...]
H A Dmailbox_synchronizer.h8 #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
H A Dmailbox_synchronizer.cc64 const Mailbox& mailbox)
65 : target(target), mailbox(mailbox) {}
115 const Mailbox& mailbox) {
117 TargetName target_name(target, mailbox);
145 TargetName target_name(texture_it->first.target, texture_it->first.mailbox);
162 // We previously did not associate this texture with the given mailbox.
163 // Unlink other texture groups from the mailbox.
172 // Unlink other textures from this mailbox in case the name is not new.
63 TargetName(unsigned target, const Mailbox& mailbox) argument
114 CreateTextureFromMailbox(unsigned target, const Mailbox& mailbox) argument
/external/chromium_org/content/renderer/browser_plugin/
H A Dbrowser_plugin_compositing_helper.cc143 SwapBuffersInfo mailbox,
146 if (mailbox.type == SOFTWARE_COMPOSITOR_FRAME) {
147 delete mailbox.shared_memory;
148 mailbox.shared_memory = NULL;
150 // Reset mailbox's name if the resource was lost.
151 mailbox.name.SetZero();
155 if (last_host_id_ != mailbox.host_id ||
156 last_output_surface_id_ != mailbox.output_surface_id ||
157 last_route_id_ != mailbox.route_id)
160 if (mailbox
142 MailboxReleased( SwapBuffersInfo mailbox, unsigned sync_point, bool lost_resource) argument
226 OnBuffersSwappedPrivate( const SwapBuffersInfo& mailbox, unsigned sync_point, float device_scale_factor) argument
[all...]
/external/kernel-headers/original/linux/
H A Domap_csmi.h26 void (*ack)(int mailbox);
27 int (*data)(int mailbox);
28 void (*reset)(int mailbox);
29 void (*start)(int mailbox);
30 void (*stop)(int mailbox);
61 int omap_csmi_send_mailbox(int mailbox, void *data, size_t size, unsigned int flags);
62 void omap_csmi_read_mailbox(int mailbox, void *data, size_t size);
63 int omap_csmi_install_mailbox_handlers(int mailbox, omap_csmi_mailbox_handlers_t handlers);
64 int omap_csmi_uninstall_mailbox_handlers(int mailbox, omap_csmi_mailbox_handlers_t handlers);
66 //mailbox channe
[all...]
/external/chromium_org/cc/layers/
H A Dtexture_layer.cc135 const TextureMailbox& mailbox,
139 DCHECK(!mailbox.IsValid() || !holder_ref_ ||
140 !mailbox.Equals(holder_ref_->holder()->mailbox()));
141 DCHECK_EQ(mailbox.IsValid(), !!release_callback);
143 // If we never commited the mailbox, we need to release it here.
144 if (mailbox.IsValid())
145 holder_ref_ = MailboxHolder::Create(mailbox, release_callback.Pass());
155 // The active frame needs to be replaced and the mailbox returned before the
161 const TextureMailbox& mailbox,
134 SetTextureMailboxInternal( const TextureMailbox& mailbox, scoped_ptr<SingleReleaseCallback> release_callback, bool requires_commit) argument
160 SetTextureMailbox( const TextureMailbox& mailbox, scoped_ptr<SingleReleaseCallback> release_callback) argument
221 TextureMailbox mailbox; local
296 MailboxHolder( const TextureMailbox& mailbox, scoped_ptr<SingleReleaseCallback> release_callback) argument
312 Create( const TextureMailbox& mailbox, scoped_ptr<SingleReleaseCallback> release_callback) argument
[all...]
H A Dtexture_layer_client.h20 // Returns true and provides a mailbox if a new frame is available.
22 // and the old mailbox is to be reused.
24 TextureMailbox* mailbox,
H A Dtexture_layer.h38 const TextureMailbox& mailbox() const { return mailbox_; } function in class:cc::TextureLayer::MailboxHolder
50 const TextureMailbox& mailbox,
57 explicit MailboxHolder(const TextureMailbox& mailbox,
88 // Used when mailbox names are specified instead of texture IDs.
128 // Code path for plugins which supply their own mailbox.
130 void SetTextureMailbox(const TextureMailbox& mailbox,
150 const TextureMailbox& mailbox,
/external/chromium_org/cc/output/
H A Dgl_frame_data.h12 #include "gpu/command_buffer/common/mailbox.h"
23 gpu::Mailbox mailbox; member in class:cc::GLFrameData
/external/chromium_org/content/renderer/gpu/
H A Dmailbox_output_surface.h22 // 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
52 TransferableFrame(uint32 texture_id, const gpu::Mailbox& mailbox, const gfx::Size size) argument
H A Dmailbox_output_surface.cc96 context3d->genMailboxCHROMIUM(current_backing_.mailbox.name);
98 GL_TEXTURE_2D, current_backing_.mailbox.name);
158 if (!ack.gl_frame_data->mailbox.IsZero()) {
164 DCHECK(!it->mailbox.IsZero());
165 if (!memcmp(it->mailbox.name,
166 ack.gl_frame_data->mailbox.name,
167 sizeof(it->mailbox.name))) {
185 // If it does not return a mailbox, it discarded the frontbuffer which is
200 DCHECK(!current_backing_.mailbox.IsZero() ||
203 frame->gl_frame_data->mailbox
[all...]
/external/chromium_org/cc/resources/
H A Dvideo_resource_updater.h80 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
82 PlaneResource(unsigned resource_id, gfx::Size resource_size, ResourceFormat resource_format, gpu::Mailbox mailbox) argument
H A Dtransferable_resource.h13 #include "gpu/command_buffer/common/mailbox.h"
37 gpu::Mailbox mailbox; member in struct:cc::TransferableResource
H A Dvideo_resource_updater.cc181 gpu::Mailbox mailbox; local
188 mailbox = recycled_resources_[i].mailbox;
203 DCHECK(mailbox.IsZero());
210 GLC(gl, gl->GenMailboxCHROMIUM(mailbox.name));
211 if (mailbox.IsZero()) {
218 GLC(gl, gl->ProduceTextureCHROMIUM(GL_TEXTURE_2D, mailbox.name));
232 DCHECK(software_compositor || !mailbox.IsZero());
236 mailbox));
250 DCHECK(plane_resources[0].mailbox
[all...]
/external/chromium_org/webkit/renderer/compositor_bindings/
H A Dweb_external_texture_layer_impl.cc70 cc::TextureMailbox* mailbox,
86 *mailbox = cc::TextureMailbox(bitmap->shared_memory(), bitmap->size());
88 *mailbox = cc::TextureMailbox(name, client_mailbox.syncPoint);
90 if (mailbox->IsValid()) {
113 const blink::WebExternalTextureMailbox& mailbox,
123 memcpy(available_mailbox.name, mailbox.name, sizeof(available_mailbox.name));
69 PrepareTextureMailbox( cc::TextureMailbox* mailbox, scoped_ptr<cc::SingleReleaseCallback>* release_callback, bool use_shared_memory) argument
111 DidReleaseMailbox( base::WeakPtr<WebExternalTextureLayerImpl> layer, const blink::WebExternalTextureMailbox& mailbox, WebExternalBitmapImpl* bitmap, unsigned sync_point, bool lost_resource) argument
H A Dweb_external_texture_layer_impl.h50 cc::TextureMailbox* mailbox,
57 const blink::WebExternalTextureMailbox& mailbox,
/external/chromium_org/gpu/command_buffer/client/
H A Dgles2_implementation_impl_autogen.h1682 GLenum target, const GLbyte* mailbox) {
1684 GPU_CLIENT_LOG("[" << GetLogPrefix() << "] glProduceTextureCHROMIUM(" << GLES2Util::GetStringTextureBindTarget(target) << ", " << static_cast<const void*>(mailbox) << ")"); // NOLINT
1685 GPU_CLIENT_LOG("values: " << mailbox[0] << ", " << mailbox[1] << ", " << mailbox[2] << ", " << mailbox[3] << ", " << mailbox[4] << ", " << mailbox[5] << ", " << mailbox[6] << ", " << mailbox[
1681 ProduceTextureCHROMIUM( GLenum target, const GLbyte* mailbox) argument
1690 ConsumeTextureCHROMIUM( GLenum target, const GLbyte* mailbox) argument
[all...]
/external/chromium_org/gpu/command_buffer/tests/
H A Dgl_texture_mailbox_unittests.cc10 #include "gpu/command_buffer/common/mailbox.h"
160 GLbyte mailbox[GL_MAILBOX_SIZE_CHROMIUM]; local
161 glGenMailboxCHROMIUM(mailbox);
163 glProduceTextureCHROMIUM(GL_TEXTURE_2D, mailbox);
172 glConsumeTextureCHROMIUM(GL_TEXTURE_2D, mailbox);
222 // The mailbox should still exist too.
226 glConsumeTextureCHROMIUM(GL_TEXTURE_2D, mailbox);
237 glConsumeTextureCHROMIUM(GL_TEXTURE_2D, mailbox);
245 Mailbox mailbox; local
246 glGenMailboxCHROMIUM(mailbox
296 Mailbox mailbox[2]; local
[all...]
/external/chromium_org/content/browser/aura/
H A Downed_mailbox.h7 #include "gpu/command_buffer/common/mailbox.h"
23 const gpu::Mailbox& mailbox() const { return mailbox_; } function in class:content::OwnedMailbox
/external/chromium_org/content/browser/renderer_host/
H A Dsoftware_frame_manager.h57 cc::TextureMailbox* mailbox,

Completed in 464 milliseconds

1234