Home
last modified time | relevance | path

Searched refs:shminfo (Results 1 – 25 of 31) sorted by relevance

12

/third_party/flutter/skia/third_party/externals/sdl/src/video/x11/
DSDL_x11framebuffer.c90 XShmSegmentInfo *shminfo = &data->shminfo; in X11_CreateWindowFramebuffer() local
92 shminfo->shmid = shmget(IPC_PRIVATE, window->h*(*pitch), IPC_CREAT | 0777); in X11_CreateWindowFramebuffer()
93 if ( shminfo->shmid >= 0 ) { in X11_CreateWindowFramebuffer()
94 shminfo->shmaddr = (char *)shmat(shminfo->shmid, 0, 0); in X11_CreateWindowFramebuffer()
95 shminfo->readOnly = False; in X11_CreateWindowFramebuffer()
96 if ( shminfo->shmaddr != (char *)-1 ) { in X11_CreateWindowFramebuffer()
99 X11_XShmAttach(display, shminfo); in X11_CreateWindowFramebuffer()
103 shmdt(shminfo->shmaddr); in X11_CreateWindowFramebuffer()
107 shmctl(shminfo->shmid, IPC_RMID, NULL); in X11_CreateWindowFramebuffer()
114 shminfo->shmaddr, shminfo, in X11_CreateWindowFramebuffer()
[all …]
/third_party/mesa3d/src/gallium/winsys/sw/xlib/
Dxlib_sw_winsys.c78 XShmSegmentInfo shminfo; member
124 XShmSegmentInfo *const shminfo = & buf->shminfo; in alloc_shm() local
126 shminfo->shmid = -1; in alloc_shm()
127 shminfo->shmaddr = (char *) -1; in alloc_shm()
130 shminfo->shmid = shmget(IPC_PRIVATE, size, IPC_CREAT | 0600); in alloc_shm()
131 if (shminfo->shmid < 0) { in alloc_shm()
135 shminfo->shmaddr = (char *) shmat(shminfo->shmid, 0, 0); in alloc_shm()
136 if (shminfo->shmaddr == (char *) -1) { in alloc_shm()
137 shmctl(shminfo->shmid, IPC_RMID, 0); in alloc_shm()
141 shminfo->readOnly = False; in alloc_shm()
[all …]
/third_party/skia/third_party/externals/swiftshader/src/Main/
DFrameBufferX11.cpp66 x_image = libX11->XShmCreateImage(x_display, visual, depth, ZPixmap, 0, &shminfo, width, height); in FrameBufferX11()
68shminfo.shmid = shmget(IPC_PRIVATE, x_image->bytes_per_line * x_image->height, IPC_CREAT | SHM_R |… in FrameBufferX11()
69 shminfo.shmaddr = x_image->data = (char*)shmat(shminfo.shmid, 0, 0); in FrameBufferX11()
70 shminfo.readOnly = False; in FrameBufferX11()
73 libX11->XShmAttach(x_display, &shminfo); // May produce a BadAccess error in FrameBufferX11()
82 shmdt(shminfo.shmaddr); in FrameBufferX11()
83 shmctl(shminfo.shmid, IPC_RMID, 0); in FrameBufferX11()
114 libX11->XShmDetach(x_display, &shminfo); in ~FrameBufferX11()
116 shmdt(shminfo.shmaddr); in ~FrameBufferX11()
117 shmctl(shminfo.shmid, IPC_RMID, 0); in ~FrameBufferX11()
DlibX11.hpp45 …al *visual, unsigned int depth, int format, char *data, XShmSegmentInfo *shminfo, unsigned int wid…
46 Bool (*XShmAttach)(Display *display, XShmSegmentInfo *shminfo);
47 Bool (*XShmDetach)(Display *display, XShmSegmentInfo *shminfo);
/third_party/mesa3d/src/mesa/drivers/x11/
Dxm_buffer.c84 ZPixmap, NULL, &b->shminfo, in alloc_back_shm_ximage()
93 b->shminfo.shmid = shmget(IPC_PRIVATE, b->backxrb->ximage->bytes_per_line in alloc_back_shm_ximage()
95 if (b->shminfo.shmid < 0) { in alloc_back_shm_ximage()
104 b->shminfo.shmaddr = b->backxrb->ximage->data in alloc_back_shm_ximage()
105 = (char*)shmat(b->shminfo.shmid, 0, 0); in alloc_back_shm_ximage()
106 if (b->shminfo.shmaddr == (char *) -1) { in alloc_back_shm_ximage()
109 shmctl(b->shminfo.shmid, IPC_RMID, 0); in alloc_back_shm_ximage()
116 b->shminfo.readOnly = False; in alloc_back_shm_ximage()
120 XShmAttach(b->xm_visual->display, &b->shminfo); in alloc_back_shm_ximage()
128 shmdt(b->shminfo.shmaddr); in alloc_back_shm_ximage()
[all …]
/third_party/mesa3d/src/glx/
Ddrisw_glx.c62 if ((pdp->shminfo.shmid > 0) && (shmid != pdp->shminfo.shmid)) in XCreateDrawable()
63 XShmDetach(dpy, &pdp->shminfo); in XCreateDrawable()
67 pdp->shminfo.shmid = shmid; in XCreateDrawable()
73 &pdp->shminfo, /* shminfo */ in XCreateDrawable()
83 XShmAttach(dpy, &pdp->shminfo); in XCreateDrawable()
97 pdp->shminfo.shmid = -1; in XCreateDrawable()
124 if (pdp->shminfo.shmid > 0) in XDestroyDrawable()
125 XShmDetach(dpy, &pdp->shminfo); in XDestroyDrawable()
189 if (!pdp->ximage || shmid != pdp->shminfo.shmid) { in swrastXPutImage()
202 if (pdp->shminfo.shmid >= 0) { in swrastXPutImage()
[all …]
/third_party/skia/third_party/externals/swiftshader/src/WSI/
DlibX11.hpp47 …al *visual, unsigned int depth, int format, char *data, XShmSegmentInfo *shminfo, unsigned int wid…
48 Bool (*XShmAttach)(Display *display, XShmSegmentInfo *shminfo) = nullptr;
49 Bool (*XShmDetach)(Display *display, XShmSegmentInfo *shminfo) = nullptr;
/third_party/musl/arch/powerpc64/bits/
Dshm.h15 struct shminfo { struct
/third_party/musl/porting/linux/user/arch/generic/bits/
Dshm.h16 struct shminfo { struct
/third_party/musl/arch/generic/bits/
Dshm.h16 struct shminfo { struct
/third_party/ltp/testcases/kernel/syscalls/ipc/shmctl/
Dshmctl03.c20 struct shminfo info; in verify_ipcinfo()
/third_party/musl/arch/mips/bits/
Dshm.h21 struct shminfo { struct
/third_party/musl/arch/mipsn32/bits/
Dshm.h21 struct shminfo { struct
/third_party/musl/arch/powerpc/bits/
Dshm.h22 struct shminfo { struct
/third_party/musl/arch/i386/bits/
Dshm.h23 struct shminfo { struct
/third_party/musl/porting/liteos_a/kernel/include/bits/
Dshm.h25 struct shminfo { struct
/third_party/musl/arch/or1k/bits/
Dshm.h23 struct shminfo { struct
/third_party/musl/porting/uniproton/kernel/include/bits/
Dshm.h23 struct shminfo { struct
/third_party/musl/porting/liteos_m_iccarm/kernel/include/bits/
Dshm.h23 struct shminfo { struct
/third_party/musl/arch/microblaze/bits/
Dshm.h23 struct shminfo { struct
/third_party/musl/porting/liteos_m/kernel/include/bits/
Dshm.h23 struct shminfo { struct
/third_party/musl/porting/liteos_a_newlib/kernel/include/bits/
Dshm.h25 struct shminfo { struct
/third_party/musl/arch/sh/bits/
Dshm.h23 struct shminfo { struct
/third_party/musl/arch/arm/bits/
Dshm.h23 struct shminfo { struct
/third_party/musl/arch/m68k/bits/
Dshm.h23 struct shminfo { struct

12