Home
last modified time | relevance | path

Searched refs:commandLine (Results 1 – 25 of 30) sorted by relevance

12

/external/deqp/framework/delibs/deutil/
DdeCommandLine.c39 deCommandLine* deCommandLine_parse (const char* commandLine) in deCommandLine_parse() argument
56 DE_ASSERT(commandLine); in deCommandLine_parse()
59 buf = (char*)deCalloc(strlen(commandLine)+1); in deCommandLine_parse()
71 while (commandLine[pos] != 0) in deCommandLine_parse()
73 char c = commandLine[pos++]; in deCommandLine_parse()
78 c = commandLine[pos++]; in deCommandLine_parse()
112 DE_ASSERT(commandLine[pos] == 0); in deCommandLine_parse()
DdeProcess.c109 static void execProcess (const char* commandLine, const char* workingDirectory, int statusPipe) in execProcess() argument
111 deCommandLine* cmdLine = deCommandLine_parse(commandLine); in execProcess()
216 deBool deProcess_start (deProcess* process, const char* commandLine, const char* workingDirectory) in deProcess_start() argument
294 execProcess(commandLine, workingDirectory, statusPipe[1]); in deProcess_start()
628 deBool deProcess_start (deProcess* process, const char* commandLine, const char* workingDirectory) in deProcess_start() argument
702 …if (!CreateProcess(DE_NULL, (LPTSTR)commandLine, DE_NULL, DE_NULL, TRUE /* inherit handles */, 0, … in deProcess_start()
DdeProcess.h37 deBool deProcess_start (deProcess* process, const char* commandLine, const char* workingDirect…
/external/caliper/caliper/src/test/java/com/google/caliper/runner/
DWorkerProcessTest.java92 List<String> commandLine = builder.command(); in simpleArgsTest() local
93 assertEquals(new File("java").getAbsolutePath(), commandLine.get(0)); in simpleArgsTest()
94 assertEquals("--doTheHustle", commandLine.get(1)); // vm specific flags come next in simpleArgsTest()
95 assertEquals("-cp", commandLine.get(2)); // then the classpath in simpleArgsTest()
100 commandLine.subList(4, 4 + extraCommandLineArgs.size())); in simpleArgsTest()
102 assertEquals("-XX:+PrintFlagsFinal", commandLine.get(index)); in simpleArgsTest()
103 assertEquals("-XX:+PrintCompilation", commandLine.get(++index)); in simpleArgsTest()
104 assertEquals("-XX:+PrintGC", commandLine.get(++index)); in simpleArgsTest()
105 assertEquals(WorkerMain.class.getName(), commandLine.get(++index)); in simpleArgsTest()
/external/smali/baksmali/src/main/java/org/jf/baksmali/
Dmain.java134 CommandLine commandLine; in main() local
137 commandLine = parser.parse(options, args); in main()
145 String[] remainingArgs = commandLine.getArgs(); in main()
146 Option[] clOptions = commandLine.getOptions(); in main()
166 options.outputDirectory = commandLine.getOptionValue("o"); in main()
187 String[] values = commandLine.getOptionValues('r'); in main()
221 String bcp = commandLine.getOptionValue("c"); in main()
238 options.apiLevel = Integer.parseInt(commandLine.getOptionValue("a")); in main()
241 options.jobs = Integer.parseInt(commandLine.getOptionValue("j")); in main()
244 String rif = commandLine.getOptionValue("i"); in main()
[all …]
/external/smali/smali/src/main/java/org/jf/smali/
Dmain.java189 CommandLine commandLine; in main() local
192 commandLine = parser.parse(options, args); in main()
200 String[] remainingArgs = commandLine.getArgs(); in main()
202 Option[] options = commandLine.getOptions(); in main()
222 smaliOptions.outputDexFile = commandLine.getOptionValue("o"); in main()
231 smaliOptions.apiLevel = Integer.parseInt(commandLine.getOptionValue("a")); in main()
234 smaliOptions.jobs = Integer.parseInt(commandLine.getOptionValue("j")); in main()
238 smaliOptions.methodListFilename = commandLine.getOptionValue("m"); in main()
242 smaliOptions.fieldListFilename = commandLine.getOptionValue("f"); in main()
246 smaliOptions.typeListFilename = commandLine.getOptionValue("t"); in main()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
DDumpFields.java61 CommandLine commandLine; in main() local
64 commandLine = parser.parse(options, args); in main()
70 String[] remainingArgs = commandLine.getArgs(); in main()
72 Option[] parsedOptions = commandLine.getOptions(); in main()
90 apiLevel = Integer.parseInt(commandLine.getOptionValue("a")); in main()
DDumpVtables.java59 CommandLine commandLine; in main() local
62 commandLine = parser.parse(options, args); in main()
68 String[] remainingArgs = commandLine.getArgs(); in main()
70 Option[] parsedOptions = commandLine.getOptions(); in main()
88 apiLevel = Integer.parseInt(commandLine.getOptionValue("a")); in main()
/external/icu/icu4c/source/test/perf/perldriver/
DPerfFramework.pm123 my $commandLine;
125 $commandLine = "$program -i $ITERATIONS -p $NUMPASSES $locAndData @argsAndTest";
127 $commandLine = "$program -t $TIME -p $NUMPASSES $locAndData @argsAndTest";
130 my @res = measure1($commandLine);
/external/apache-harmony/support/src/test/java/tests/support/
DSupport_Exec.java218 StringBuilder commandLine; in exec() local
220 commandLine = new StringBuilder(args.get(0)); in exec()
222 commandLine.append(" "); in exec()
223 commandLine.append(args.get(i)); in exec()
225 System.out.println("Exec: " + commandLine.toString()); in exec()
/external/icu/icu4j/perf-tests/perldriver/
DPerfFramework4j.pm145 my $commandLine;
147 $commandLine = "$program @argsAndTest -i $ITERATIONS -p $NUMPASSES $locAndData $custArgs";
149 $commandLine = "$program @argsAndTest -t $TIME -p $NUMPASSES $locAndData $custArgs";
154 my @res = measure1($commandLine);
/external/deqp/framework/delibs/decpp/
DdeProcess.cpp43 void Process::start (const char* commandLine, const char* workingDirectory) in start() argument
45 if (!deProcess_start(m_process, commandLine, workingDirectory)) in start()
DdeProcess.hpp47 void start (const char* commandLine, const char* workingDirectory);
/external/deqp/android/cts/runner/tests/src/com/drawelements/deqp/runner/
DDeqpTestRunnerTest.java254 String commandLine = String.format( in testGlesVersion() local
262 runInstrumentationLineAndAnswer(mockDevice, mockIDevice, testTrie, commandLine, in testGlesVersion()
301 private void expectRenderConfigQuery(ITestDevice mockDevice, String commandLine) in expectRenderConfigQuery() argument
303 expectRenderConfigQueryAndReturn(mockDevice, commandLine, "Yes"); in expectRenderConfigQuery()
306 private void expectRenderConfigQueryAndReturn(ITestDevice mockDevice, String commandLine, in expectRenderConfigQueryAndReturn() argument
313 AbiUtils.createAbiFlag(ABI.getName()), commandLine, in expectRenderConfigQueryAndReturn()
392 String commandLine = String.format( in testResultCode() local
400 runInstrumentationLineAndAnswer(mockDevice, mockIDevice, testTrie, commandLine, output); in testResultCode()
558 String commandLine = String.format( in testRun_multipleTests() local
566 runInstrumentationLineAndAnswer(mockDevice, mockIDevice, testTrie, commandLine, output); in testRun_multipleTests()
[all …]
/external/boringssl/src/crypto/cipher/test/
Dmake_legacy_aead_tests.go296commandLine := fmt.Sprintf("go run make_legacy_aead_tests.go -cipher %s -mac %s", *bulkCipher, *ma…
298 commandLine += " -implicit-iv"
301 commandLine += " -ssl3"
304 fmt.Printf("# %s\n", commandLine)
/external/caliper/caliper/src/main/java/com/google/caliper/config/
DCaliperConfigLoader.java79 private static ImmutableMap<String, String> mergeProperties(Map<String, String> commandLine, in mergeProperties() argument
84 map.putAll(commandLine); // overwrite and augment in mergeProperties()
/external/deqp/android/scripts/
Dcommon.py100 def execute (commandLine): argument
101 args = shlex.split(commandLine)
104 raise Exception("Failed to execute '%s', got %d" % (commandLine, retcode))
/external/skia/platform_tools/android/apps/visualbench/
Dbuild.gradle33 commandLine constructBuildCommand(variant, "CopyVisualBenchDeps").split()
/external/skia/platform_tools/android/apps/visualbenchsdl/
Dbuild.gradle33 commandLine constructBuildCommand(variant, "CopyVisualBenchDeps").split()
/external/skia/platform_tools/android/apps/sample_app/
Dbuild.gradle33 commandLine constructBuildCommand(variant, "CopySampleAppDeps").split()
/external/skia/platform_tools/android/apps/canvasproof/
Dbuild.gradle25 commandLine constructBuildCommand(variant, "CopyCanvasProofDeps").split()
/external/deqp/execserver/
DxsWin32TestProcess.hpp139 void start (const char* commandLine, const char* workingDirectory);
/external/vogar/src/vogar/
DTarget.java171 public List<String> commandLine() {
/external/vogar/src/vogar/commands/
DVmCommandBuilder.java187 .args(builder.commandLine()) in build()
/external/deqp/framework/egl/
DegluUtil.hpp87 WindowParams::Visibility parseWindowVisibility (const tcu::CommandLine& commandLine);

12