HomeSort by relevance Sort by last modified time
    Searched refs:Subprocess (Results 1 - 25 of 64) sorted by null

1 2 3

  /external/protobuf/src/google/protobuf/compiler/
subprocess.h 55 class Subprocess {
57 Subprocess();
58 ~Subprocess();
65 // Start the subprocess. Currently we don't provide a way to specify
69 // Serialize the input message and pipe it to the subprocess's stdin, then
70 // close the pipe. Meanwhile, read from the subprocess's stdout and parse
79 static string Subprocess::Win32ErrorMessage(DWORD error_code);
subprocess.cc 33 #include <google/protobuf/compiler/subprocess.h>
55 << Subprocess::Win32ErrorMessage(GetLastError());
59 Subprocess::Subprocess()
63 Subprocess::~Subprocess() {
72 void Subprocess::Start(const string& program, SearchMode search_mode) {
143 bool Subprocess::Communicate(const Message& input, Message* output,
255 string Subprocess::Win32ErrorMessage(DWORD error_code) {
275 Subprocess::Subprocess(
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
subprocess.h 56 class Subprocess {
58 Subprocess();
59 ~Subprocess();
66 // Start the subprocess. Currently we don't provide a way to specify
70 // Serialize the input message and pipe it to the subprocess's stdin, then
71 // close the pipe. Meanwhile, read from the subprocess's stdout and parse
subprocess.cc 33 #include <google/protobuf/compiler/subprocess.h>
58 << Subprocess::Win32ErrorMessage(GetLastError());
62 Subprocess::Subprocess()
66 Subprocess::~Subprocess() {
75 void Subprocess::Start(const string& program, SearchMode search_mode) {
146 bool Subprocess::Communicate(const Message& input, Message* output,
258 string Subprocess::Win32ErrorMessage(DWORD error_code) {
278 Subprocess::Subprocess(
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/tools/
lint-hunks.py 14 import subprocess namespace
40 class Subprocess(subprocess.Popen):
46 super(Subprocess, self).__init__(args, **kwargs)
49 result = super(Subprocess, self).communicate(*args, **kwargs)
80 tl = Subprocess(TOPLEVEL_CMD, stdout=subprocess.PIPE)
96 p = Subprocess(diff_cmd, stdout=subprocess.PIPE)
113 show = Subprocess(show_cmd, stdout=subprocess.PIPE
    [all...]
  /external/libvpx/libvpx/tools/
lint-hunks.py 14 import subprocess namespace
40 class Subprocess(subprocess.Popen):
46 super(Subprocess, self).__init__(args, **kwargs)
49 result = super(Subprocess, self).communicate(*args, **kwargs)
80 tl = Subprocess(TOPLEVEL_CMD, stdout=subprocess.PIPE)
96 p = Subprocess(diff_cmd, stdout=subprocess.PIPE)
113 show = Subprocess(show_cmd, stdout=subprocess.PIPE
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/tools/
lint-hunks.py 14 import subprocess namespace
40 class Subprocess(subprocess.Popen):
46 super(Subprocess, self).__init__(args, **kwargs)
49 result = super(Subprocess, self).communicate(*args, **kwargs)
80 tl = Subprocess(TOPLEVEL_CMD, stdout=subprocess.PIPE)
96 p = Subprocess(diff_cmd, stdout=subprocess.PIPE)
113 show = Subprocess(show_cmd, stdout=subprocess.PIPE
    [all...]
  /external/chromium_org/testing/gtest/test/
gtest_uninitialized_test.py 58 p = gtest_test_utils.Subprocess(command)
gtest_catch_exceptions_test.py 70 TEST_LIST = gtest_test_utils.Subprocess(
76 BINARY_OUTPUT = gtest_test_utils.Subprocess([EXE_PATH], env=environ).output
78 EX_BINARY_OUTPUT = gtest_test_utils.Subprocess(
225 uncaught_exceptions_ex_binary_output = gtest_test_utils.Subprocess(
gtest_help_test.py 61 SUPPORTS_DEATH_TESTS = "DeathTest" in gtest_test_utils.Subprocess(
94 child = gtest_test_utils.Subprocess(command)
gtest_env_var_test.py 70 return gtest_test_utils.Subprocess(args, env=environ).output
gtest_list_tests_unittest.py 120 return gtest_test_utils.Subprocess([EXE_PATH] + args,
  /external/gtest/test/
gtest_uninitialized_test.py 58 p = gtest_test_utils.Subprocess(command)
gtest_catch_exceptions_test.py 70 TEST_LIST = gtest_test_utils.Subprocess(
76 BINARY_OUTPUT = gtest_test_utils.Subprocess([EXE_PATH], env=environ).output
78 EX_BINARY_OUTPUT = gtest_test_utils.Subprocess(
225 uncaught_exceptions_ex_binary_output = gtest_test_utils.Subprocess(
gtest_help_test.py 61 SUPPORTS_DEATH_TESTS = "DeathTest" in gtest_test_utils.Subprocess(
94 child = gtest_test_utils.Subprocess(command)
gtest_env_var_test.py 70 return gtest_test_utils.Subprocess(args, env=environ).output
gtest_list_tests_unittest.py 120 return gtest_test_utils.Subprocess([EXE_PATH] + args,
  /external/protobuf/gtest/test/
gtest_uninitialized_test.py 58 p = gtest_test_utils.Subprocess(command)
gtest_env_var_test.py 68 return gtest_test_utils.Subprocess(args).output
gtest_list_tests_unittest.py 94 return gtest_test_utils.Subprocess([EXE_PATH] + args,
gtest_help_test.py 83 child = gtest_test_utils.Subprocess(command)
  /ndk/sources/third_party/googletest/googletest/test/
gtest_uninitialized_test.py 58 p = gtest_test_utils.Subprocess(command)
gtest_catch_exceptions_test.py 60 TEST_LIST = gtest_test_utils.Subprocess([EXE_PATH, LIST_TESTS_FLAG]).output
65 BINARY_OUTPUT = gtest_test_utils.Subprocess([EXE_PATH]).output
67 EX_BINARY_OUTPUT = gtest_test_utils.Subprocess([EX_EXE_PATH]).output
212 uncaught_exceptions_ex_binary_output = gtest_test_utils.Subprocess(
gtest_help_test.py 61 SUPPORTS_DEATH_TESTS = "DeathTest" in gtest_test_utils.Subprocess(
94 child = gtest_test_utils.Subprocess(command)
gtest_env_var_test.py 70 return gtest_test_utils.Subprocess(args, env=environ).output

Completed in 1298 milliseconds

1 2 3