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

  /external/chromium_org/sync/tools/testserver/
run_sync_testserver.cc 41 CommandLine python_command(CommandLine::NO_PROGRAM);
42 if (!GetPythonCommand(&python_command)) {
47 python_command.AppendArgPath(sync_test_script_path);
48 if (!base::LaunchProcess(python_command, base::LaunchOptions(), NULL)) {
  /external/chromium_org/net/test/spawned_test_server/
local_test_server_posix.cc 108 CommandLine python_command(CommandLine::NO_PROGRAM);
109 if (!GetPythonCommand(&python_command))
112 python_command.AppendArgPath(testserver_path);
113 if (!AddCommandLineArguments(&python_command))
129 python_command.AppendArg("--startup-pipe=" + base::IntToString(pipefd[1]));
142 if (!base::LaunchProcess(python_command, options, &process_handle_)) {
143 LOG(ERROR) << "Failed to launch " << python_command.GetCommandLineString();
local_test_server_win.cc 144 CommandLine python_command(CommandLine::NO_PROGRAM);
145 if (!GetPythonCommand(&python_command))
148 python_command.AppendArgPath(testserver_path);
149 if (!AddCommandLineArguments(&python_command))
178 python_command.AppendArg("--startup-pipe=" +
196 if (!base::LaunchProcess(python_command, launch_options, &process_handle_)) {
197 LOG(ERROR) << "Failed to launch " << python_command.GetCommandLineString();
  /external/chromium/net/test/
test_server_posix.cc 97 CommandLine python_command(FilePath(FILE_PATH_LITERAL("python")));
98 python_command.AppendArgPath(testserver_path);
99 if (!AddCommandLineArguments(&python_command))
115 python_command.AppendSwitchASCII("startup-pipe",
126 if (!base::LaunchApp(python_command.argv(), map_write_fd, false,
128 LOG(ERROR) << "Failed to launch " << python_command.command_line_string()
test_server_win.cc 148 CommandLine python_command(python_exe);
149 python_command.AppendArgPath(testserver_path);
150 if (!AddCommandLineArguments(&python_command))
179 python_command.AppendSwitchASCII(
183 if (!LaunchTestServerAsJob(python_command,
187 LOG(ERROR) << "Failed to launch " << python_command.command_line_string();
  /external/chromium_org/chrome/test/functional/
perf.py 267 def _MeasureElapsedTime(self, python_command, num_invocations=1):
271 python_command: A callable.
278 assert callable(python_command)
281 python_command()
    [all...]

Completed in 122 milliseconds