Lines Matching refs:interpreter

148   CommandObjectPlatformSelect(CommandInterpreter &interpreter)  in CommandObjectPlatformSelect()  argument
149 : CommandObjectParsed(interpreter, "platform select", in CommandObjectPlatformSelect()
206 CommandObjectPlatformList(CommandInterpreter &interpreter) in CommandObjectPlatformList() argument
207 : CommandObjectParsed(interpreter, "platform list", in CommandObjectPlatformList()
243 CommandObjectPlatformStatus(CommandInterpreter &interpreter) in CommandObjectPlatformStatus() argument
244 : CommandObjectParsed(interpreter, "platform status", in CommandObjectPlatformStatus()
274 CommandObjectPlatformConnect(CommandInterpreter &interpreter) in CommandObjectPlatformConnect() argument
276 interpreter, "platform connect", in CommandObjectPlatformConnect()
325 CommandObjectPlatformDisconnect(CommandInterpreter &interpreter) in CommandObjectPlatformDisconnect() argument
326 : CommandObjectParsed(interpreter, "platform disconnect", in CommandObjectPlatformDisconnect()
379 CommandObjectPlatformSettings(CommandInterpreter &interpreter) in CommandObjectPlatformSettings() argument
380 : CommandObjectParsed(interpreter, "platform settings", in CommandObjectPlatformSettings()
417 CommandObjectPlatformMkDir(CommandInterpreter &interpreter) in CommandObjectPlatformMkDir() argument
418 : CommandObjectParsed(interpreter, "platform mkdir", in CommandObjectPlatformMkDir()
467 CommandObjectPlatformFOpen(CommandInterpreter &interpreter) in CommandObjectPlatformFOpen() argument
468 : CommandObjectParsed(interpreter, "platform file open", in CommandObjectPlatformFOpen()
530 CommandObjectPlatformFClose(CommandInterpreter &interpreter) in CommandObjectPlatformFClose() argument
531 : CommandObjectParsed(interpreter, "platform file close", in CommandObjectPlatformFClose()
572 CommandObjectPlatformFRead(CommandInterpreter &interpreter) in CommandObjectPlatformFRead() argument
573 : CommandObjectParsed(interpreter, "platform file read", in CommandObjectPlatformFRead()
667 CommandObjectPlatformFWrite(CommandInterpreter &interpreter) in CommandObjectPlatformFWrite() argument
668 : CommandObjectParsed(interpreter, "platform file write", in CommandObjectPlatformFWrite()
755 CommandObjectPlatformFile(CommandInterpreter &interpreter) in CommandObjectPlatformFile() argument
757 interpreter, "platform file", in CommandObjectPlatformFile()
761 "open", CommandObjectSP(new CommandObjectPlatformFOpen(interpreter))); in CommandObjectPlatformFile()
763 "close", CommandObjectSP(new CommandObjectPlatformFClose(interpreter))); in CommandObjectPlatformFile()
765 "read", CommandObjectSP(new CommandObjectPlatformFRead(interpreter))); in CommandObjectPlatformFile()
767 "write", CommandObjectSP(new CommandObjectPlatformFWrite(interpreter))); in CommandObjectPlatformFile()
782 CommandObjectPlatformGetFile(CommandInterpreter &interpreter) in CommandObjectPlatformGetFile() argument
784 interpreter, "platform get-file", in CommandObjectPlatformGetFile()
864 CommandObjectPlatformGetSize(CommandInterpreter &interpreter) in CommandObjectPlatformGetSize() argument
865 : CommandObjectParsed(interpreter, "platform get-size", in CommandObjectPlatformGetSize()
934 CommandObjectPlatformGetPermissions(CommandInterpreter &interpreter) in CommandObjectPlatformGetPermissions() argument
935 : CommandObjectParsed(interpreter, "platform get-permissions", in CommandObjectPlatformGetPermissions()
1003 CommandObjectPlatformFileExists(CommandInterpreter &interpreter) in CommandObjectPlatformFileExists() argument
1004 : CommandObjectParsed(interpreter, "platform file-exists", in CommandObjectPlatformFileExists()
1067 CommandObjectPlatformPutFile(CommandInterpreter &interpreter) in CommandObjectPlatformPutFile() argument
1069 interpreter, "platform put-file", in CommandObjectPlatformPutFile()
1128 CommandObjectPlatformProcessLaunch(CommandInterpreter &interpreter) in CommandObjectPlatformProcessLaunch() argument
1129 : CommandObjectParsed(interpreter, "platform process launch", in CommandObjectPlatformProcessLaunch()
1285 CommandObjectPlatformProcessList(CommandInterpreter &interpreter) in CommandObjectPlatformProcessList() argument
1286 : CommandObjectParsed(interpreter, "platform process list", in CommandObjectPlatformProcessList()
1533 CommandObjectPlatformProcessInfo(CommandInterpreter &interpreter) in CommandObjectPlatformProcessInfo() argument
1535 interpreter, "platform process info", in CommandObjectPlatformProcessInfo()
1620 CommandObjectPlatformProcessAttach(CommandInterpreter &interpreter) in CommandObjectPlatformProcessAttach() argument
1621 : 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()
1847 CommandObjectPlatformInstall(CommandInterpreter &interpreter) in CommandObjectPlatformInstall() argument
1849 interpreter, "platform target-install", in CommandObjectPlatformInstall()
1898 CommandObjectPlatform::CommandObjectPlatform(CommandInterpreter &interpreter) in CommandObjectPlatform() argument
1900 interpreter, "platform", "Commands to manage and create platforms.", in CommandObjectPlatform()
1903 CommandObjectSP(new CommandObjectPlatformSelect(interpreter))); in CommandObjectPlatform()
1905 CommandObjectSP(new CommandObjectPlatformList(interpreter))); in CommandObjectPlatform()
1907 CommandObjectSP(new CommandObjectPlatformStatus(interpreter))); in CommandObjectPlatform()
1909 new CommandObjectPlatformConnect(interpreter))); in CommandObjectPlatform()
1912 CommandObjectSP(new CommandObjectPlatformDisconnect(interpreter))); in CommandObjectPlatform()
1914 interpreter))); in CommandObjectPlatform()
1916 CommandObjectSP(new CommandObjectPlatformMkDir(interpreter))); in CommandObjectPlatform()
1918 CommandObjectSP(new CommandObjectPlatformFile(interpreter))); in CommandObjectPlatform()
1920 CommandObjectSP(new CommandObjectPlatformFileExists(interpreter))); in CommandObjectPlatform()
1922 interpreter))); in CommandObjectPlatform()
1924 CommandObjectSP(new CommandObjectPlatformGetPermissions(interpreter))); in CommandObjectPlatform()
1926 interpreter))); in CommandObjectPlatform()
1928 interpreter))); in CommandObjectPlatform()
1930 new CommandObjectPlatformProcess(interpreter))); in CommandObjectPlatform()
1932 CommandObjectSP(new CommandObjectPlatformShell(interpreter))); in CommandObjectPlatform()
1935 CommandObjectSP(new CommandObjectPlatformInstall(interpreter))); in CommandObjectPlatform()