Home
last modified time | relevance | path

Searched refs:child_process (Results 1 – 25 of 25) sorted by relevance

/external/linux-tools-perf/util/
Drun-command.h15 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 *);
Drun-command.c18 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()
Dpager.c28 static struct child_process pager_process;
/external/chromium/chrome/browser/hang_monitor/
Dhung_window_detector.cc136 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/
Dhung_window_detector.cc130 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/
Dprocess_util_unittest.cc815 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/
Dservice64_resolver.cc112 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/
Dwin_utils.cc280 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()
Dwin_utils.h105 bool WriteProtectedChildMemory(HANDLE child_process, void* address,
Dinterception.h71 InterceptionManager(TargetProcess* child_process, bool relaxed);
Dinterception.cc65 InterceptionManager::InterceptionManager(TargetProcess* child_process, in InterceptionManager() argument
67 : child_(child_process), names_used_(false), relaxed_(relaxed) { in InterceptionManager()
/external/chromium_org/content/common/
Dsandbox_mac_unittest_helper.mm81 base::ProcessHandle child_process = SpawnChild("mac_sandbox_test_runner",
83 if (child_process == base::kNullProcessHandle) {
88 if (!base::WaitForExitCode(child_process, &code)) {
Dchild_process_host_impl.h46 size_t buffer_size, base::ProcessHandle child_process,
Dsandbox_mac_diraccess_unittest.mm37 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/
Dexecutive.py99 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()
Duser.py151 child_process = subprocess.Popen([pager], stdin=subprocess.PIPE)
152 child_process.communicate(input=message)
/external/chromium_org/content/
Dcontent_child.gypi37 'child/child_process.cc',
38 'child/child_process.h',
Dcontent_child.target.darwin-x86.mk39 content/child/child_process.cc \
Dcontent_child.target.darwin-mips.mk39 content/child/child_process.cc \
Dcontent_child.target.linux-x86.mk39 content/child/child_process.cc \
Dcontent_child.target.linux-mips.mk39 content/child/child_process.cc \
Dcontent_child.target.linux-arm.mk39 content/child/child_process.cc \
Dcontent_child.target.darwin-arm.mk39 content/child/child_process.cc \
/external/linux-tools-perf/
Dbuiltin-help.c74 struct child_process ec_process; in check_emacsclient_version()
/external/chromium_org/chrome/browser/ui/
Dbrowser_browsertest.cc516 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()