connect_mask      379 drivers/hid/hid-apple.c 	unsigned int connect_mask = HID_CONNECT_DEFAULT;
connect_mask      399 drivers/hid/hid-apple.c 		connect_mask |= HID_CONNECT_HIDDEV_FORCE;
connect_mask      401 drivers/hid/hid-apple.c 		connect_mask &= ~HID_CONNECT_HIDINPUT;
connect_mask      403 drivers/hid/hid-apple.c 	ret = hid_hw_start(hdev, connect_mask);
connect_mask     1910 drivers/hid/hid-core.c int hid_connect(struct hid_device *hdev, unsigned int connect_mask)
connect_mask     1923 drivers/hid/hid-core.c 		connect_mask |= (HID_CONNECT_HIDDEV_FORCE | HID_CONNECT_HIDDEV);
connect_mask     1925 drivers/hid/hid-core.c 		connect_mask |= HID_CONNECT_HIDINPUT_FORCE;
connect_mask     1927 drivers/hid/hid-core.c 		connect_mask &= ~HID_CONNECT_HIDDEV;
connect_mask     1929 drivers/hid/hid-core.c 		connect_mask |= HID_CONNECT_HIDDEV_FORCE;
connect_mask     1931 drivers/hid/hid-core.c 	if ((connect_mask & HID_CONNECT_HIDINPUT) && !hidinput_connect(hdev,
connect_mask     1932 drivers/hid/hid-core.c 				connect_mask & HID_CONNECT_HIDINPUT_FORCE))
connect_mask     1935 drivers/hid/hid-core.c 	if ((connect_mask & HID_CONNECT_HIDDEV) && hdev->hiddev_connect &&
connect_mask     1937 drivers/hid/hid-core.c 				connect_mask & HID_CONNECT_HIDDEV_FORCE))
connect_mask     1939 drivers/hid/hid-core.c 	if ((connect_mask & HID_CONNECT_HIDRAW) && !hidraw_connect(hdev))
connect_mask     1942 drivers/hid/hid-core.c 	if (connect_mask & HID_CONNECT_DRIVER)
connect_mask     1953 drivers/hid/hid-core.c 			(connect_mask & HID_CONNECT_FF) && hdev->ff_init)
connect_mask     2026 drivers/hid/hid-core.c int hid_hw_start(struct hid_device *hdev, unsigned int connect_mask)
connect_mask     2034 drivers/hid/hid-core.c 	if (connect_mask) {
connect_mask     2035 drivers/hid/hid-core.c 		error = hid_connect(hdev, connect_mask);
connect_mask      199 drivers/hid/hid-cougar.c 	unsigned int connect_mask;
connect_mask      215 drivers/hid/hid-cougar.c 		connect_mask = HID_CONNECT_HIDRAW;
connect_mask      217 drivers/hid/hid-cougar.c 		connect_mask = HID_CONNECT_DEFAULT;
connect_mask      219 drivers/hid/hid-cougar.c 	error = hid_hw_start(hdev, connect_mask);
connect_mask      774 drivers/hid/hid-lg.c 	unsigned int connect_mask = HID_CONNECT_DEFAULT;
connect_mask      804 drivers/hid/hid-lg.c 		connect_mask &= ~HID_CONNECT_FF;
connect_mask      806 drivers/hid/hid-lg.c 	ret = hid_hw_start(hdev, connect_mask);
connect_mask     3541 drivers/hid/hid-logitech-hidpp.c 	unsigned int connect_mask = HID_CONNECT_DEFAULT;
connect_mask     3660 drivers/hid/hid-logitech-hidpp.c 		connect_mask &= ~HID_CONNECT_HIDINPUT;
connect_mask     3663 drivers/hid/hid-logitech-hidpp.c 	ret = hid_hw_start(hdev, connect_mask);
connect_mask     2845 drivers/hid/hid-sony.c 	unsigned int connect_mask = HID_CONNECT_DEFAULT;
connect_mask     2872 drivers/hid/hid-sony.c 		connect_mask |= HID_CONNECT_HIDDEV_FORCE;
connect_mask     2874 drivers/hid/hid-sony.c 		connect_mask |= HID_CONNECT_HIDDEV_FORCE;
connect_mask     2885 drivers/hid/hid-sony.c 	ret = hid_hw_start(hdev, connect_mask);
connect_mask     2275 drivers/hid/wacom_sys.c 	unsigned int connect_mask = HID_CONNECT_HIDRAW;
connect_mask     2364 drivers/hid/wacom_sys.c 		connect_mask |= HID_CONNECT_DRIVER;
connect_mask     2367 drivers/hid/wacom_sys.c 	error = hid_hw_start(hdev, connect_mask);
connect_mask      901 include/linux/hid.h int hid_connect(struct hid_device *hid, unsigned int connect_mask);
connect_mask     1021 include/linux/hid.h 			      unsigned int connect_mask);
connect_mask      283 sound/drivers/opl3/opl3_midi.c 	unsigned short connect_mask;
connect_mask      384 sound/drivers/opl3/opl3_midi.c 		connect_mask = (OPL3_LEFT_4OP_0 << voice_offset) & 0x07;
connect_mask      389 sound/drivers/opl3/opl3_midi.c 		connect_mask = (OPL3_RIGHT_4OP_0 << voice_offset) & 0x38;
connect_mask      411 sound/drivers/opl3/opl3_midi.c 		if ((opl3->connection_reg ^ connect_mask) & connect_mask) {
connect_mask      412 sound/drivers/opl3/opl3_midi.c 			opl3->connection_reg |= connect_mask;
connect_mask      418 sound/drivers/opl3/opl3_midi.c 		if ((opl3->connection_reg ^ ~connect_mask) & connect_mask) {
connect_mask      419 sound/drivers/opl3/opl3_midi.c 			opl3->connection_reg &= ~connect_mask;