HomeSort by relevance Sort by last modified time
    Searched refs:cmdLine (Results 1 - 6 of 6) sorted by null

  /cts/tools/host/src/com/android/cts/
CommandHistory.java 88 String cmdLine = mCmdRecords.get(start);
89 CUIOutputStream.println(" " + Long.toString(start) + "\t" + cmdLine);
97 * @param cmdLine The command line.
100 final String cmdLine) {
101 if ((cmdLine == null) || (cmdLine.length() == 0)) {
105 if (isValidCommand(cp.getAction()) && (!hasCommand(cmdLine))) {
106 mCmdRecords.add(cmdLine);
136 * @param cmdLine The command to be checked against the commands recorded.
139 private boolean hasCommand(final String cmdLine) {
    [all...]
ConsoleUi.java 100 String cmdLine = readLine(CUIOutputStream.CTS_PROMPT_SIGN);
101 CommandParser cp = CommandParser.parse(cmdLine);
103 mCommandHistory.addCommand(cp, cmdLine);
135 String cmdLine = null;
137 // cmdLine = sConsoleReader.readLine(prompt).trim();
140 cmdLine = mCommandInput.readLine().trim();
142 return cmdLine;
    [all...]
TestHost.java 320 String cmdLine = "";
322 cmdLine += mainArgs[i] + " ";
326 cp = CommandParser.parse(cmdLine);
  /cts/tools/host/test/com/android/cts/
ConsoleTests.java 76 String cmdline = CTSCommand.ADD + " " + "-p" + " " local
78 cui.processCommand(CommandParser.parse(cmdline));
85 cmdline = CTSCommand.ADD + " " + "-p" + " " + mPath2;
86 cui.processCommand(CommandParser.parse(cmdline));
94 cmdline = CTSCommand.ADD + " " + "-p" + " " + mPath3;
95 cui.processCommand(CommandParser.parse(cmdline));
127 String cmdLine = CTSCommand.ADD + " -p " + mPath1;
128 cui.processCommand(CommandParser.parse(cmdLine));
129 cmdLine = CTSCommand.ADD + " -p " + mPath2;
130 cui.processCommand(CommandParser.parse(cmdLine));
    [all...]
TestSessionBuilderTests.java 211 String cmdLine = CTSCommand.REMOVE + " " + "-p" + " "
213 cui.processCommand(CommandParser.parse(cmdLine));
    [all...]
  /ndk/samples/san-angeles/jni/
app-win32.c 207 LPTSTR cmdLine, int cmdShow)
216 cmdLine = cmdLine;

Completed in 1071 milliseconds