Searched refs:child_process (Results 1 – 7 of 7) sorted by relevance
15 struct child_process { struct49 int start_command(struct child_process *); argument50 int finish_command(struct child_process *);51 int run_command(struct child_process *);
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()
28 static struct child_process pager_process;
136 CHandle child_process(OpenProcess(PROCESS_TERMINATE, in CheckChildWindow() local140 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()
119 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()
124 child_process = subprocess.Popen([pager], stdin=subprocess.PIPE)125 child_process.communicate(input=message)
74 struct child_process ec_process; in check_emacsclient_version()