Home
last modified time | relevance | path

Searched refs:child_process (Results 1 – 7 of 7) 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/webkit/Tools/Scripts/webkitpy/common/system/
Dexecutive.py119 child_process = subprocess.Popen(args,
128 output_line = child_process.stdout.readline()
129 if output_line == "" and child_process.poll() != None:
132 return child_process.poll()
Duser.py124 child_process = subprocess.Popen([pager], stdin=subprocess.PIPE)
125 child_process.communicate(input=message)
/external/linux-tools-perf/
Dbuiltin-help.c74 struct child_process ec_process; in check_emacsclient_version()