HomeSort by: relevance | last modified time | path
    Searched defs:shmid (Results 1 - 15 of 15) sorted by relevancy

  /xsrc/external/mit/libXext/dist/include/X11/extensions/
XShm.h 52 int shmid; /* kernel id */ member in struct:__anon5797
  /xsrc/external/mit/xcb-util/dist/image/
xcb_image.h 167 uint32_t shmid; member in struct:xcb_shm_segment_info_t
  /xsrc/external/mit/xorg-server/dist/Xext/
shmint.h 65 int shmid; member in struct:_ShmDesc
xf86bigfont.c 105 int shmid = -1; local
111 shmid = shmget(IPC_PRIVATE, 4096, IPC_CREAT);
112 if (shmid != -1) {
114 shmctl(shmid, IPC_RMID, NULL);
144 int shmid; member in struct:_ShmDesc
154 int shmid; local
176 shmid = shmget(IPC_PRIVATE, size, S_IWUSR | S_IRUSR | S_IRGRP | S_IROTH);
177 if (shmid == -1) {
184 if ((addr = shmat(shmid, 0, 0)) == (char *) -1) {
187 shmctl(shmid, IPC_RMID, (void *) 0)
333 int shmid; local
    [all...]
shm.c 172 int shmid = -1; local
178 shmid = shmget(IPC_PRIVATE, 4096, IPC_CREAT);
180 if (shmid != -1) {
182 shmctl(shmid, IPC_RMID, NULL);
386 if (!SHMDESC_IS_FD(shmdesc) && shmdesc->shmid == stuff->shmid)
401 shmdesc->addr = shmat(stuff->shmid, 0,
403 if ((shmdesc->addr == ((char *) -1)) || SHMSTAT(stuff->shmid, &buf)) {
418 shmdesc->shmid = stuff->shmid;
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/winsys/sw/dri/
dri_sw_winsys.c 60 int shmid; member in struct:dri_sw_displaytarget
102 dri_sw_dt->shmid = shmget(IPC_PRIVATE, size, IPC_CREAT | 0600);
103 if (dri_sw_dt->shmid < 0)
106 addr = (char *) shmat(dri_sw_dt->shmid, 0, 0);
108 shmctl(dri_sw_dt->shmid, IPC_RMID, 0);
145 dri_sw_dt->shmid = -1;
173 if (dri_sw_dt->shmid >= 0) {
176 shmctl(dri_sw_dt->shmid, IPC_RMID, 0);
232 if (dri_sw_dt->shmid < 0)
234 whandle->handle = dri_sw_dt->shmid;
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/winsys/sw/dri/
dri_sw_winsys.c 56 int shmid; member in struct:dri_sw_displaytarget
98 dri_sw_dt->shmid = shmget(IPC_PRIVATE, size, IPC_CREAT | 0600);
99 if (dri_sw_dt->shmid < 0)
102 addr = (char *) shmat(dri_sw_dt->shmid, 0, 0);
104 shmctl(dri_sw_dt->shmid, IPC_RMID, 0);
141 dri_sw_dt->shmid = -1;
169 if (dri_sw_dt->shmid >= 0) {
172 shmctl(dri_sw_dt->shmid, IPC_RMID, 0);
228 if (dri_sw_dt->shmid < 0)
230 whandle->handle = dri_sw_dt->shmid;
    [all...]
  /xsrc/external/mit/xorgproto/dist/include/X11/extensions/
xf86bigfproto.h 79 CARD32 shmid; member in struct:__anon11848
82 /* and if nCharInfos > 0 && shmid == -1,
shmproto.h 79 CARD32 shmid; member in struct:_ShmAttach
  /xsrc/external/mit/xorg-server.old/dist/Xext/
xf86bigfont.c 113 int shmid = -1; local
119 shmid = shmget(IPC_PRIVATE, 4096, IPC_CREAT);
120 if (shmid != -1)
123 shmctl(shmid, IPC_RMID, NULL);
154 int shmid; member in struct:_ShmDesc
165 int shmid; local
187 shmid = shmget(IPC_PRIVATE, size, S_IWUSR | S_IRUSR | S_IRGRP | S_IROTH);
188 if (shmid == -1) {
195 if ((addr = shmat(shmid, 0, 0)) == (char *)-1) {
198 shmctl(shmid, IPC_RMID, (void *) 0)
354 int shmid; local
    [all...]
shm.c 95 int shmid; member in struct:_ShmDesc
183 int shmid = -1; local
189 shmid = shmget(IPC_PRIVATE, 4096, IPC_CREAT);
191 if (shmid != -1)
194 shmctl(shmid, IPC_RMID, NULL);
398 shmdesc && (shmdesc->shmid != stuff->shmid);
412 shmdesc->addr = shmat(stuff->shmid, 0,
415 SHMSTAT(stuff->shmid, &buf))
431 shmdesc->shmid = stuff->shmid
    [all...]
xvdisp.c 1020 int shmid; member in struct:_ShmDesc
  /xsrc/external/mit/xorg-server/dist/hw/vfb/
InitOutput.c 102 int shmid; member in struct:__anon9914
546 pvfb->shmid = shmget(IPC_PRIVATE, pvfb->sizeInBytes, IPC_CREAT | 0777);
547 if (pvfb->shmid < 0) {
556 pvfb->pXWDHeader = (XWDFileHeader *) shmat(pvfb->shmid, 0, 0);
564 ErrorF("screen %d shmid %d\n", (int) (pvfb - vfbScreens), pvfb->shmid);
  /xsrc/external/mit/xorg-server.old/dist/hw/vfb/
InitOutput.c 102 int shmid; member in struct:__anon10508
619 pvfb->shmid = shmget(IPC_PRIVATE, pvfb->sizeInBytes, IPC_CREAT|0777);
620 if (pvfb->shmid < 0)
629 pvfb->pXWDHeader = (XWDFileHeader *)shmat(pvfb->shmid, 0, 0);
638 ErrorF("screen %d shmid %d\n", (int) (pvfb - vfbScreens), pvfb->shmid);
  /xsrc/external/mit/MesaLib/dist/src/vulkan/wsi/
wsi_common_x11.c 853 int shmid; member in struct:x11_image
1388 image->shmid = shmget(IPC_PRIVATE, size, IPC_CREAT | 0600);
1389 if (image->shmid < 0)
1392 uint8_t *addr = (uint8_t *)shmat(image->shmid, 0, 0);
1394 shmctl(image->shmid, IPC_RMID, 0);
1441 image->shmid,

Completed in 24 milliseconds