| /xsrc/external/mit/libxcb/dist/src/ |
| xcb_util.c | 99 * protocol = "unix" 103 static int _xcb_parse_display_path_to_socket(const char *name, char **host, char **protocol, 140 if (protocol) { 141 *protocol = strdup("unix"); 142 if (!*protocol) { 158 static int _xcb_parse_display(const char *name, char **host, char **protocol, 171 return _xcb_parse_display_path_to_socket(name, host, protocol, displayp, screenp); 174 return _xcb_parse_display_path_to_socket(name + 5, host, protocol, displayp, screenp); 180 if (protocol) { 181 *protocol = malloc(len + 1) 529 char *protocol = NULL; local [all...] |
| /xsrc/external/mit/xf86-input-mouse/dist/src/ |
| hurd_mouse.c | 136 OsMousePreInit(InputInfoPtr pInfo, const char *protocol, int flags) 140 /* This is called when the protocol is "OSMouse". */ 143 pMse->protocol = protocol; 144 xf86Msg(X_CONFIG, "%s: Protocol: %s\n", pInfo->name, protocol); 185 FindDevice(InputInfoPtr pInfo, const char *protocol, int flags) 223 CheckProtocol(const char *protocol) 228 if (xf86NameCmp(protocol, internalNames[i]) == 0)
|
| bsd_mouse.c | 136 CheckProtocol(const char *protocol) 141 if (xf86NameCmp(protocol, internalNames[i]) == 0) 144 if (xf86NameCmp(protocol, miscNames[i]) == 0) 203 if (mode.protocol == devproto[i].dproto) { 210 xf86MsgVerb(X_INFO, 3, "%s: SetupAuto: protocol is %s\n", 220 SetSysMouseRes(InputInfoPtr pInfo, const char *protocol, int rate, int res) 232 (protocol && xf86NameCmp(protocol, "SysMouse") == 0)) { 234 * As the FreeBSD sysmouse driver defaults to protocol level 0 235 * every time it is opened we enforce protocol level 1 again a [all...] |
| mouse.h | 53 * specific protocol names that are 56 /* Mouse Protocol IDs. */ 59 PROT_UNSUP = -1, /* protocol is not supported */ 92 typedef Bool (*CheckProtocolProc)(const char *protocol); 93 typedef Bool (*BuiltinPreInitProc)(InputInfoPtr pInfo, const char *protocol, 97 typedef void (*SetResProc)(InputInfoPtr pInfo, const char* protocol, int rate, 99 typedef const char *(*FindDeviceProc)(InputInfoPtr pInfo, const char *protocol, 130 * CheckProtocol: Checks if the protocol name given is supported by the 135 * function is passed the protocol name. 137 * DefaultProtocol: Returns the name of a default protocol that should be use 208 const char * protocol; member in struct:_MouseDevRec [all...] |
| sun_mouse.c | 97 /* Device file: Protocol: */ 217 /* This function is called when the protocol is "VUID". */ 219 vuidPreInit(InputInfoPtr pInfo, const char *protocol, int flags) 785 sunMousePreInit(InputInfoPtr pInfo, const char *protocol, int flags) 787 /* The protocol is guaranteed to be one of the internalNames[] */ 788 if (xf86NameCmp(protocol, "VUID") == 0) { 789 return vuidPreInit(pInfo, protocol, flags); 801 CheckProtocol(const char *protocol) 806 if (xf86NameCmp(protocol, internalNames[i]) == 0) 819 solarisMouseAutoProbe(InputInfoPtr pInfo, const char **protocol, [all...] |
| mouse.c | 33 * protocol. 839 MouseFindDevice(InputInfoPtr pInfo, const char* protocol) 847 device = osInfo->FindDevice(pInfo, protocol, 0); 858 const char *protocol, MouseProtocolID *protocolID_out) 862 protocolID = ProtocolNameToID(protocol); 869 protocol = osProt; 877 osInfo->PreInit(pInfo, protocol, 0); 880 /* Check for a builtin OS-specific protocol, 883 && osInfo->CheckProtocol(protocol)) { 885 MouseFindDevice(pInfo, protocol); 955 const char *protocol; local [all...] |
| lnx_mouse.c | 65 FindDevice(InputInfoPtr pInfo, const char *protocol, int flags) 109 /* Look at the device name to guess the protocol. */ 153 * If the protocol can't be guessed from the device name, 179 xf86Msg(X_ERROR, "%s: Cannot find mouse protocol.\n", 186 "%s: Setting mouse protocol to \"%s\"\n",
|
| /xsrc/external/mit/xtrans/dist/ |
| Xtrans.c | 58 * The transport table contains a definition for every transport (protocol) 151 TRANS(SelectTransport) (const char *protocol) 158 prmsg (3,"SelectTransport(%s)\n", protocol); 162 * Force Protocol to be lowercase as a way of doing 166 strncpy (protobuf, protocol, PROTOBUFSIZE - 1); 181 if (!strcasecmp (protocol, Xtransports[i].transport->TransName)) 191 char **protocol, char **host, char **port) 196 * as "protocol/host:port[/catalogue]". Note that the catologue 201 * as "protocol/host:port". 203 * If the protocol part is missing, then assume TCP 415 char *protocol = NULL, *host = NULL, *port = NULL; local 853 char *protocol; local [all...] |
| Xtranslcl.c | 262 prmsg(1,"NAMEDOpenClient: Protocol is not supported by a NAMED connection\n"); 395 prmsg(1,"NAMEDOpenServer: Protocol is not supported by a NAMED connection\n"); 536 prmsg(1,"NAMEDReopenServer: Protocol is not supported by a NAMED connection\n"); 748 TRANS(LocalInitTransports)(const char *protocol) 751 prmsg(3,"LocalInitTransports(%s)\n", protocol); 753 if( strcmp(protocol,"local") && strcmp(protocol,"LOCAL") ) 755 workingXLOCAL = freeXLOCAL = strdup (protocol); 862 TRANS(LocalOpenClient)(int type, const char *protocol, 910 TRANS(LocalInitTransports)(protocol); [all...] |
| /xsrc/external/mit/freetype/dist/docs/reference/javascripts/ |
| extra.js | 26 this.protocol == window.location.protocol &&
|
| /xsrc/external/mit/xf86-input-vmmouse/dist/src/ |
| xf86OSmouse.h | 43 * specific protocol names that are 46 /* Mouse Protocol IDs. */ 49 PROT_UNSUP = -1, /* protocol is not supported */ 80 typedef Bool (*CheckProtocolProc)(const char *protocol); 81 typedef Bool (*BuiltinPreInitProc)(InputInfoPtr pInfo, const char *protocol, 85 typedef void (*SetResProc)(InputInfoPtr pInfo, const char* protocol, int rate, 87 typedef const char *(*FindDeviceProc)(InputInfoPtr pInfo, const char *protocol, 118 * CheckProtocol: Checks if the protocol name given is supported by the 123 * function is passed the protocol name. 125 * DefaultProtocol: Returns the name of a default protocol that should be use 208 const char * protocol; member in struct:_MouseDevRec [all...] |
| /xsrc/external/mit/libICE/dist/src/ |
| misc.c | 67 * Fatal IO error. First notify each protocol's IceIOErrorProc 100 process->protocol->accept_client->io_error_proc : 101 process->protocol->orig_client->io_error_proc; 425 iceConn->his_min_opcode].protocol = NULL; 456 iceConn->his_min_opcode].protocol = NULL; 469 iceConn->his_min_opcode].protocol = &_IceProtocols[myOpcode - 1];
|
| /xsrc/external/mit/xf86-input-vmmouse/dist/shared/ |
| vmmouse_proto.h | 31 * The communication protocol between the guest and the vmmouse 57 #error The vmmouse protocol is only supported on x86 architectures.
|
| /xsrc/external/mit/xorgproto/dist/include/X11/extensions/ |
| xtrapddmi.h | 71 CARD16 protocol; /* current communication protocol */ member in struct:__anon11958
|
| xtraplib.h | 126 CARD16 protocol /*B16*/; /* The xtrap extension protocol number */ member in struct:_XETC
|
| /xsrc/external/mit/xtrap/dist/ |
| xtrapproto.c | 96 if (tc->protocol == 31) 99 printf("broken using the V3.1 protocol!\n");
|
| /xsrc/external/mit/MesaLib/dist/docs/_extra/specs/ |
| MESA_window_pos.spec | 104 GLX Protocol 106 Not specified at this time. However, a protocol message very similar
|
| /xsrc/external/mit/MesaLib.old/dist/docs/specs/ |
| MESA_window_pos.spec | 104 GLX Protocol 106 Not specified at this time. However, a protocol message very similar
|
| /xsrc/external/mit/xorgproto/dist/specs/SIAddresses/ |
| localuser.md | 11 environment variable or IDENT protocol response). It is expected many systems
|
| /xsrc/external/mit/libICE/dist/include/X11/ICE/ |
| ICEconn.h | 84 _IceProtocol *protocol; member in struct:__anon5474 173 * different opcodes for the same protocol). In order to save space, 234 * Some state for a client doing a Connection/Protocol Setup 242 * Some state for a client receiving a Connection/Protocol Setup
|
| /xsrc/external/mit/xorg-server.old/dist/os/ |
| auth.c | 50 struct protocol { struct 63 static struct protocol protocols[] = { 92 sizeof (struct protocol)) 218 *reason = "Protocol not supported by server\n"; 220 } else *reason = "No protocol specified\n";
|
| /xsrc/external/mit/libXTrap/dist/src/ |
| XERqsts.c | 37 /* the following's a hack to support V3.1 protocol */ 135 /* Returns the all important protocol number to be used. 137 * size is XEGetVersionRequest. All others need the protocol 140 * have to be used to determine the protocol version. 154 reqptr->protocol = XETrapProtocol; 174 reqptr->protocol = XETrapProtocol; 184 { /* protocol changed between V3.1 and V3.2! */ 189 if (tc->protocol == 31) 339 if (tc->protocol == 31) 382 if (tc->protocol == 31 [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/winsys/svga/drm/ |
| vmw_msg.c | 301 * @protocol: 306 vmw_open_channel(struct rpc_channel *channel, unsigned protocol) 311 (protocol | GUESTMSG_FLAG_COOKIE), si, di,
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/winsys/svga/drm/ |
| vmw_msg.c | 298 * @protocol: 303 vmw_open_channel(struct rpc_channel *channel, unsigned protocol) 308 (protocol | GUESTMSG_FLAG_COOKIE), si, di,
|
| /xsrc/external/mit/xorg-server/dist/os/ |
| auth.c | 51 struct protocol { struct 64 static struct protocol protocols[] = { 216 *reason = "Authorization protocol not supported by server\n"; 220 *reason = "Authorization required, but no authorization protocol specified\n";
|