/external/linux-tools-perf/util/ |
D | run-command.h | 15 struct child_process { struct 49 int start_command(struct child_process *); argument 50 int finish_command(struct child_process *); 51 int run_command(struct child_process *);
|
D | run-command.c | 18 int start_command(struct child_process *cmd) in start_command() 185 int finish_command(struct child_process *cmd) in finish_command() 190 int run_command(struct child_process *cmd) in run_command() 198 static void prepare_run_command_v_opt(struct child_process *cmd, in prepare_run_command_v_opt() 211 struct child_process cmd; in run_command_v_opt()
|
D | pager.c | 28 static struct child_process pager_process;
|
/external/chromium/chrome/browser/hang_monitor/ |
D | hung_window_detector.cc | 136 CHandle child_process(OpenProcess(PROCESS_TERMINATE, in CheckChildWindow() local 140 if (NULL == child_process.m_h) { in CheckChildWindow() 150 TerminateProcess(child_process, ResultCodes::HUNG); in CheckChildWindow() 151 WaitForSingleObject(child_process, kTerminateTimeout); in CheckChildWindow() 152 child_process.Close(); in CheckChildWindow()
|
/external/chromium_org/chrome/browser/hang_monitor/ |
D | hung_window_detector.cc | 130 CHandle child_process(OpenProcess(PROCESS_ALL_ACCESS, in CheckChildWindow() local 134 if (NULL == child_process.m_h) { in CheckChildWindow() 147 CrashDumpAndTerminateHungChildProcess(child_process); in CheckChildWindow() 148 child_process.Close(); in CheckChildWindow()
|
/external/chromium_org/base/process/ |
D | process_util_unittest.cc | 815 base::ProcessHandle child_process = in TEST_F() local 817 ASSERT_TRUE(child_process); in TEST_F() 818 base::EnsureProcessTerminated(child_process); in TEST_F() 819 base::WaitForSingleProcess(child_process, base::TimeDelta::FromSeconds(5)); in TEST_F() 822 EXPECT_TRUE(IsProcessDead(child_process)); in TEST_F() 823 base::CloseProcessHandle(child_process); in TEST_F() 834 base::ProcessHandle child_process = in TEST_F() local 836 ASSERT_TRUE(child_process); in TEST_F() 839 base::EnsureProcessTerminated(child_process); in TEST_F() 842 EXPECT_TRUE(IsProcessDead(child_process)); in TEST_F() [all …]
|
/external/chromium_org/sandbox/win/wow_helper/ |
D | service64_resolver.cc | 112 bool WriteProtectedChildMemory(HANDLE child_process, in WriteProtectedChildMemory() argument 118 if (!::VirtualProtectEx(child_process, address, length, in WriteProtectedChildMemory() 123 bool ok = ::WriteProcessMemory(child_process, address, buffer, length, in WriteProtectedChildMemory() 127 if (!::VirtualProtectEx(child_process, address, length, in WriteProtectedChildMemory()
|
/external/chromium_org/sandbox/win/src/ |
D | win_utils.cc | 280 bool WriteProtectedChildMemory(HANDLE child_process, void* address, in WriteProtectedChildMemory() argument 284 if (!::VirtualProtectEx(child_process, address, length, in WriteProtectedChildMemory() 289 bool ok = ::WriteProcessMemory(child_process, address, buffer, length, in WriteProtectedChildMemory() 293 if (!::VirtualProtectEx(child_process, address, length, in WriteProtectedChildMemory()
|
D | win_utils.h | 105 bool WriteProtectedChildMemory(HANDLE child_process, void* address,
|
D | interception.h | 71 InterceptionManager(TargetProcess* child_process, bool relaxed);
|
D | interception.cc | 65 InterceptionManager::InterceptionManager(TargetProcess* child_process, in InterceptionManager() argument 67 : child_(child_process), names_used_(false), relaxed_(relaxed) { in InterceptionManager()
|
/external/chromium_org/content/common/ |
D | sandbox_mac_unittest_helper.mm | 81 base::ProcessHandle child_process = SpawnChild("mac_sandbox_test_runner", 83 if (child_process == base::kNullProcessHandle) { 88 if (!base::WaitForExitCode(child_process, &code)) {
|
D | child_process_host_impl.h | 46 size_t buffer_size, base::ProcessHandle child_process,
|
D | sandbox_mac_diraccess_unittest.mm | 37 base::ProcessHandle child_process = SpawnChild("mac_sandbox_path_access", 39 if (child_process == base::kNullProcessHandle) { 44 if (!base::WaitForExitCode(child_process, &code)) {
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/ |
D | executive.py | 99 child_process = self.popen(args, 109 output_line = child_process.stdout.readline() 110 if output_line == "" and child_process.poll() != None: 113 return child_process.poll()
|
D | user.py | 151 child_process = subprocess.Popen([pager], stdin=subprocess.PIPE) 152 child_process.communicate(input=message)
|
/external/chromium_org/content/ |
D | content_child.gypi | 37 'child/child_process.cc', 38 'child/child_process.h',
|
D | content_child.target.darwin-x86.mk | 39 content/child/child_process.cc \
|
D | content_child.target.darwin-mips.mk | 39 content/child/child_process.cc \
|
D | content_child.target.linux-x86.mk | 39 content/child/child_process.cc \
|
D | content_child.target.linux-mips.mk | 39 content/child/child_process.cc \
|
D | content_child.target.linux-arm.mk | 39 content/child/child_process.cc \
|
D | content_child.target.darwin-arm.mk | 39 content/child/child_process.cc \
|
/external/linux-tools-perf/ |
D | builtin-help.c | 74 struct child_process ec_process; in check_emacsclient_version()
|
/external/chromium_org/chrome/browser/ui/ |
D | browser_browsertest.cc | 516 content::RenderProcessHost* child_process = contents->GetRenderProcessHost(); in IN_PROC_BROWSER_TEST_F() local 519 content::Source<content::RenderProcessHost>(child_process)); in IN_PROC_BROWSER_TEST_F() 520 base::KillProcess(child_process->GetHandle(), 0, false); in IN_PROC_BROWSER_TEST_F()
|