Home
last modified time | relevance | path

Searched refs:python_command (Results 1 – 3 of 3) sorted by relevance

/external/chromium_org/net/test/spawned_test_server/
Dlocal_test_server_posix.cc109 base::CommandLine python_command(base::CommandLine::NO_PROGRAM); in LaunchPython() local
110 if (!GetPythonCommand(&python_command)) in LaunchPython()
113 python_command.AppendArgPath(testserver_path); in LaunchPython()
114 if (!AddCommandLineArguments(&python_command)) in LaunchPython()
129 python_command.AppendArg("--startup-pipe=" + base::IntToString(pipefd[1])); in LaunchPython()
142 if (!base::LaunchProcess(python_command, options, &process_handle_)) { in LaunchPython()
143 LOG(ERROR) << "Failed to launch " << python_command.GetCommandLineString(); in LaunchPython()
Dlocal_test_server_win.cc144 base::CommandLine python_command(base::CommandLine::NO_PROGRAM); in LaunchPython() local
145 if (!GetPythonCommand(&python_command)) in LaunchPython()
148 python_command.AppendArgPath(testserver_path); in LaunchPython()
149 if (!AddCommandLineArguments(&python_command)) in LaunchPython()
178 python_command.AppendArg("--startup-pipe=" + in LaunchPython()
196 if (!base::LaunchProcess(python_command, launch_options, &process_handle_)) { in LaunchPython()
197 LOG(ERROR) << "Failed to launch " << python_command.GetCommandLineString(); in LaunchPython()
/external/chromium_org/sync/tools/testserver/
Drun_sync_testserver.cc41 CommandLine python_command(CommandLine::NO_PROGRAM); in RunSyncTest() local
42 if (!GetPythonCommand(&python_command)) { in RunSyncTest()
47 python_command.AppendArgPath(sync_test_script_path); in RunSyncTest()
48 if (!base::LaunchProcess(python_command, base::LaunchOptions(), NULL)) { in RunSyncTest()