Lines Matching refs:interpreter

144   CommandObjectPlatformSelect(CommandInterpreter &interpreter)  in CommandObjectPlatformSelect()  argument
145 : CommandObjectParsed(interpreter, "platform select", in CommandObjectPlatformSelect()
203 CommandObjectPlatformList(CommandInterpreter &interpreter) in CommandObjectPlatformList() argument
204 : CommandObjectParsed(interpreter, "platform list", in CommandObjectPlatformList()
241 CommandObjectPlatformStatus(CommandInterpreter &interpreter) in CommandObjectPlatformStatus() argument
242 : CommandObjectParsed(interpreter, "platform status", in CommandObjectPlatformStatus()
273 CommandObjectPlatformConnect(CommandInterpreter &interpreter) in CommandObjectPlatformConnect() argument
275 interpreter, "platform connect", in CommandObjectPlatformConnect()
325 CommandObjectPlatformDisconnect(CommandInterpreter &interpreter) in CommandObjectPlatformDisconnect() argument
326 : CommandObjectParsed(interpreter, "platform disconnect", in CommandObjectPlatformDisconnect()
380 CommandObjectPlatformSettings(CommandInterpreter &interpreter) in CommandObjectPlatformSettings() argument
381 : CommandObjectParsed(interpreter, "platform settings", in CommandObjectPlatformSettings()
421 CommandObjectPlatformMkDir(CommandInterpreter &interpreter) in CommandObjectPlatformMkDir() argument
422 : CommandObjectParsed(interpreter, "platform mkdir", in CommandObjectPlatformMkDir()
471 CommandObjectPlatformFOpen(CommandInterpreter &interpreter) in CommandObjectPlatformFOpen() argument
472 : CommandObjectParsed(interpreter, "platform file open", in CommandObjectPlatformFOpen()
534 CommandObjectPlatformFClose(CommandInterpreter &interpreter) in CommandObjectPlatformFClose() argument
535 : CommandObjectParsed(interpreter, "platform file close", in CommandObjectPlatformFClose()
577 CommandObjectPlatformFRead(CommandInterpreter &interpreter) in CommandObjectPlatformFRead() argument
578 : CommandObjectParsed(interpreter, "platform file read", in CommandObjectPlatformFRead()
673 CommandObjectPlatformFWrite(CommandInterpreter &interpreter) in CommandObjectPlatformFWrite() argument
674 : CommandObjectParsed(interpreter, "platform file write", in CommandObjectPlatformFWrite()
762 CommandObjectPlatformFile(CommandInterpreter &interpreter) in CommandObjectPlatformFile() argument
764 interpreter, "platform file", in CommandObjectPlatformFile()
768 "open", CommandObjectSP(new CommandObjectPlatformFOpen(interpreter))); in CommandObjectPlatformFile()
770 "close", CommandObjectSP(new CommandObjectPlatformFClose(interpreter))); in CommandObjectPlatformFile()
772 "read", CommandObjectSP(new CommandObjectPlatformFRead(interpreter))); in CommandObjectPlatformFile()
774 "write", CommandObjectSP(new CommandObjectPlatformFWrite(interpreter))); in CommandObjectPlatformFile()
789 CommandObjectPlatformGetFile(CommandInterpreter &interpreter) in CommandObjectPlatformGetFile() argument
791 interpreter, "platform get-file", in CommandObjectPlatformGetFile()
873 CommandObjectPlatformGetSize(CommandInterpreter &interpreter) in CommandObjectPlatformGetSize() argument
874 : CommandObjectParsed(interpreter, "platform get-size", in CommandObjectPlatformGetSize()
944 CommandObjectPlatformGetPermissions(CommandInterpreter &interpreter) in CommandObjectPlatformGetPermissions() argument
945 : CommandObjectParsed(interpreter, "platform get-permissions", in CommandObjectPlatformGetPermissions()
1014 CommandObjectPlatformFileExists(CommandInterpreter &interpreter) in CommandObjectPlatformFileExists() argument
1015 : CommandObjectParsed(interpreter, "platform file-exists", in CommandObjectPlatformFileExists()
1079 CommandObjectPlatformPutFile(CommandInterpreter &interpreter) in CommandObjectPlatformPutFile() argument
1081 interpreter, "platform put-file", in CommandObjectPlatformPutFile()
1142 CommandObjectPlatformProcessLaunch(CommandInterpreter &interpreter) in CommandObjectPlatformProcessLaunch() argument
1143 : CommandObjectParsed(interpreter, "platform process launch", in CommandObjectPlatformProcessLaunch()
1236 CommandObjectPlatformProcessList(CommandInterpreter &interpreter) in CommandObjectPlatformProcessList() argument
1237 : CommandObjectParsed(interpreter, "platform process list", in CommandObjectPlatformProcessList()
1485 CommandObjectPlatformProcessInfo(CommandInterpreter &interpreter) in CommandObjectPlatformProcessInfo() argument
1487 interpreter, "platform process info", in CommandObjectPlatformProcessInfo()
1635 CommandObjectPlatformProcessAttach(CommandInterpreter &interpreter) in CommandObjectPlatformProcessAttach() argument
1636 : CommandObjectParsed(interpreter, "platform process attach", in CommandObjectPlatformProcessAttach()
1670 CommandObjectPlatformProcess(CommandInterpreter &interpreter) in CommandObjectPlatformProcess() argument
1671 : CommandObjectMultiword(interpreter, "platform process", in CommandObjectPlatformProcess()
1677 CommandObjectSP(new CommandObjectPlatformProcessAttach(interpreter))); in CommandObjectPlatformProcess()
1680 CommandObjectSP(new CommandObjectPlatformProcessLaunch(interpreter))); in CommandObjectPlatformProcess()
1682 interpreter))); in CommandObjectPlatformProcess()
1684 interpreter))); in CommandObjectPlatformProcess()
1759 CommandObjectPlatformShell(CommandInterpreter &interpreter) in CommandObjectPlatformShell() argument
1760 : CommandObjectRaw(interpreter, "platform shell", in CommandObjectPlatformShell()
1848 CommandObjectPlatformInstall(CommandInterpreter &interpreter) in CommandObjectPlatformInstall() argument
1850 interpreter, "platform target-install", in CommandObjectPlatformInstall()
1901 CommandObjectPlatform::CommandObjectPlatform(CommandInterpreter &interpreter) in CommandObjectPlatform() argument
1903 interpreter, "platform", "Commands to manage and create platforms.", in CommandObjectPlatform()
1906 CommandObjectSP(new CommandObjectPlatformSelect(interpreter))); in CommandObjectPlatform()
1908 CommandObjectSP(new CommandObjectPlatformList(interpreter))); in CommandObjectPlatform()
1910 CommandObjectSP(new CommandObjectPlatformStatus(interpreter))); in CommandObjectPlatform()
1912 new CommandObjectPlatformConnect(interpreter))); in CommandObjectPlatform()
1915 CommandObjectSP(new CommandObjectPlatformDisconnect(interpreter))); in CommandObjectPlatform()
1917 interpreter))); in CommandObjectPlatform()
1919 CommandObjectSP(new CommandObjectPlatformMkDir(interpreter))); in CommandObjectPlatform()
1921 CommandObjectSP(new CommandObjectPlatformFile(interpreter))); in CommandObjectPlatform()
1923 CommandObjectSP(new CommandObjectPlatformFileExists(interpreter))); in CommandObjectPlatform()
1925 interpreter))); in CommandObjectPlatform()
1927 CommandObjectSP(new CommandObjectPlatformGetPermissions(interpreter))); in CommandObjectPlatform()
1929 interpreter))); in CommandObjectPlatform()
1931 interpreter))); in CommandObjectPlatform()
1933 new CommandObjectPlatformProcess(interpreter))); in CommandObjectPlatform()
1935 CommandObjectSP(new CommandObjectPlatformShell(interpreter))); in CommandObjectPlatform()
1938 CommandObjectSP(new CommandObjectPlatformInstall(interpreter))); in CommandObjectPlatform()