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

  /external/google-breakpad/src/testing/test/
gmock_test_utils.py 99 # Exposes Subprocess from gtest_test_utils.
100 Subprocess = gtest_test_utils.Subprocess
  /external/googletest/googlemock/test/
gmock_test_utils.py 100 Subprocess = gtest_test_utils.Subprocess
  /external/libvpx/libvpx/tools/
lint-hunks.py 14 import subprocess
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/src/google/protobuf/compiler/
subprocess.h 56 class LIBPROTOC_EXPORT 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>
60 << Subprocess::Win32ErrorMessage(GetLastError());
64 Subprocess::Subprocess()
68 Subprocess::~Subprocess() {
77 void Subprocess::Start(const string& program, SearchMode search_mode) {
148 bool Subprocess::Communicate(const Message& input, Message* output,
260 string Subprocess::Win32ErrorMessage(DWORD error_code) {
280 Subprocess::Subprocess(
    [all...]
  /external/v8/testing/gmock/test/
gmock_test_utils.py 100 Subprocess = gtest_test_utils.Subprocess
  /system/update_engine/common/
subprocess.h 36 // The Subprocess class is a singleton. It's used to spawn off a subprocess
37 // and get notified when the subprocess exits. The result of Exec() can
42 // To create the Subprocess singleton just instantiate it with and call Init().
43 // You can't have two Subprocess instances initialized at the same time.
47 class Subprocess {
58 Subprocess() = default;
60 // Destroy and unregister the Subprocess singleton.
61 ~Subprocess();
63 // Initialize and register the Subprocess singleton
    [all...]
subprocess.cc 17 #include "update_engine/common/subprocess.h"
54 if ((flags & Subprocess::kRedirectStderrToStdout) != 0) {
69 // Helper function to launch a process with the given Subprocess::Flags.
71 // The caller is responsible for watching the termination of the subprocess.
80 proc->SetSearchPath((flags & Subprocess::kSearchPath) != 0);
102 void Subprocess::Init(
112 Subprocess::~Subprocess() {
117 void Subprocess::OnStdoutReady(SubprocessRecord* record) {
136 void Subprocess::ChildExitedCallback(const siginfo_t& info)
    [all...]
  /external/google-breakpad/src/testing/gtest/test/
gtest_test_utils.py 47 import subprocess
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/protobuf/gtest/test/
gtest_test_utils.py 47 import subprocess
196 class Subprocess:
207 env: Dictionary with environment to pass to the subprocess.
221 # The subprocess module is the preferrable way of running programs
230 stderr = subprocess.STDOUT
232 stderr = subprocess.PIPE
234 p = subprocess.Popen(command,
235 stdout=subprocess.PIPE, stderr=stderr,
254 # current 'os.environ' for compatibility with the subprocess.Popen
279 # subprocess.Popen.returncode
    [all...]
  /prebuilts/ndk/r16/sources/third_party/googletest/googletest/test/
gtest_test_utils.py 47 import subprocess
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/googletest/googletest/test/
gtest_test_utils.py 47 import subprocess
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/v8/testing/gtest/test/
gtest_test_utils.py 47 import subprocess
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/vulkan-validation-layers/tests/gtest-1.7.0/test/
gtest_test_utils.py 47 import subprocess
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...]
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/tests/gtest-1.7.0/test/
gtest_test_utils.py 47 import subprocess
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...]
  /system/core/adb/
shell_service.cpp 21 // of communication with the subprocess, passing raw data or using a simple
33 // Non-protocol subprocesses work by passing subprocess stdin/out/err through
41 // Subprocess | adbd subprocess thread | adbd main fdevent loop
59 // Subprocess | adbd subprocess thread | adbd main fdevent loop
139 class Subprocess {
141 Subprocess(const std::string& command, const char* terminal_type,
143 ~Subprocess();
151 // Sets up FDs, forks a subprocess, starts the subprocess manager thread
454 Subprocess* subprocess = reinterpret_cast<Subprocess*>(userdata); local
735 auto subprocess = std::make_unique<Subprocess>(name, terminal_type, type, protocol); local
    [all...]

Completed in 182 milliseconds