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

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
script_helper.py 25 cmd_line = [sys.executable]
27 cmd_line.append('-E')
28 cmd_line.extend(args)
33 p = subprocess.Popen(cmd_line, stdin=subprocess.PIPE,
65 cmd_line = [sys.executable, '-E']
66 cmd_line.extend(args)
68 return subprocess.call(cmd_line, stdout=devnull,
72 cmd_line = [sys.executable, '-E']
73 cmd_line.extend(args)
74 return subprocess.Popen(cmd_line, stdin=subprocess.PIPE
    [all...]
test_cmd_line.py 26 def verify_valid_flag(self, cmd_line):
27 data = self.start_python(cmd_line)
test_hash.py 159 cmd_line = [sys.executable, '-c', self.get_hash_command(repr_)]
160 p = subprocess.Popen(cmd_line, stdin=subprocess.PIPE,
test_os.py 556 cmd_line = [sys.executable, '-c', code]
557 p = subprocess.Popen(cmd_line, stdin=subprocess.PIPE,
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
script_helper.py 25 cmd_line = [sys.executable]
27 cmd_line.append('-E')
28 cmd_line.extend(args)
33 p = subprocess.Popen(cmd_line, stdin=subprocess.PIPE,
65 cmd_line = [sys.executable, '-E']
66 cmd_line.extend(args)
68 return subprocess.call(cmd_line, stdout=devnull,
72 cmd_line = [sys.executable, '-E']
73 cmd_line.extend(args)
74 return subprocess.Popen(cmd_line, stdin=subprocess.PIPE
    [all...]
test_cmd_line.py 26 def verify_valid_flag(self, cmd_line):
27 data = self.start_python(cmd_line)
test_hash.py 159 cmd_line = [sys.executable, '-c', self.get_hash_command(repr_)]
160 p = subprocess.Popen(cmd_line, stdin=subprocess.PIPE,
test_os.py 556 cmd_line = [sys.executable, '-c', code]
557 p = subprocess.Popen(cmd_line, stdin=subprocess.PIPE,
    [all...]
  /art/runtime/
runtime_linux.cc 323 const char* cmd_line = GetCmdLine(); local
324 if (cmd_line == nullptr) {
325 cmd_line = "<unset>"; // Because no-one called InitLogging.
339 << "Cmdline: " << cmd_line << "\n"
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
RenderScriptLauncher.java 86 String cmd_line = sb.toString(); local
87 AdtPlugin.printToConsole(mProject, cmd_line);
AidlProcessor.java 253 String cmd_line = sb.toString(); local
254 AdtPlugin.printToConsole(project, cmd_line);
  /external/valgrind/cachegrind/
cg_merge.c 227 char* cmd_line; member in struct:__anon20135
343 char* cmd_line,
354 cpf->cmd_line = cmd_line;
382 if (cpf->cmd_line)
383 free(cpf->cmd_line);
417 fprintf(f, "%s\n", cpf->cmd_line);
661 cpf->cmd_line = strdup(line);
662 if (cpf->cmd_line == NULL)
    [all...]
  /external/v8/src/
d8.js 262 function DebugCommandToJSONRequest(cmd_line) {
263 var result = new DebugRequest(cmd_line).JSONRequest();
271 function DebugRequest(cmd_line) {
274 if (cmd_line && cmd_line.length > 0 && cmd_line.charAt(0) == '{') {
275 this.request_ = cmd_line;
281 if (cmd_line == '\n') {
283 cmd_line = 'break'; // Not in debugger mode, break with a frame request.
285 cmd_line = repeat_cmd_line; // use command to repeat
    [all...]
  /external/v8/tools/push-to-trunk/
common_includes.py 188 cmd_line = "%s %s %s" % (prefix, cmd, args)
189 print "Command: %s" % cmd_line
194 return subprocess.check_output(cmd_line, shell=True, cwd=cwd)
196 return subprocess.check_call(cmd_line, shell=True, cwd=cwd)
  /external/selinux/policycoreutils/secon/
secon.c 153 static void cmd_line(int argc, char *argv[]) function
753 cmd_line(argc, argv);
  /external/v8/tools/gcmole/
gcmole.lua 115 local cmd_line = MakeClangCommandLine(cfg.plugin,
121 local action = cmd_line .. " " .. filename .. " 2>&1"
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/builders/
PreCompilerBuilder.java 1218 String cmd_line = sb.toString(); local
    [all...]
  /external/lldb/test/
dotest.py     [all...]

Completed in 601 milliseconds