Searched refs:speed (Results 101 - 103 of 103) sorted by path

12345

/haiku/src/servers/input/
H A DMouseSettings.h46 int32 MouseSpeed() const { return fSettings.accel.speed; }
47 void SetMouseSpeed(int32 speed);
/haiku/src/system/boot/platform/atari_m68k/
H A Dtoscalls.h470 #define Rsconf(speed, flow, ucr, rsr, tsr, scr) toscallWWWWWW(XBIOS_TRAP, 15, (int16)speed, (int16)flow, (int16)ucr, (int16)rsr, (int16)tsr, (int16)scr)
/haiku/src/system/libroot/posix/
H A Dtermios.c116 cfsetispeed(struct termios *termios, speed_t speed) argument
122 if (speed > B31250) {
124 termios->c_ispeed = speed;
129 termios->c_cflag |= speed;
145 cfsetospeed(struct termios *termios, speed_t speed) argument
147 /* Check for custom speed values (see above) */
148 if (speed > B31250) {
150 termios->c_ospeed = speed;
155 termios->c_cflag |= speed;

Completed in 158 milliseconds

12345