HomeSort by relevance Sort by last modified time
    Searched defs:Subprocess (Results 1 - 11 of 11) sorted by null

  /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/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/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/protobuf/gtest/test/
gtest_test_utils.py 47 import subprocess namespace
192 class Subprocess:
212 # The subprocess module is the preferrable way of running programs
221 stderr = subprocess.STDOUT
223 stderr = subprocess.PIPE
225 p = subprocess.Popen(command,
226 stdout=subprocess.PIPE, stderr=stderr,
247 # subprocess.Popen.returncode.
  /ndk/sources/third_party/googletest/googletest/test/
gtest_test_utils.py 47 import subprocess namespace
192 class Subprocess:
203 env: Dictionary with environment to pass to the subprocess.
217 # The subprocess module is the preferrable way of running programs
226 stderr = subprocess.STDOUT
228 stderr = subprocess.PIPE
230 p = subprocess.Popen(command,
231 stdout=subprocess.PIPE, stderr=stderr,
250 # current 'os.environ' for compatibility with the subprocess.Popen
275 # subprocess.Popen.returncode
    [all...]
  /external/chromium_org/testing/gtest/test/
gtest_test_utils.py 47 import subprocess namespace
207 class Subprocess:
218 env: Dictionary with environment to pass to the subprocess.
232 # The subprocess module is the preferrable way of running programs
241 stderr = subprocess.STDOUT
243 stderr = subprocess.PIPE
245 p = subprocess.Popen(command,
246 stdout=subprocess.PIPE, stderr=stderr,
265 # current 'os.environ' for compatibility with the subprocess.Popen
290 # subprocess.Popen.returncode
    [all...]
  /external/gtest/test/
gtest_test_utils.py 47 import subprocess namespace
207 class Subprocess:
218 env: Dictionary with environment to pass to the subprocess.
232 # The subprocess module is the preferrable way of running programs
241 stderr = subprocess.STDOUT
243 stderr = subprocess.PIPE
245 p = subprocess.Popen(command,
246 stdout=subprocess.PIPE, stderr=stderr,
265 # current 'os.environ' for compatibility with the subprocess.Popen
290 # subprocess.Popen.returncode
    [all...]

Completed in 635 milliseconds