Lines Matching refs:protocol
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,
838 *protocol = "VUID";
846 if ((*protocol != NULL) && (strcmp(*protocol, "Auto") != 0) &&
847 (*pproto != NULL) && (strcmp(*pproto, *protocol) != 0)) {
870 *protocol = *pproto;
888 /* probe to find device/protocol to use */
907 FindDevice(InputInfoPtr pInfo, const char *protocol, int flags)
910 const char *pproto = protocol;