Searched refs:clients (Results 1 - 25 of 126) sorted by relevance

123456

/xsrc/external/mit/xfs/dist/difs/
H A Dglobals.c59 ClientPtr *clients; variable in typeref:typename:ClientPtr *
H A Dmain.c109 clients = (ClientPtr *) FSallocarray(MAXCLIENTS, sizeof(ClientPtr));
110 if (!clients)
113 clients[i] = NullClient;
124 clients[SERVER_CLIENT] = serverClient;
/xsrc/external/mit/xorg-server.old/dist/hw/dmx/examples/
H A Dres.c46 XResClient *clients; local in function:main
76 XResQueryClients(display, &count, &clients);
78 printf("%d clients:\n", count);
83 XResQueryClientResources(display, clients[i].resource_base,
86 i, (long unsigned)clients[i].resource_base,
87 (long unsigned)clients[i].resource_mask, c);
96 XFree(clients);
/xsrc/external/mit/fontconfig/dist/conf.d/
H A D09-autohint-if-no-hinting.conf12 in both cases so that most clients would takes a look at the first place only.
/xsrc/external/mit/xorg-server.old/dist/composite/
H A Dcompalloc.c129 for (ccw = cw->clients; ccw; ccw = ccw->next)
177 cw->clients = 0;
185 ccw->next = cw->clients;
186 cw->clients = ccw;
240 for (prev = &cw->clients; (ccw = *prev); prev = &ccw->next)
251 if (!cw->clients)
284 MapWindow (pWin, clients[CLIENT_ID(id)]);
303 for (ccw = cw->clients; ccw; ccw = ccw->next)
327 for (ccw = csw->clients; ccw; ccw = ccw->next)
352 csw->clients
[all...]
H A Dcompint.h94 CompClientWindowPtr clients; member in struct:_CompWindow
105 CompClientWindowPtr clients; member in struct:_CompSubwindows
/xsrc/external/mit/xorg-server/dist/composite/
H A Dcompalloc.c156 for (ccw = cw->clients; ccw; ccw = ccw->next)
193 cw->clients = 0;
201 ccw->next = cw->clients;
202 cw->clients = ccw;
274 for (prev = &cw->clients; (ccw = *prev); prev = &ccw->next) {
283 if (!cw->clients) {
331 for (ccw = cw->clients; ccw; ccw = ccw->next)
354 for (ccw = csw->clients; ccw; ccw = ccw->next)
377 csw->clients = 0;
389 if (!csw->clients) {
[all...]
H A Dcompint.h95 CompClientWindowPtr clients; member in struct:_CompWindow
106 CompClientWindowPtr clients; member in struct:_CompSubwindows
/xsrc/external/mit/xorg-server/dist/dix/
H A Dglobals.c81 ClientPtr clients[MAXCLIENTS]; variable in typeref:typename:ClientPtr[]
83 int currentMaxClients; /* current size of clients array */
H A Dmain.c155 clients[i] = NullClient;
163 clients[0] = serverClient;
/xsrc/external/mit/libFS/dist/
H A DREADME.md4 This library is used by clients of X Font Servers (xfs), such as
/xsrc/external/mit/xorg-server.old/dist/Xext/
H A Dxres.c70 if(clients[i]) {
92 scratch.resource_base = clients[current_clients[i]]->clientAsMask;
130 if((clientID >= currentMaxClients) || !clients[clientID]) {
137 FindAllClientResources(clients[clientID], ResFindAllRes, counts);
199 /* Divide by refcnt as pixmap could be shared between clients,
252 if((clientID >= currentMaxClients) || !clients[clientID]) {
259 FindClientResourcesByType(clients[clientID], RT_PIXMAP, ResFindPixmaps,
265 FindClientResourcesByType(clients[clientID], RT_WINDOW,
272 FindClientResourcesByType(clients[clientID], RT_GC,
/xsrc/external/mit/xorg-server.old/dist/xkb/
H A DxkbEvents.c49 * - Core mapping notify events sent to clients for whom kbd is the
52 * - Xi mapping events, sent unconditionally to all clients who have
89 if (!clients[i] || clients[i]->clientState != ClientStateRunning)
92 /* Ignore clients which will have already received this.
95 if (xkb_event == XkbMapNotify && (clients[i]->mapNotifyMask & changed))
98 (clients[i]->xkbClientFlags & _XkbClientInitialized))
101 /* Don't send core events to clients who don't know about us. */
102 if (!XIShouldNotify(clients[i], kbd))
110 if (first_key >= clients[
[all...]
/xsrc/external/mit/xorg-server/dist/xkb/
H A DxkbEvents.c48 * - Core mapping notify events sent to clients for whom kbd is the
51 * - Xi mapping events, sent unconditionally to all clients who have
81 if (!clients[i] || clients[i]->clientState != ClientStateRunning)
84 /* XKB allows clients to restrict the MappingNotify events sent to
87 (clients[i]->xkbClientFlags & _XkbClientInitialized) &&
88 !(clients[i]->mapNotifyMask & changed))
94 (clients[i]->xkbClientFlags & _XkbClientInitialized))
97 /* Don't send core events to clients who don't know about us. */
98 if (!XIShouldNotify(clients[
[all...]
/xsrc/external/mit/xorg-server.old/dist/glx/
H A Dglxext.c387 ** is only one instance of the GL, and we use it to serve all GL clients by
447 if (clients[i] && glxGetClient(clients[i])->inUse)
448 IgnoreClient(clients[i]);
462 if (clients[i] && glxGetClient(clients[i])->inUse)
463 AttendClient(clients[i]);
537 /* If we're currently blocking GLX clients, just put this guy to
/xsrc/external/mit/libXres/dist/include/X11/extensions/
H A DXRes.h83 XResClient **clients
/xsrc/external/mit/xfs/dist/include/
H A Dclient.h56 extern ClientPtr *clients;
/xsrc/external/mit/xorg-server.old/dist/dix/
H A Dglobals.c81 ClientPtr clients[MAXCLIENTS]; variable in typeref:typename:ClientPtr[]
83 int currentMaxClients; /* current size of clients array */
H A Dmain.c172 clients[i] = NullClient;
180 clients[0] = serverClient;
H A Dinpututils.c85 /* Don't send irrelevant events to naïve clients. */
86 if (!clients[i] || clients[i]->clientState != ClientStateRunning)
89 if (!XIShouldNotify(clients[i], dev))
92 WriteEventsToClient(clients[i], 1, &core_mn);
/xsrc/external/mit/xorg-server/dist/Xext/
H A Dxres.c230 if (clients[i]) {
253 scratch.resource_base = clients[current_clients[i]]->clientAsMask;
307 if ((clientID >= currentMaxClients) || !clients[clientID]) {
314 FindAllClientResources(clients[clientID], ResFindAllRes, counts);
383 if ((clientID >= currentMaxClients) || !clients[clientID]) {
390 FindAllClientResources(clients[clientID], ResFindResourcePixmaps,
421 @param ctx The context record that tells which clients and id types
450 and information on which clients and masks have been
520 /** @brief Constructs a response about all clients, based on a client id specs
540 if (clients[
[all...]
/xsrc/external/mit/xorg-server/dist/glx/
H A Dglxext.c579 ** is only one instance of the GL, and we use it to serve all GL clients by
657 if (clients[i] && glxGetClient(clients[i])->client)
658 IgnoreClient(clients[i]);
673 if (clients[i] && glxGetClient(clients[i])->client)
674 AttendClient(clients[i]);
719 /* If we're currently blocking GLX clients, just put this guy to
/xsrc/external/mit/xorgproto/dist/specs/SIAddresses/
H A Dlocaluser.md12 will only support this for clients running on the same host using a local IPC
/xsrc/external/mit/xfs/dist/os/
H A Dwaitfor.c91 * - data from clients
93 * - room to write data to clients
199 client = clients[conn];
/xsrc/external/mit/libXmu/dist/
H A DREADME.md8 It is intended to support clients in the X.Org distribution; vendors

Completed in 230 milliseconds

123456