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

1 2 3 4 5 6

  /external/google-breakpad/src/testing/test/
gmock_leak_test.py 51 gmock_test_utils.Subprocess(TEST_WITH_EXPECT_CALL).exit_code)
54 gmock_test_utils.Subprocess(TEST_WITH_ON_CALL).exit_code)
59 gmock_test_utils.Subprocess(TEST_WITH_EXPECT_CALL +
63 gmock_test_utils.Subprocess(TEST_WITH_ON_CALL +
69 gmock_test_utils.Subprocess(TEST_WITH_EXPECT_CALL +
73 gmock_test_utils.Subprocess(TEST_WITH_ON_CALL +
79 gmock_test_utils.Subprocess(TEST_WITH_EXPECT_CALL +
85 gmock_test_utils.Subprocess(TEST_MULTIPLE_LEAKS +
gmock_test_utils.py 99 # Exposes Subprocess from gtest_test_utils.
100 Subprocess = gtest_test_utils.Subprocess
  /external/googletest/googlemock/test/
gmock_leak_test.py 61 gmock_test_utils.Subprocess(TEST_WITH_EXPECT_CALL,
65 gmock_test_utils.Subprocess(TEST_WITH_ON_CALL,
71 gmock_test_utils.Subprocess(TEST_WITH_EXPECT_CALL +
76 gmock_test_utils.Subprocess(TEST_WITH_ON_CALL +
83 gmock_test_utils.Subprocess(TEST_WITH_EXPECT_CALL +
88 gmock_test_utils.Subprocess(TEST_WITH_ON_CALL +
95 gmock_test_utils.Subprocess(TEST_WITH_EXPECT_CALL +
102 gmock_test_utils.Subprocess(TEST_MULTIPLE_LEAKS +
gmock_test_utils.py 100 Subprocess = gtest_test_utils.Subprocess
  /external/v8/testing/gmock/test/
gmock_leak_test.py 61 gmock_test_utils.Subprocess(TEST_WITH_EXPECT_CALL,
65 gmock_test_utils.Subprocess(TEST_WITH_ON_CALL,
71 gmock_test_utils.Subprocess(TEST_WITH_EXPECT_CALL +
76 gmock_test_utils.Subprocess(TEST_WITH_ON_CALL +
83 gmock_test_utils.Subprocess(TEST_WITH_EXPECT_CALL +
88 gmock_test_utils.Subprocess(TEST_WITH_ON_CALL +
95 gmock_test_utils.Subprocess(TEST_WITH_EXPECT_CALL +
102 gmock_test_utils.Subprocess(TEST_MULTIPLE_LEAKS +
gmock_test_utils.py 100 Subprocess = gtest_test_utils.Subprocess
  /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...]
  /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...]
subprocess_unittest.cc 17 #include "update_engine/common/subprocess.h"
75 Subprocess subprocess_;
98 void ExpectedDataOnPipe(const Subprocess* subprocess,
108 int fd = subprocess->GetPipeFd(*pid, child_fd);
122 EXPECT_EQ(&subprocess_, &Subprocess::Get());
126 std::unique_ptr<Subprocess> another_subprocess(new Subprocess());
127 EXPECT_EQ(&subprocess_, &Subprocess::Get());
129 EXPECT_EQ(&subprocess_, &Subprocess::Get())
    [all...]
  /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...]
  /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...]
  /external/google-breakpad/src/testing/gtest/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(
  /external/googletest/googletest/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(
  /external/protobuf/gtest/test/
gtest_uninitialized_test.py 58 p = gtest_test_utils.Subprocess(command)
  /external/v8/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(
  /external/vulkan-validation-layers/tests/gtest-1.7.0/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(
  /prebuilts/ndk/r16/sources/third_party/googletest/googletest/test/
gtest_uninitialized_test.py 58 p = gtest_test_utils.Subprocess(command)
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/tests/gtest-1.7.0/test/
gtest_uninitialized_test.py 58 p = gtest_test_utils.Subprocess(command)
  /system/update_engine/
daemon.h 35 #include "update_engine/common/subprocess.h"
61 // The Subprocess singleton class requires a brillo::MessageLoop in the
64 Subprocess subprocess_;

Completed in 455 milliseconds

1 2 3 4 5 6