Searched refs:Cmd_AddCommand (Results 1 - 25 of 60) sorted by relevance

123

/external/quake/quake/src/WinQuake/
H A Dcl_input.cpp422 Cmd_AddCommand ("+moveup",IN_UpDown);
423 Cmd_AddCommand ("-moveup",IN_UpUp);
424 Cmd_AddCommand ("+movedown",IN_DownDown);
425 Cmd_AddCommand ("-movedown",IN_DownUp);
426 Cmd_AddCommand ("+left",IN_LeftDown);
427 Cmd_AddCommand ("-left",IN_LeftUp);
428 Cmd_AddCommand ("+right",IN_RightDown);
429 Cmd_AddCommand ("-right",IN_RightUp);
430 Cmd_AddCommand ("+forward",IN_ForwardDown);
431 Cmd_AddCommand ("
[all...]
H A Dcmd.h83 void Cmd_AddCommand (const char *cmd_name, xcommand_t function);
H A Dhost_cmd.cpp1888 Cmd_AddCommand ("status", Host_Status_f);
1889 Cmd_AddCommand ("quit", Host_Quit_f);
1890 Cmd_AddCommand ("god", Host_God_f);
1891 Cmd_AddCommand ("notarget", Host_Notarget_f);
1892 Cmd_AddCommand ("fly", Host_Fly_f);
1893 Cmd_AddCommand ("map", Host_Map_f);
1894 Cmd_AddCommand ("restart", Host_Restart_f);
1895 Cmd_AddCommand ("changelevel", Host_Changelevel_f);
1897 Cmd_AddCommand ("changelevel2", Host_Changelevel2_f);
1899 Cmd_AddCommand ("connec
[all...]
H A Dcmd.cpp433 Cmd_AddCommand ("stuffcmds",Cmd_StuffCmds_f);
434 Cmd_AddCommand ("exec",Cmd_Exec_f);
435 Cmd_AddCommand ("echo",Cmd_Echo_f);
436 Cmd_AddCommand ("alias",Cmd_Alias_f);
437 Cmd_AddCommand ("cmd", Cmd_ForwardToServer);
438 Cmd_AddCommand ("wait", Cmd_Wait_f);
529 Cmd_AddCommand
532 void Cmd_AddCommand (const char *cmd_name, xcommand_t function) function
537 Sys_Error ("Cmd_AddCommand after host_initialized");
542 Con_Printf ("Cmd_AddCommand
[all...]
H A Dconsole.cpp241 Cmd_AddCommand ("toggleconsole", Con_ToggleConsole_f);
242 Cmd_AddCommand ("messagemode", Con_MessageMode_f);
243 Cmd_AddCommand ("messagemode2", Con_MessageMode2_f);
244 Cmd_AddCommand ("clear", Con_Clear_f);
H A Dvid_dos.cpp106 Cmd_AddCommand ("vid_testmode", VID_TestMode_f);
107 Cmd_AddCommand ("vid_nummodes", VID_NumModes_f);
108 Cmd_AddCommand ("vid_describecurrentmode", VID_DescribeCurrentMode_f);
109 Cmd_AddCommand ("vid_describemode", VID_DescribeMode_f);
110 Cmd_AddCommand ("vid_describemodes", VID_DescribeModes_f);
H A Dcl_main.cpp750 Cmd_AddCommand ("entities", CL_PrintEntities_f);
751 Cmd_AddCommand ("disconnect", CL_Disconnect_f);
752 Cmd_AddCommand ("record", CL_Record_f);
753 Cmd_AddCommand ("stop", CL_Stop_f);
754 Cmd_AddCommand ("playdemo", CL_PlayDemo_f);
755 Cmd_AddCommand ("timedemo", CL_TimeDemo_f);
H A Dsnd_dma.cpp178 Cmd_AddCommand("play", S_Play);
179 Cmd_AddCommand("playvol", S_PlayVol);
180 Cmd_AddCommand("stopsound", S_StopAllSoundsC);
181 Cmd_AddCommand("soundlist", S_SoundList);
182 Cmd_AddCommand("soundinfo", S_SoundInfo_f);
H A Dgl_rmisc.cpp186 Cmd_AddCommand ("timerefresh", R_TimeRefresh_f);
187 Cmd_AddCommand ("envmap", R_Envmap_f);
188 Cmd_AddCommand ("pointfile", R_ReadPointFile_f);
H A Dgl_screen.cpp386 Cmd_AddCommand ("screenshot",SCR_ScreenShot_f);
387 Cmd_AddCommand ("sizeup",SCR_SizeUp_f);
388 Cmd_AddCommand ("sizedown",SCR_SizeDown_f);
H A Dmenu.cpp3024 Cmd_AddCommand ("togglemenu", M_ToggleMenu_f);
3026 Cmd_AddCommand ("menu_main", M_Menu_Main_f);
3027 Cmd_AddCommand ("menu_singleplayer", M_Menu_SinglePlayer_f);
3028 Cmd_AddCommand ("menu_load", M_Menu_Load_f);
3029 Cmd_AddCommand ("menu_save", M_Menu_Save_f);
3030 Cmd_AddCommand ("menu_multiplayer", M_Menu_MultiPlayer_f);
3031 Cmd_AddCommand ("menu_setup", M_Menu_Setup_f);
3032 Cmd_AddCommand ("menu_options", M_Menu_Options_f);
3033 Cmd_AddCommand ("menu_keys", M_Menu_Keys_f);
3034 Cmd_AddCommand ("menu_vide
[all...]
H A Dscreen.cpp328 Cmd_AddCommand ("screenshot",SCR_ScreenShot_f);
329 Cmd_AddCommand ("sizeup",SCR_SizeUp_f);
330 Cmd_AddCommand ("sizedown",SCR_SizeDown_f);
H A Dnet_main.cpp867 Cmd_AddCommand ("slist", NET_Slist_f);
868 Cmd_AddCommand ("listen", NET_Listen_f);
869 Cmd_AddCommand ("maxplayers", MaxPlayers_f);
870 Cmd_AddCommand ("port", NET_Port_f);
H A Dvid_svgalib.cpp564 // Cmd_AddCommand ("gamma", VID_Gamma_f);
576 Cmd_AddCommand("vid_nummodes", VID_NumModes_f);
577 Cmd_AddCommand("vid_describemode", VID_DescribeMode_f);
578 Cmd_AddCommand("vid_describemodes", VID_DescribeModes_f);
579 Cmd_AddCommand("vid_debug", VID_Debug_f);
844 Cmd_AddCommand ("force_centerview", Force_CenterView_f);
/external/quake/quake/src/QW/client/
H A Dcl_input.c490 Cmd_AddCommand ("+moveup",IN_UpDown);
491 Cmd_AddCommand ("-moveup",IN_UpUp);
492 Cmd_AddCommand ("+movedown",IN_DownDown);
493 Cmd_AddCommand ("-movedown",IN_DownUp);
494 Cmd_AddCommand ("+left",IN_LeftDown);
495 Cmd_AddCommand ("-left",IN_LeftUp);
496 Cmd_AddCommand ("+right",IN_RightDown);
497 Cmd_AddCommand ("-right",IN_RightUp);
498 Cmd_AddCommand ("+forward",IN_ForwardDown);
499 Cmd_AddCommand ("
[all...]
H A Dcmd.h69 void Cmd_AddCommand (char *cmd_name, xcommand_t function);
H A Dcl_main.c1130 Cmd_AddCommand ("version", CL_Version_f);
1132 Cmd_AddCommand ("changing", CL_Changing_f);
1133 Cmd_AddCommand ("disconnect", CL_Disconnect_f);
1134 Cmd_AddCommand ("record", CL_Record_f);
1135 Cmd_AddCommand ("rerecord", CL_ReRecord_f);
1136 Cmd_AddCommand ("stop", CL_Stop_f);
1137 Cmd_AddCommand ("playdemo", CL_PlayDemo_f);
1138 Cmd_AddCommand ("timedemo", CL_TimeDemo_f);
1140 Cmd_AddCommand ("skins", Skin_Skins_f);
1141 Cmd_AddCommand ("allskin
[all...]
H A Dcmd.c509 Cmd_AddCommand
512 void Cmd_AddCommand (char *cmd_name, xcommand_t function) function
517 Sys_Error ("Cmd_AddCommand after host_initialized");
522 Con_Printf ("Cmd_AddCommand: %s already defined as a var\n", cmd_name);
531 Con_Printf ("Cmd_AddCommand: %s already defined\n", cmd_name);
739 Cmd_AddCommand ("stuffcmds",Cmd_StuffCmds_f);
740 Cmd_AddCommand ("exec",Cmd_Exec_f);
741 Cmd_AddCommand ("echo",Cmd_Echo_f);
742 Cmd_AddCommand ("alias",Cmd_Alias_f);
743 Cmd_AddCommand ("wai
[all...]
H A Dconsole.c243 Cmd_AddCommand ("toggleconsole", Con_ToggleConsole_f);
244 Cmd_AddCommand ("togglechat", Con_ToggleChat_f);
245 Cmd_AddCommand ("messagemode", Con_MessageMode_f);
246 Cmd_AddCommand ("messagemode2", Con_MessageMode2_f);
247 Cmd_AddCommand ("clear", Con_Clear_f);
H A Dmenu.c1118 Cmd_AddCommand ("togglemenu", M_ToggleMenu_f);
1120 Cmd_AddCommand ("menu_main", M_Menu_Main_f);
1121 Cmd_AddCommand ("menu_options", M_Menu_Options_f);
1122 Cmd_AddCommand ("menu_keys", M_Menu_Keys_f);
1123 Cmd_AddCommand ("menu_video", M_Menu_Video_f);
1124 Cmd_AddCommand ("help", M_Menu_Help_f);
1125 Cmd_AddCommand ("menu_quit", M_Menu_Quit_f);
H A Dsnd_dma.c181 Cmd_AddCommand("play", S_Play);
182 Cmd_AddCommand("playvol", S_PlayVol);
183 Cmd_AddCommand("stopsound", S_StopAllSoundsC);
184 Cmd_AddCommand("soundlist", S_SoundList);
185 Cmd_AddCommand("soundinfo", S_SoundInfo_f);
H A Dgl_rmisc.c176 Cmd_AddCommand ("timerefresh", R_TimeRefresh_f);
177 Cmd_AddCommand ("envmap", R_Envmap_f);
178 Cmd_AddCommand ("pointfile", R_ReadPointFile_f);
H A Dscreen.c385 Cmd_AddCommand ("screenshot",SCR_ScreenShot_f);
386 Cmd_AddCommand ("snap",SCR_RSShot_f);
387 Cmd_AddCommand ("sizeup",SCR_SizeUp_f);
388 Cmd_AddCommand ("sizedown",SCR_SizeDown_f);
H A Dvid_svgalib.c567 // Cmd_AddCommand ("gamma", VID_Gamma_f);
579 Cmd_AddCommand("vid_nummodes", VID_NumModes_f);
580 Cmd_AddCommand("vid_describemode", VID_DescribeMode_f);
581 Cmd_AddCommand("vid_describemodes", VID_DescribeModes_f);
582 Cmd_AddCommand("vid_debug", VID_Debug_f);
857 Cmd_AddCommand ("force_centerview", Force_CenterView_f);
/external/quake/quake/src/QW/server/
H A Dsv_ccmds.c874 Cmd_AddCommand ("logfile", SV_Logfile_f);
875 Cmd_AddCommand ("fraglogfile", SV_Fraglogfile_f);
877 Cmd_AddCommand ("snap", SV_Snap_f);
878 Cmd_AddCommand ("snapall", SV_SnapAll_f);
879 Cmd_AddCommand ("kick", SV_Kick_f);
880 Cmd_AddCommand ("status", SV_Status_f);
882 Cmd_AddCommand ("map", SV_Map_f);
883 Cmd_AddCommand ("setmaster", SV_SetMaster_f);
885 Cmd_AddCommand ("say", SV_ConSay_f);
886 Cmd_AddCommand ("heartbea
[all...]

Completed in 371 milliseconds

123