Lines Matching refs:interpreter
148 CommandObjectPlatformSelect(CommandInterpreter &interpreter) in CommandObjectPlatformSelect() argument
149 : CommandObjectParsed(interpreter, "platform select", in CommandObjectPlatformSelect()
205 CommandObjectPlatformList(CommandInterpreter &interpreter) in CommandObjectPlatformList() argument
206 : CommandObjectParsed(interpreter, "platform list", in CommandObjectPlatformList()
242 CommandObjectPlatformStatus(CommandInterpreter &interpreter) in CommandObjectPlatformStatus() argument
243 : CommandObjectParsed(interpreter, "platform status", in CommandObjectPlatformStatus()
273 CommandObjectPlatformConnect(CommandInterpreter &interpreter) in CommandObjectPlatformConnect() argument
275 interpreter, "platform connect", in CommandObjectPlatformConnect()
323 CommandObjectPlatformDisconnect(CommandInterpreter &interpreter) in CommandObjectPlatformDisconnect() argument
324 : CommandObjectParsed(interpreter, "platform disconnect", in CommandObjectPlatformDisconnect()
377 CommandObjectPlatformSettings(CommandInterpreter &interpreter) in CommandObjectPlatformSettings() argument
378 : CommandObjectParsed(interpreter, "platform settings", in CommandObjectPlatformSettings()
415 CommandObjectPlatformMkDir(CommandInterpreter &interpreter) in CommandObjectPlatformMkDir() argument
416 : CommandObjectParsed(interpreter, "platform mkdir", in CommandObjectPlatformMkDir()
464 CommandObjectPlatformFOpen(CommandInterpreter &interpreter) in CommandObjectPlatformFOpen() argument
465 : CommandObjectParsed(interpreter, "platform file open", in CommandObjectPlatformFOpen()
517 CommandObjectPlatformFClose(CommandInterpreter &interpreter) in CommandObjectPlatformFClose() argument
518 : CommandObjectParsed(interpreter, "platform file close", in CommandObjectPlatformFClose()
558 CommandObjectPlatformFRead(CommandInterpreter &interpreter) in CommandObjectPlatformFRead() argument
559 : CommandObjectParsed(interpreter, "platform file read", in CommandObjectPlatformFRead()
652 CommandObjectPlatformFWrite(CommandInterpreter &interpreter) in CommandObjectPlatformFWrite() argument
653 : CommandObjectParsed(interpreter, "platform file write", in CommandObjectPlatformFWrite()
739 CommandObjectPlatformFile(CommandInterpreter &interpreter) in CommandObjectPlatformFile() argument
741 interpreter, "platform file", in CommandObjectPlatformFile()
745 "open", CommandObjectSP(new CommandObjectPlatformFOpen(interpreter))); in CommandObjectPlatformFile()
747 "close", CommandObjectSP(new CommandObjectPlatformFClose(interpreter))); in CommandObjectPlatformFile()
749 "read", CommandObjectSP(new CommandObjectPlatformFRead(interpreter))); in CommandObjectPlatformFile()
751 "write", CommandObjectSP(new CommandObjectPlatformFWrite(interpreter))); in CommandObjectPlatformFile()
766 CommandObjectPlatformGetFile(CommandInterpreter &interpreter) in CommandObjectPlatformGetFile() argument
768 interpreter, "platform get-file", in CommandObjectPlatformGetFile()
848 CommandObjectPlatformGetSize(CommandInterpreter &interpreter) in CommandObjectPlatformGetSize() argument
849 : CommandObjectParsed(interpreter, "platform get-size", in CommandObjectPlatformGetSize()
896 CommandObjectPlatformGetPermissions(CommandInterpreter &interpreter) in CommandObjectPlatformGetPermissions() argument
897 : CommandObjectParsed(interpreter, "platform get-permissions", in CommandObjectPlatformGetPermissions()
943 CommandObjectPlatformFileExists(CommandInterpreter &interpreter) in CommandObjectPlatformFileExists() argument
944 : CommandObjectParsed(interpreter, "platform file-exists", in CommandObjectPlatformFileExists()
985 CommandObjectPlatformPutFile(CommandInterpreter &interpreter) in CommandObjectPlatformPutFile() argument
987 interpreter, "platform put-file", in CommandObjectPlatformPutFile()
1046 CommandObjectPlatformProcessLaunch(CommandInterpreter &interpreter) in CommandObjectPlatformProcessLaunch() argument
1047 : CommandObjectParsed(interpreter, "platform process launch", in CommandObjectPlatformProcessLaunch()
1212 CommandObjectPlatformProcessList(CommandInterpreter &interpreter) in CommandObjectPlatformProcessList() argument
1213 : CommandObjectParsed(interpreter, "platform process list", in CommandObjectPlatformProcessList()
1460 CommandObjectPlatformProcessInfo(CommandInterpreter &interpreter) in CommandObjectPlatformProcessInfo() argument
1462 interpreter, "platform process info", in CommandObjectPlatformProcessInfo()
1528 CommandObjectPlatformProcessAttach(CommandInterpreter &interpreter) in CommandObjectPlatformProcessAttach() argument
1529 : CommandObjectParsed(interpreter, "platform process attach", in CommandObjectPlatformProcessAttach()
1578 CommandObjectPlatformProcess(CommandInterpreter &interpreter) in CommandObjectPlatformProcess() argument
1579 : CommandObjectMultiword(interpreter, "platform process", in CommandObjectPlatformProcess()
1585 CommandObjectSP(new CommandObjectPlatformProcessAttach(interpreter))); in CommandObjectPlatformProcess()
1588 CommandObjectSP(new CommandObjectPlatformProcessLaunch(interpreter))); in CommandObjectPlatformProcess()
1590 interpreter))); in CommandObjectPlatformProcess()
1592 interpreter))); in CommandObjectPlatformProcess()
1667 CommandObjectPlatformShell(CommandInterpreter &interpreter) in CommandObjectPlatformShell() argument
1668 : CommandObjectRaw(interpreter, "platform shell", in CommandObjectPlatformShell()
1754 CommandObjectPlatformInstall(CommandInterpreter &interpreter) in CommandObjectPlatformInstall() argument
1756 interpreter, "platform target-install", in CommandObjectPlatformInstall()
1805 CommandObjectPlatform::CommandObjectPlatform(CommandInterpreter &interpreter) in CommandObjectPlatform() argument
1807 interpreter, "platform", "Commands to manage and create platforms.", in CommandObjectPlatform()
1810 CommandObjectSP(new CommandObjectPlatformSelect(interpreter))); in CommandObjectPlatform()
1812 CommandObjectSP(new CommandObjectPlatformList(interpreter))); in CommandObjectPlatform()
1814 CommandObjectSP(new CommandObjectPlatformStatus(interpreter))); in CommandObjectPlatform()
1816 new CommandObjectPlatformConnect(interpreter))); in CommandObjectPlatform()
1819 CommandObjectSP(new CommandObjectPlatformDisconnect(interpreter))); in CommandObjectPlatform()
1821 interpreter))); in CommandObjectPlatform()
1823 CommandObjectSP(new CommandObjectPlatformMkDir(interpreter))); in CommandObjectPlatform()
1825 CommandObjectSP(new CommandObjectPlatformFile(interpreter))); in CommandObjectPlatform()
1827 CommandObjectSP(new CommandObjectPlatformFileExists(interpreter))); in CommandObjectPlatform()
1829 interpreter))); in CommandObjectPlatform()
1831 CommandObjectSP(new CommandObjectPlatformGetPermissions(interpreter))); in CommandObjectPlatform()
1833 interpreter))); in CommandObjectPlatform()
1835 interpreter))); in CommandObjectPlatform()
1837 new CommandObjectPlatformProcess(interpreter))); in CommandObjectPlatform()
1839 CommandObjectSP(new CommandObjectPlatformShell(interpreter))); in CommandObjectPlatform()
1842 CommandObjectSP(new CommandObjectPlatformInstall(interpreter))); in CommandObjectPlatform()