Home
last modified time | relevance | path

Searched refs:mouse (Results 1 – 25 of 88) sorted by relevance

1234

/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/
H A Dtst.signedkeyspos.d.out17 mouse -1 -1
20 mouse -2 -2
23 mouse 2 2
26 mouse 1 1
29 mouse 0 0
32 mouse 65535 -1
35 mouse 65534 -2
38 mouse 2 2
41 mouse 1 1
44 mouse 0 0
[all …]
/freebsd/usr.sbin/bsdconfig/mouse/include/
H A Dmessages.subr28 msg_auto_desc="Bus mouse, PS/2 style mouse or PnP serial mouse"
31 msg_com1_desc="Serial mouse on COM1 (/dev/cuau0)"
33 msg_com2_desc="Serial mouse on COM2 (/dev/cuau1)"
35 msg_com3_desc="Serial mouse on COM3 (/dev/cuau2)"
37 msg_com4_desc="Serial mouse on COM4 (/dev/cuau3)"
39 msg_disable_the_mouse_daemon="Disable the mouse daemon"
52mouse\ndaemon. Specify a port and a protocol type of your mouse and enable\nthe mouse daemon. If…
58 msg_mouse_daemon_is_disabled="The mouse daemon is disabled."
66 …_the_mouse="Now move the mouse and see if it works.\n(Note that buttons don't have any effect for …
68 msg_please_configure_your_mouse="Please configure your mouse"
[all …]
H A DMakefile1 FILESDIR= ${LIBEXECDIR}/bsdconfig/110.mouse/include
/freebsd/sys/dev/syscons/
H A Dscmouse.c132 sc_mouse_input(scr_stat *scp, mouse_info_t *mouse) in sc_mouse_input() argument
135 switch (mouse->operation) { in sc_mouse_input()
137 if (mouse->u.event.value > 0) { in sc_mouse_input()
139 if (mouse->u.event.id & MOUSE_BUTTON1DOWN) in sc_mouse_input()
141 if (mouse->u.event.id & MOUSE_BUTTON2DOWN) in sc_mouse_input()
143 if (mouse->u.event.id & MOUSE_BUTTON3DOWN) in sc_mouse_input()
151 if (mouse->u.data.z < 0) { in sc_mouse_input()
154 } else if (mouse->u.data.z > 0) { in sc_mouse_input()
653 mouse_info_t *mouse; in sc_mouse_ioctl() local
667 mouse = (mouse_info_t*)data; in sc_mouse_ioctl()
[all …]
/freebsd/sys/contrib/device-tree/Bindings/input/
H A Dgpio-mouse.txt3 This simply uses standard GPIO handles to define a simple mouse connected
7 - compatible: must be "gpio-mouse"
15 - button-left-gpios: GPIO line handle to the left mouse button
16 - button-middle-gpios: GPIO line handle to the middle mouse button
17 - button-right-gpios: GPIO line handle to the right mouse button
22 gpio-mouse {
23 compatible = "gpio-mouse";
/freebsd/usr.sbin/bsdconfig/mouse/
H A DMakefile3 FILESDIR= ${LIBEXECDIR}/bsdconfig/110.mouse
7 SCRIPTS= disable enable flags mouse port type
H A DINDEX47 menu_selection="mouse|mouse"
61 menu_program="mouse"
/freebsd/packages/libvgl/
H A Dlibvgl.ucl39 There is also support for a mouse via the standard mouse system in FreeBSD,
40 including the ability to transparently have a mouse pointer superimposed on
/freebsd/packages/console-tools/
H A Dconsole-tools.ucl29 * moused(8) can be used to interface with a mouse and provide a graphical
30 mouse cursor on the video console.
/freebsd/usr.sbin/vidcontrol/
H A Dvidcontrol.c974 struct mouse_info mouse; in set_mouse_char() local
985 mouse.operation = MOUSE_MOUSECHAR; in set_mouse_char()
986 mouse.u.mouse_char = (int)l; in set_mouse_char()
988 if (ioctl(0, CONS_MOUSECTL, &mouse) == -1) { in set_mouse_char()
1002 struct mouse_info mouse; in set_mouse() local
1005 mouse.operation = MOUSE_SHOW; in set_mouse()
1007 mouse.operation = MOUSE_HIDE; in set_mouse()
1013 if (ioctl(0, CONS_MOUSECTL, &mouse) == -1) { in set_mouse()
1016 mouse.operation == MOUSE_SHOW ? "show" : "hid"); in set_mouse()
/freebsd/contrib/ncurses/misc/
H A Dncurses-config.in307 --mouse-version)
361 --mouse-version echoes the mouse-interface version of ${CURSES_LIB}
/freebsd/contrib/ncurses/include/
H A DCaps-ncurses353 userdef XM str n initialize alternate xterm mouse mode
356 userdef xm str - mouse response, no parameters
357 userdef xm str n mouse response, p1 = y-ordinate
358 userdef xm str nn mouse response, p2 = x-ordinate
359 userdef xm str nnn mouse response, p3 = button
360 userdef xm str nnns mouse response, p4 = state, e.g., pressed or released
361 userdef xm str nnnsn mouse response, p5 = y-ordinate starting region
362 userdef xm str nnnsnn mouse response, p6 = x-ordinate starting region
363 userdef xm str nnnsnnn mouse response, p7 = y-ordinate ending region
364 userdef xm str nnnsnnnn mouse response, p8 = x-ordinate ending region
[all …]
/freebsd/contrib/libxo/xohtml/external/
H A Djquery.qtip.js151 'tracking': posOptions.target === 'mouse' && posOptions.adjust.mouse,
281 this.plugins = this.mouse = NULL;
475 tooltip.attr('tracking', posOptions.target === 'mouse' && posOptions.adjust.mouse);
712 mouse = this.mouse,
728 event = mouse && mouse.pageX && (adjust.mouse || !event || !event.pageX) ? mouse :
731 …(!adjust.mouse || this.options.show.distance) && cache.origin && cache.origin.pageX ? cache.origin…
732 event) || event || cache.event || mouse || {};
745 if(adjust.mouse && isScroll) {
746 position.left -= mouse.scrollX - win.scrollLeft();
747 position.top -= mouse.scrollY - win.scrollTop();
[all …]
/freebsd/usr.sbin/moused/moused/
H A Dmoused.c2772 struct mouse_info mouse; in r_move() local
2774 bzero(&mouse, sizeof(mouse)); in r_move()
2777 &mouse.u.data.x, &mouse.u.data.y, &mouse.u.data.z); in r_move()
2780 &mouse.u.data.x, &mouse.u.data.y, &mouse.u.data.z); in r_move()
2782 mouse.operation = MOUSE_MOTION_EVENT; in r_move()
2783 mouse.u.data.buttons = act->button; in r_move()
2785 ioctl(cfd, CONS_MOUSECTL, &mouse); in r_move()
2791 struct mouse_info mouse; in r_click() local
2806 mouse.u.event.value = bt->mstate[i]->count; in r_click()
2809 mouse.u.event.value = 0; in r_click()
[all …]
H A Dmoused.conf23 MatchDevType=mouse # mouse/touchpad
/freebsd/usr.sbin/bsdconfig/
H A DMakefile12 mouse \
/freebsd/usr.sbin/bluetooth/bthidd/
H A Dbthid_config.h55 unsigned mouse : 1; member
H A Dparser.y453 d->mouse = 1; in check_hid_device()
457 d->mouse = 1; in check_hid_device()
/freebsd/sys/dev/syscons/fonts/
H A Dcursor.awk10 /^COMMENT cn.*mouse/ {
/freebsd/lib/libvgl/
H A DMakefile5 SRCS= main.c simple.c bitmap.c text.c mouse.c keyboard.c
/freebsd/sys/x86/conf/
H A DNOTES208 options SC_ALT_MOUSE_IMAGE # simplified mouse cursor in text mode
215 options SC_MOUSE_CHAR=0x3 # char code for text mode mouse cursor
231 # If you have a two button mouse, you may want to add the following option
232 # to use the right button of the mouse to paste text.
277 # PS/2 mouse
287 # The keyboard controller; it controls the keyboard and the PS/2 mouse.
313 # Try the following option if the mouse pointer is not drawn correctly
/freebsd/sys/arm/conf/
H A DTEGRA12493 device ums # USB mouse
141 device hms # HID mouse
/freebsd/contrib/file/magic/Magdir/
H A Dxwindows29 # X11 mouse cursor format defined in libXcursor, see
/freebsd/contrib/ncurses/doc/
H A Dhackguide.doc83 You can use this to condition the calls to the mouse API calls.
314 mouse events and do a running match of incoming input against the set
335 If the mouse interface is active, wgetch() polls for mouse events each
340 Under xterm, however, mouse event notifications come in via the
343 recognition of a mouse key prefix without going through the
355 Here are some more details about mouse event handling:
359 that parses mouse gestures and filters events. The mediating data
364 either (a) _nc_mouse_event() detects a series of incoming mouse
367 queue up a series of adjacent mouse reports.
370 accepted to parse the digested mouse reports (low-level events) into a
/freebsd/libexec/rc/rc.d/
H A Dserial97 mouse() { function

1234