Lines Matching refs:command

529 	BMessage command(IS_GET_MOUSE_TYPE);
532 status_t err = _control_input_server_(&command, &reply);
542 BMessage command(IS_SET_MOUSE_TYPE);
545 status_t err = command.AddInt32("mouse_type", type);
548 return _control_input_server_(&command, &reply);
555 BMessage command(IS_GET_MOUSE_TYPE);
557 command.AddString("mouse_name", mouse_name);
559 status_t err = _control_input_server_(&command, &reply);
570 BMessage command(IS_SET_MOUSE_TYPE);
573 status_t err_mouse_name = command.AddString("mouse_name", mouse_name);
577 status_t err = command.AddInt32("mouse_type", type);
580 return _control_input_server_(&command, &reply);
587 BMessage command(IS_GET_MOUSE_MAP);
592 status_t err = _control_input_server_(&command, &reply);
607 BMessage command(IS_SET_MOUSE_MAP);
610 status_t err = command.AddData("mousemap", B_RAW_TYPE, map,
614 return _control_input_server_(&command, &reply);
621 BMessage command(IS_GET_CLICK_SPEED);
624 status_t err = _control_input_server_(&command, &reply);
638 BMessage command(IS_SET_CLICK_SPEED);
640 command.AddInt64("speed", speed);
641 return _control_input_server_(&command, &reply);
648 BMessage command(IS_GET_MOUSE_SPEED);
651 status_t err = _control_input_server_(&command, &reply);
665 BMessage command(IS_SET_MOUSE_SPEED);
667 command.AddInt32("speed", speed);
668 return _control_input_server_(&command, &reply);
675 BMessage command(IS_GET_MOUSE_SPEED);
677 command.AddString("mouse_name", mouse_name);
679 status_t err = _control_input_server_(&command, &reply);
694 BMessage command(IS_SET_MOUSE_SPEED);
696 command.AddString("mouse_name", mouse_name);
698 command.AddInt32("speed", speed);
700 return _control_input_server_(&command, &reply);
707 BMessage command(IS_GET_MOUSE_ACCELERATION);
710 _control_input_server_(&command, &reply);
722 BMessage command(IS_SET_MOUSE_ACCELERATION);
724 command.AddInt32("speed", speed);
725 return _control_input_server_(&command, &reply);
732 BMessage command(IS_GET_MOUSE_ACCELERATION);
734 command.AddString("mouse_name", mouse_name);
736 _control_input_server_(&command, &reply);
748 BMessage command(IS_SET_MOUSE_ACCELERATION);
750 command.AddString("mouse_name", mouse_name);
752 command.AddInt32("speed", speed);
754 return _control_input_server_(&command, &reply);
761 BMessage command(IS_GET_KEY_REPEAT_RATE);
764 status_t err = _control_input_server_(&command, &reply);
781 BMessage command(IS_SET_KEY_REPEAT_RATE);
783 command.AddInt32("rate", rate);
784 return _control_input_server_(&command, &reply);
791 BMessage command(IS_GET_KEY_REPEAT_DELAY);
794 status_t err = _control_input_server_(&command, &reply);
811 BMessage command(IS_SET_KEY_REPEAT_DELAY);
813 command.AddInt64("delay", delay);
814 return _control_input_server_(&command, &reply);
821 BMessage command(IS_GET_MODIFIERS);
825 _control_input_server_(&command, &reply);
840 BMessage command(IS_GET_KEY_INFO);
846 _control_input_server_(&command, &reply);
869 BMessage command(IS_GET_KEY_MAP);
876 _control_input_server_(&command, &reply);
899 BMessage command(IS_GET_KEYBOARD_ID);
903 _control_input_server_(&command, &reply);
917 BMessage command(IS_GET_MODIFIER_KEY);
921 command.AddInt32("modifier", modifier);
922 _control_input_server_(&command, &reply);
936 BMessage command(IS_SET_MODIFIER_KEY);
939 command.AddInt32("modifier", modifier);
940 command.AddInt32("key", key);
941 _control_input_server_(&command, &reply);
948 BMessage command(IS_SET_KEYBOARD_LOCKS);
951 command.AddInt32("locks", modifiers);
952 _control_input_server_(&command, &reply);