Home
last modified time | relevance | path

Searched refs:mCommandLine (Results 1 – 7 of 7) sorted by relevance

/tools/loganalysis/src/com/android/loganalysis/parser/
DBugreportParser.java98 mCommandLine.put(keyValue[0], keyValue[1]);
100 mCommandLine.put(keyValue[0], null);
121 private CommandLineItem mCommandLine = new CommandLineItem(); field in BugreportParser
201 mBugreport.setCommandLine(mCommandLine); in commit()
239 } else if (mCommandLine.containsKey(BOOTREASON_KERNEL)) { in commit()
240 bootreason = mCommandLine.get(BOOTREASON_KERNEL); in commit()
/tools/tradefederation/core/src/com/android/tradefed/cluster/
DTestContext.java36 String mCommandLine = null; field in TestContext
41 return mCommandLine; in getCommandLine()
45 mCommandLine = commandLine; in setCommandLine()
66 obj.mCommandLine = json.optString("command_line"); in fromJson()
83 json.put("command_line", mCommandLine); in toJson()
DClusterCommandLauncher.java94 private String mCommandLine = null; field in ClusterCommandLauncher
174 new SubprocessReportingHelper(mCommandLine, classpath, testWorkDir, port); in run()
180 List<String> javaCommandArgs = buildJavaCommandArgs(classpath, mCommandLine); in run()
181 CLog.i("Running a command line: %s", mCommandLine); in run()
388 return mCommandLine; in getCommandLine()
DClusterCommand.java59 private final String mCommandLine; field in ClusterCommand
96 mCommandLine = cmdLine; in ClusterCommand()
152 return mCommandLine; in getCommandLine()
DSubprocessReportingHelper.java52 private String mCommandLine; field in SubprocessReportingHelper
59 mCommandLine = commandLine; in SubprocessReportingHelper()
74 final String[] tokens = QuotationAwareTokenizer.tokenizeLine(mCommandLine); in buildSubprocessReporterJar()
/tools/tradefederation/core/src/com/android/tradefed/config/
DConfiguration.java116 private String[] mCommandLine; field in Configuration
279 mCommandLine = arrayArgs; in setCommandLine()
288 if (mCommandLine != null && mCommandLine.length != 0) { in getCommandLine()
289 return QuotationAwareTokenizer.combineTokens(mCommandLine); in getCommandLine()
723 clone.setCommandLine(this.mCommandLine); in clone()
/tools/tradefederation/core/src/com/android/tradefed/config/proxy/
DTradefedDelegator.java50 private String[] mCommandLine = null; field in TradefedDelegator
77 mCommandLine = command; in setCommandLine()
81 return mCommandLine; in getCommandLine()