Searched defs:attachments (Results 1 - 25 of 80) sorted by relevance

1234

/external/deqp/framework/opengl/
H A DgluStrUtil.cpp98 detail::EnumPointerFmt getInvalidateAttachmentStr (const deUint32* attachments, int numAttachments) argument
100 return detail::EnumPointerFmt(attachments, (deUint32)numAttachments, getInvalidateAttachmentName);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
H A DMailer.java166 // a method for sending mail with attachments
167 String aSubject, String aMessage, String[] attachments) {
214 for (int i = 0; i < attachments.length; i++) {
217 FileDataSource attachment = new FileDataSource(attachments[i]);
219 File attachmentFile=new File(attachments[i]);
165 sendMultiPartMessage( String aSubject, String aMessage, String[] attachments) argument
/external/chromium_org/sync/internal_api/attachments/
H A Dattachment_service_proxy.cc5 #include "sync/internal_api/public/attachments/attachment_service_proxy.h"
18 // Invokes |callback| with |result| and |attachments| in the |task_runner|
24 scoped_ptr<AttachmentMap> attachments) {
26 FROM_HERE, base::Bind(callback, result, base::Passed(&attachments)));
29 // Invokes |callback| with |result| and |attachments| in the |task_runner|
20 ProxyGetOrDownloadCallback( const scoped_refptr<base::SequencedTaskRunner>& task_runner, const AttachmentService::GetOrDownloadCallback& callback, const AttachmentService::GetOrDownloadResult& result, scoped_ptr<AttachmentMap> attachments) argument
H A Dattachment_service_impl.cc5 #include "sync/internal_api/public/attachments/attachment_service_impl.h"
13 #include "sync/api/attachments/attachment.h"
14 #include "sync/api/attachments/fake_attachment_store.h"
15 #include "sync/internal_api/public/attachments/fake_attachment_downloader.h"
16 #include "sync/internal_api/public/attachments/fake_attachment_uploader.h"
22 // consumer once all attachments are either retrieved or reported unavailable.
30 // |callback| will be posted on current thread when all attachments retrieved
35 // Attachment was just retrieved. Add it to retrieved attachments.
52 // Requests for these attachments are still in progress.
193 scoped_ptr<AttachmentMap> attachments,
190 ReadDone( const scoped_refptr<GetOrDownloadState>& state, const AttachmentStore::Result& result, scoped_ptr<AttachmentMap> attachments, scoped_ptr<AttachmentIdList> unavailable_attachment_ids) argument
301 ReadDoneNowUpload( const AttachmentStore::Result& result, scoped_ptr<AttachmentMap> attachments, scoped_ptr<AttachmentIdList> unavailable_attachment_ids) argument
[all...]
H A Dattachment_service_impl_unittest.cc5 #include "sync/internal_api/public/attachments/attachment_service_impl.h"
12 #include "sync/internal_api/public/attachments/fake_attachment_downloader.h"
13 #include "sync/internal_api/public/attachments/fake_attachment_uploader.h"
30 virtual void Write(const AttachmentList& attachments,
32 write_attachments.push_back(attachments);
50 scoped_ptr<AttachmentMap> attachments(new AttachmentMap());
57 attachments->insert(std::make_pair(*iter, attachment));
69 base::Passed(&attachments),
76 AttachmentList attachments = write_attachments.back(); local
216 scoped_ptr<AttachmentMap> attachments) {
215 DownloadDone(const AttachmentService::GetOrDownloadResult& result, scoped_ptr<AttachmentMap> attachments) argument
[all...]
/external/chromium_org/components/feedback/
H A Dfeedback_common.h76 size_t attachments() const { return attachments_.size(); } function in class:FeedbackCommon
/external/chromium_org/sync/api/attachments/
H A Dfake_attachment_store.cc5 #include "sync/api/attachments/fake_attachment_store.h"
13 #include "sync/api/attachments/attachment.h"
26 void Write(const AttachmentList& attachments, const WriteCallback& callback);
73 void FakeAttachmentStore::Backend::Write(const AttachmentList& attachments, argument
75 AttachmentList::const_iterator iter = attachments.begin();
76 AttachmentList::const_iterator end = attachments.end();
111 void FakeAttachmentStore::Write(const AttachmentList& attachments, argument
117 attachments,
H A Dfake_attachment_store_unittest.cc5 #include "sync/api/attachments/fake_attachment_store.h"
12 #include "sync/api/attachments/attachment.h"
26 scoped_ptr<AttachmentMap> attachments; member in class:syncer::FakeAttachmentStoreTest
44 &attachments,
65 attachments.reset();
87 // Verify that we do not overwrite existing attachments and that we do not treat
90 // Create two attachments with the same id but different data.
115 EXPECT_EQ(attachments->size(), 1U);
117 AttachmentMap::const_iterator a1 = attachments->find(attachment1.GetId());
118 EXPECT_TRUE(a1 != attachments
[all...]
/external/chromium_org/third_party/mesa/src/src/egl/drivers/dri2/
H A Dplatform_drm.c245 unsigned int *attachments, int count,
253 assert(attachments[i] < __DRI_BUFFER_COUNT);
256 switch (attachments[i]) {
264 if (get_aux_bo(dri2_surf, attachments[i], attachments[i + 1],
286 unsigned int *attachments, int count,
301 attachments_with_format[2*i] = attachments[i];
243 dri2_get_buffers_with_format(__DRIdrawable *driDrawable, int *width, int *height, unsigned int *attachments, int count, int *out_count, void *loaderPrivate) argument
284 dri2_get_buffers(__DRIdrawable * driDrawable, int *width, int *height, unsigned int *attachments, int count, int *out_count, void *loaderPrivate) argument
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xorg/
H A Dxorg_dri2.c242 dri2_create_buffers(DrawablePtr pDraw, unsigned int *attachments, int count) argument
257 buffers[i].attachment = attachments[i];
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
H A Dnouveau_context.c251 unsigned int attachments[10]; local
260 attachments[i++] = __DRI_BUFFER_FRONT_LEFT;
262 attachments[i++] = __DRI_BUFFER_BACK_LEFT;
264 attachments[i++] = __DRI_BUFFER_DEPTH_STENCIL;
266 attachments[i++] = __DRI_BUFFER_DEPTH;
268 attachments[i++] = __DRI_BUFFER_STENCIL;
271 attachments, i, &count,
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/r200/
H A Dradeon_common_context.c344 unsigned int attachments[10]; local
377 attachments[i++] = __DRI_BUFFER_FRONT_LEFT;
378 attachments[i++] = radeon_bits_per_pixel(draw->color_rb[0]);
383 attachments[i++] = __DRI_BUFFER_BACK_LEFT;
384 attachments[i++] = radeon_bits_per_pixel(draw->color_rb[1]);
391 attachments[i++] = __DRI_BUFFER_DEPTH_STENCIL;
392 attachments[i++] = radeon_bits_per_pixel(depth_rb);
394 attachments[i++] = __DRI_BUFFER_DEPTH;
395 attachments[i++] = radeon_bits_per_pixel(depth_rb);
397 attachments[
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
H A Dradeon_common_context.c344 unsigned int attachments[10]; local
377 attachments[i++] = __DRI_BUFFER_FRONT_LEFT;
378 attachments[i++] = radeon_bits_per_pixel(draw->color_rb[0]);
383 attachments[i++] = __DRI_BUFFER_BACK_LEFT;
384 attachments[i++] = radeon_bits_per_pixel(draw->color_rb[1]);
391 attachments[i++] = __DRI_BUFFER_DEPTH_STENCIL;
392 attachments[i++] = radeon_bits_per_pixel(depth_rb);
394 attachments[i++] = __DRI_BUFFER_DEPTH;
395 attachments[i++] = radeon_bits_per_pixel(depth_rb);
397 attachments[
[all...]
/external/mesa3d/src/egl/drivers/dri2/
H A Dplatform_drm.c245 unsigned int *attachments, int count,
253 assert(attachments[i] < __DRI_BUFFER_COUNT);
256 switch (attachments[i]) {
264 if (get_aux_bo(dri2_surf, attachments[i], attachments[i + 1],
286 unsigned int *attachments, int count,
301 attachments_with_format[2*i] = attachments[i];
243 dri2_get_buffers_with_format(__DRIdrawable *driDrawable, int *width, int *height, unsigned int *attachments, int count, int *out_count, void *loaderPrivate) argument
284 dri2_get_buffers(__DRIdrawable * driDrawable, int *width, int *height, unsigned int *attachments, int count, int *out_count, void *loaderPrivate) argument
/external/mesa3d/src/gallium/state_trackers/xorg/
H A Dxorg_dri2.c242 dri2_create_buffers(DrawablePtr pDraw, unsigned int *attachments, int count) argument
257 buffers[i].attachment = attachments[i];
/external/mesa3d/src/mesa/drivers/dri/nouveau/
H A Dnouveau_context.c251 unsigned int attachments[10]; local
260 attachments[i++] = __DRI_BUFFER_FRONT_LEFT;
262 attachments[i++] = __DRI_BUFFER_BACK_LEFT;
264 attachments[i++] = __DRI_BUFFER_DEPTH_STENCIL;
266 attachments[i++] = __DRI_BUFFER_DEPTH;
268 attachments[i++] = __DRI_BUFFER_STENCIL;
271 attachments, i, &count,
/external/mesa3d/src/mesa/drivers/dri/r200/
H A Dradeon_common_context.c344 unsigned int attachments[10]; local
377 attachments[i++] = __DRI_BUFFER_FRONT_LEFT;
378 attachments[i++] = radeon_bits_per_pixel(draw->color_rb[0]);
383 attachments[i++] = __DRI_BUFFER_BACK_LEFT;
384 attachments[i++] = radeon_bits_per_pixel(draw->color_rb[1]);
391 attachments[i++] = __DRI_BUFFER_DEPTH_STENCIL;
392 attachments[i++] = radeon_bits_per_pixel(depth_rb);
394 attachments[i++] = __DRI_BUFFER_DEPTH;
395 attachments[i++] = radeon_bits_per_pixel(depth_rb);
397 attachments[
[all...]
/external/mesa3d/src/mesa/drivers/dri/radeon/
H A Dradeon_common_context.c344 unsigned int attachments[10]; local
377 attachments[i++] = __DRI_BUFFER_FRONT_LEFT;
378 attachments[i++] = radeon_bits_per_pixel(draw->color_rb[0]);
383 attachments[i++] = __DRI_BUFFER_BACK_LEFT;
384 attachments[i++] = radeon_bits_per_pixel(draw->color_rb[1]);
391 attachments[i++] = __DRI_BUFFER_DEPTH_STENCIL;
392 attachments[i++] = radeon_bits_per_pixel(depth_rb);
394 attachments[i++] = __DRI_BUFFER_DEPTH;
395 attachments[i++] = radeon_bits_per_pixel(depth_rb);
397 attachments[
[all...]
/external/chromium_org/third_party/angle/src/libGLESv2/
H A DFramebuffer.cpp431 // all color attachments must have the same width and height
438 // all color attachments have the same number of samples for the FBO to be complete.
444 // in GLES 2.0, all color attachments attachments must have the same number of bitplanes
491 // depth texture attachments require OES/ANGLE_depth_texture
546 // texture stencil attachments come along as part
605 void Framebuffer::invalidate(const Caps &caps, GLsizei numAttachments, const GLenum *attachments) argument
608 invalidateSub(caps, numAttachments, attachments, 0, 0, maxDimension, maxDimension);
611 void Framebuffer::invalidateSub(const Caps &caps, GLsizei numAttachments, const GLenum *attachments, argument
617 GLenum attachmentTarget = attachments[attachInde
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/vl/
H A Dvl_winsys_dri.c71 static const unsigned int attachments[1] = { XCB_DRI2_ATTACHMENT_BUFFER_BACK_LEFT }; variable
135 scrn->buffers_cookie = xcb_dri2_get_buffers_unchecked(scrn->conn, scrn->drawable, 1, 1, attachments);
190 cookie = xcb_dri2_get_buffers_unchecked(scrn->conn, drawable, 1, 1, attachments);
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/egl/x11/
H A Dx11_screen.c377 int *width, int *height, unsigned int *attachments,
384 attachments, num_ins, num_outs);
387 attachments, num_ins, num_outs);
376 x11_drawable_get_buffers(struct x11_screen *xscr, Drawable drawable, int *width, int *height, unsigned int *attachments, boolean with_format, int num_ins, int *num_outs) argument
/external/chromium_org/third_party/mesa/src/src/gbm/backends/dri/
H A Dgbm_dri.c67 unsigned int *attachments, int count,
76 return dri->get_buffers(driDrawable, width, height, attachments,
93 unsigned int *attachments, int count,
103 dri->get_buffers_with_format(driDrawable, width, height, attachments,
65 dri_get_buffers(__DRIdrawable * driDrawable, int *width, int *height, unsigned int *attachments, int count, int *out_count, void *data) argument
91 dri_get_buffers_with_format(__DRIdrawable * driDrawable, int *width, int *height, unsigned int *attachments, int count, int *out_count, void *data) argument
/external/chromium_org/third_party/mesa/src/src/glx/
H A Ddri2.c402 unsigned int *attachments, int count, int *outCount)
422 p[i] = attachments[i];
461 unsigned int *attachments, int count, int *outCount)
481 p[i] = attachments[i];
400 DRI2GetBuffers(Display * dpy, XID drawable, int *width, int *height, unsigned int *attachments, int count, int *outCount) argument
459 DRI2GetBuffersWithFormat(Display * dpy, XID drawable, int *width, int *height, unsigned int *attachments, int count, int *outCount) argument
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
H A Dintel_context.c929 unsigned *attachments = calloc(2 * max_attachments, sizeof(unsigned)); local
940 attachments[i++] = __DRI_BUFFER_FRONT_LEFT;
941 attachments[i++] = intel_bits_per_pixel(front_rb);
945 attachments[i++] = __DRI_BUFFER_BACK_LEFT;
946 attachments[i++] = intel_bits_per_pixel(back_rb);
954 attachments, i / 2,
957 free(attachments);
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dintel_context.c929 unsigned *attachments = calloc(2 * max_attachments, sizeof(unsigned)); local
940 attachments[i++] = __DRI_BUFFER_FRONT_LEFT;
941 attachments[i++] = intel_bits_per_pixel(front_rb);
945 attachments[i++] = __DRI_BUFFER_BACK_LEFT;
946 attachments[i++] = intel_bits_per_pixel(back_rb);
954 attachments, i / 2,
957 free(attachments);

Completed in 3582 milliseconds

1234