HomeSort by relevance Sort by last modified time
    Searched refs:child_process (Results 1 - 22 of 22) sorted by null

  /external/linux-tools-perf/util/
run-command.h 15 struct child_process { struct
49 int start_command(struct child_process *);
50 int finish_command(struct child_process *);
51 int run_command(struct child_process *);
run-command.c 18 int start_command(struct child_process *cmd)
185 int finish_command(struct child_process *cmd)
190 int run_command(struct child_process *cmd)
198 static void prepare_run_command_v_opt(struct child_process *cmd,
211 struct child_process cmd;
pager.c 28 static struct child_process pager_process;
  /external/chromium/chrome/browser/hang_monitor/
hung_window_detector.cc 136 CHandle child_process(OpenProcess(PROCESS_TERMINATE,
140 if (NULL == child_process.m_h) {
150 TerminateProcess(child_process, ResultCodes::HUNG);
151 WaitForSingleObject(child_process, kTerminateTimeout);
152 child_process.Close();
  /external/chromium_org/chrome/browser/hang_monitor/
hung_window_detector.cc 130 CHandle child_process(OpenProcess(PROCESS_ALL_ACCESS,
134 if (NULL == child_process.m_h) {
147 CrashDumpAndTerminateHungChildProcess(child_process);
148 child_process.Close();
  /external/chromium_org/content/common/
child_process_host_impl.h 46 size_t buffer_size, base::ProcessHandle child_process,
  /external/chromium_org/sandbox/win/src/
win_utils.h 103 // |child_process|, at the specified |address|, preserving the original write
105 bool WriteProtectedChildMemory(HANDLE child_process, void* address,
win_utils.cc 280 bool WriteProtectedChildMemory(HANDLE child_process, void* address,
284 if (!::VirtualProtectEx(child_process, address, length,
289 bool ok = ::WriteProcessMemory(child_process, address, buffer, length,
293 if (!::VirtualProtectEx(child_process, address, length,
interception.h 71 InterceptionManager(TargetProcess* child_process, bool relaxed);
interception.cc 65 InterceptionManager::InterceptionManager(TargetProcess* child_process,
67 : child_(child_process), names_used_(false), relaxed_(relaxed) {
  /external/chromium_org/sandbox/win/wow_helper/
service64_resolver.cc 107 // child_process (in): process to write to.
112 bool WriteProtectedChildMemory(HANDLE child_process,
118 if (!::VirtualProtectEx(child_process, address, length,
123 bool ok = ::WriteProcessMemory(child_process, address, buffer, length,
127 if (!::VirtualProtectEx(child_process, address, length,
  /external/chromium_org/base/process/
process_util_unittest.cc 815 base::ProcessHandle child_process = local
817 ASSERT_TRUE(child_process);
818 base::EnsureProcessTerminated(child_process);
819 base::WaitForSingleProcess(child_process, base::TimeDelta::FromSeconds(5));
822 EXPECT_TRUE(IsProcessDead(child_process));
823 base::CloseProcessHandle(child_process);
834 base::ProcessHandle child_process = local
836 ASSERT_TRUE(child_process);
839 base::EnsureProcessTerminated(child_process);
842 EXPECT_TRUE(IsProcessDead(child_process));
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
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()
user.py 151 child_process = subprocess.Popen([pager], stdin=subprocess.PIPE)
152 child_process.communicate(input=message)
  /external/linux-tools-perf/
builtin-help.c 74 struct child_process ec_process;
  /external/chromium_org/content/
content_child.target.darwin-arm.mk 39 content/child/child_process.cc \
content_child.target.darwin-mips.mk 39 content/child/child_process.cc \
content_child.target.darwin-x86.mk 39 content/child/child_process.cc \
content_child.target.linux-arm.mk 39 content/child/child_process.cc \
content_child.target.linux-mips.mk 39 content/child/child_process.cc \
content_child.target.linux-x86.mk 39 content/child/child_process.cc \
  /external/chromium_org/chrome/browser/ui/
browser_browsertest.cc 516 content::RenderProcessHost* child_process = contents->GetRenderProcessHost(); local
519 content::Source<content::RenderProcessHost>(child_process));
520 base::KillProcess(child_process->GetHandle(), 0, false);
    [all...]

Completed in 281 milliseconds