| /xsrc/external/mit/libX11/dist/src/ |
| H A D | Clear.c | 37 register xClearAreaReq *req; local in function:XClearWindow 40 GetReq(ClearArea, req); 41 req->window = w; 42 req->x = req->y = req->width = req->height = 0; 44 req->exposures = xFalse;
|
| H A D | GrButton.c | 45 register xGrabButtonReq *req; local in function:XGrabButton 47 GetReq(GrabButton, req); 48 req->modifiers = modifiers; 49 req->button = button; 50 req->grabWindow = grab_window; 51 req->ownerEvents = owner_events; 52 req->eventMask = event_mask; 53 req->pointerMode = pointer_mode; 54 req->keyboardMode = keyboard_mode; 55 req [all...] |
| H A D | SetSSaver.c | 41 register xSetScreenSaverReq *req; local in function:XSetScreenSaver 44 GetReq(SetScreenSaver, req); 45 req->timeout = timeout; 46 req->interval = interval; 47 req->preferBlank = prefer_blank; 48 req->allowExpose = allow_exp;
|
| H A D | WarpPtr.c | 44 register xWarpPointerReq *req; local in function:XWarpPointer 47 GetReq(WarpPointer, req); 48 req->srcWid = src_win; 49 req->dstWid = dest_win; 50 req->srcX = src_x; 51 req->srcY = src_y; 52 req->srcWidth = src_width; 53 req->srcHeight = src_height; 54 req->dstX = dest_x; 55 req [all...] |
| H A D | CrWindow.c | 44 register xCreateWindowReq *req; local in function:XCreateSimpleWindow 47 GetReqExtra(CreateWindow, 8, req); 48 req->parent = parent; 49 req->x = x; 50 req->y = y; 51 req->width = width; 52 req->height = height; 53 req->borderWidth = borderWidth; 54 req->depth = 0; 55 req [all...] |
| H A D | ChPntCon.c | 42 register xChangePointerControlReq *req; local in function:XChangePointerControl 45 GetReq(ChangePointerControl, req); 46 req->doAccel = do_acc; 47 req->doThresh = do_thresh; 48 req->accelNum = acc_numerator; 49 req->accelDenum = acc_denominator; 50 req->threshold = threshold;
|
| H A D | ConvSel.c | 41 register xConvertSelectionReq *req; local in function:XConvertSelection 44 GetReq(ConvertSelection, req); 45 req->selection = selection; 46 req->target = target; 47 req->property = property; 48 req->requestor = requestor; 49 req->time = time;
|
| H A D | RecolorC.c | 39 register xRecolorCursorReq *req; local in function:XRecolorCursor 42 GetReq(RecolorCursor, req); 43 req->cursor = cursor; 44 req->foreRed = foreground->red; 45 req->foreGreen = foreground->green; 46 req->foreBlue = foreground->blue; 47 req->backRed = background->red; 48 req->backGreen = background->green; 49 req->backBlue = background->blue;
|
| H A D | Backgnd.c | 38 register xChangeWindowAttributesReq *req; local in function:XSetWindowBackground 41 GetReqExtra (ChangeWindowAttributes, 4, req); 42 req->window = w; 43 req->valueMask = CWBackPixel; 44 OneDataCard32 (dpy, NEXTPTR(req,xChangeWindowAttributesReq), pixel);
|
| H A D | Border.c | 38 register xChangeWindowAttributesReq *req; local in function:XSetWindowBorder 41 GetReqExtra (ChangeWindowAttributes, 4, req); 42 req->window = w; 43 req->valueMask = CWBorderPixel; 44 OneDataCard32 (dpy, NEXTPTR(req,xChangeWindowAttributesReq), pixel);
|
| H A D | ChActPGb.c | 39 register xChangeActivePointerGrabReq *req; local in function:XChangeActivePointerGrab 42 GetReq(ChangeActivePointerGrab, req); 43 req->eventMask = event_mask; 44 req->cursor = curs; 45 req->time = time;
|
| H A D | ChCmap.c | 38 register xChangeWindowAttributesReq *req; local in function:XSetWindowColormap 41 GetReqExtra (ChangeWindowAttributes, 4, req); 42 req->window = w; 43 req->valueMask = CWColormap; 44 OneDataCard32 (dpy, NEXTPTR(req,xChangeWindowAttributesReq), colormap);
|
| H A D | DefCursor.c | 38 register xChangeWindowAttributesReq *req; local in function:XDefineCursor 41 GetReqExtra (ChangeWindowAttributes, 4, req); 42 req->window = w; 43 req->valueMask = CWCursor; 44 OneDataCard32 (dpy, NEXTPTR(req,xChangeWindowAttributesReq), cursor);
|
| H A D | LowerWin.c | 37 register xConfigureWindowReq *req; local in function:XLowerWindow 41 GetReqExtra(ConfigureWindow, 4, req); 42 req->window = w; 43 req->mask = CWStackMode; 44 OneDataCard32 (dpy, NEXTPTR(req,xConfigureWindowReq), val);
|
| H A D | PmapBgnd.c | 38 register xChangeWindowAttributesReq *req; local in function:XSetWindowBackgroundPixmap 40 GetReqExtra (ChangeWindowAttributes, 4, req); 41 req->window = w; 42 req->valueMask = CWBackPixmap; 43 OneDataCard32 (dpy, NEXTPTR(req,xChangeWindowAttributesReq), pixmap);
|
| H A D | PmapBord.c | 38 register xChangeWindowAttributesReq *req; local in function:XSetWindowBorderPixmap 40 GetReqExtra (ChangeWindowAttributes, 4, req); 41 req->window = w; 42 req->valueMask = CWBorderPixmap; 43 OneDataCard32 (dpy, NEXTPTR(req,xChangeWindowAttributesReq), pixmap);
|
| H A D | RaiseWin.c | 37 register xConfigureWindowReq *req; local in function:XRaiseWindow 41 GetReqExtra(ConfigureWindow, 4, req); 42 req->window = w; 43 req->mask = CWStackMode; 44 OneDataCard32 (dpy, NEXTPTR(req,xConfigureWindowReq), val);
|
| H A D | SelInput.c | 38 register xChangeWindowAttributesReq *req; local in function:XSelectInput 41 GetReqExtra (ChangeWindowAttributes, 4, req); 42 req->window = w; 43 req->valueMask = CWEventMask; 44 OneDataCard32 (dpy, NEXTPTR(req,xChangeWindowAttributesReq), mask);
|
| H A D | SetIFocus.c | 39 register xSetInputFocusReq *req; local in function:XSetInputFocus 42 GetReq(SetInputFocus, req); 43 req->focus = focus; 44 req->revertTo = revert_to; 45 req->time = time;
|
| H A D | SetSOwner.c | 39 register xSetSelectionOwnerReq *req; local in function:XSetSelectionOwner 42 GetReq(SetSelectionOwner,req); 43 req->selection = selection; 44 req->window = owner; 45 req->time = time;
|
| H A D | UndefCurs.c | 37 register xChangeWindowAttributesReq *req; local in function:XUndefineCursor 41 GetReqExtra (ChangeWindowAttributes, 4, req); 42 req->window = w; 43 req->valueMask = CWCursor; 44 OneDataCard32 (dpy, NEXTPTR(req,xChangeWindowAttributesReq), defcurs);
|
| H A D | UngrabBut.c | 39 register xUngrabButtonReq *req; local in function:XUngrabButton 42 GetReq(UngrabButton, req); 43 req->button = button; 44 req->modifiers = modifiers; 45 req->grabWindow = grab_window;
|
| H A D | UngrabKey.c | 39 register xUngrabKeyReq *req; local in function:XUngrabKey 42 GetReq(UngrabKey, req); 43 req->grabWindow = grab_window; 44 req->modifiers = modifiers; 45 req->key = key;
|
| H A D | Bell.c | 37 register xBellReq *req; local in function:XBell 40 GetReq(Bell,req); 41 req->percent = percent;
|
| H A D | ChClMode.c | 37 register xSetCloseDownModeReq *req; local in function:XSetCloseDownMode 40 GetReq(SetCloseDownMode, req); 41 req->mode = mode;
|