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

1 2

  /external/linux-tools-perf/perf-3.12.0/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 26 static struct child_process pager_process;
  /external/chromium_org/mojo/shell/
shell_test_main.cc 10 #include "mojo/shell/child_process.h"
20 scoped_ptr<mojo::shell::ChildProcess> child_process = local
22 CHECK(child_process);
23 child_process->Main();
  /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/gpu/client/
gpu_memory_buffer_impl_shm.h 19 // |internalformat| for use by |child_process|.
23 base::ProcessHandle child_process,
gpu_memory_buffer_impl_android.cc 35 base::ProcessHandle child_process,
40 size, internalformat, child_process, callback);
gpu_memory_buffer_impl_linux.cc 34 base::ProcessHandle child_process,
39 size, internalformat, child_process, callback);
gpu_memory_buffer_impl_mac.cc 35 base::ProcessHandle child_process,
40 size, internalformat, child_process, callback);
gpu_memory_buffer_impl_win.cc 34 base::ProcessHandle child_process,
39 size, internalformat, child_process, callback);
gpu_memory_buffer_impl.h 30 // by |child_process|. The |handle| returned can be used by the
31 // |child_process| to create an instance of this class.
35 base::ProcessHandle child_process,
gpu_memory_buffer_impl_shm.cc 22 base::ProcessHandle child_process,
33 shared_memory.GiveToProcess(child_process, &handle.handle);
  /external/chromium_org/mojo/shell/desktop/
mojo_main.cc 10 #include "mojo/shell/child_process.h"
23 if (scoped_ptr<mojo::shell::ChildProcess> child_process =
26 child_process->Main();
  /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 281 bool WriteProtectedChildMemory(HANDLE child_process, void* address,
285 if (!::VirtualProtectEx(child_process, address, length,
290 bool ok = ::WriteProcessMemory(child_process, address, buffer, length,
294 if (!::VirtualProtectEx(child_process, address, length,
interception.h 71 InterceptionManager(TargetProcess* child_process, bool relaxed);
interception.cc 64 InterceptionManager::InterceptionManager(TargetProcess* child_process,
66 : 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 850 base::ProcessHandle child_process = SpawnChild("process_util_test_never_die");
851 ASSERT_TRUE(child_process);
852 base::EnsureProcessTerminated(child_process);
853 base::WaitForSingleProcess(child_process, base::TimeDelta::FromSeconds(5));
856 EXPECT_TRUE(IsProcessDead(child_process));
857 base::CloseProcessHandle(child_process);
868 base::ProcessHandle child_process =
870 ASSERT_TRUE(child_process);
873 base::EnsureProcessTerminated(child_process);
876 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/chromium_org/content/browser/
site_per_process_browsertest.cc 344 RenderProcessHost* child_process = child->current_frame_host()->GetProcess(); local
347 child_process,
349 base::KillProcess(child_process->GetHandle(), 0, false);
  /external/linux-tools-perf/perf-3.12.0/tools/perf/
builtin-help.c 60 struct child_process ec_process;
  /external/chromium_org/chrome/browser/ui/
browser_browsertest.cc 565 content::RenderProcessHost* child_process = contents->GetRenderProcessHost(); local
567 child_process,
569 base::KillProcess(child_process->GetHandle(), 0, false);
592 content::RenderProcessHost* child_process = contents->GetRenderProcessHost(); local
594 child_process,
596 base::KillProcess(child_process->GetHandle(), 0, false);
    [all...]

Completed in 766 milliseconds

1 2