Lines Matching refs:executable
64 executable = cmd[0]
68 executable = find_executable(executable) or executable
69 log.info(' '.join([executable] + cmd[1:]))
73 rc = os.spawnv(os.P_WAIT, executable, cmd)
77 cmd = executable
83 cmd = executable
88 executable = cmd[0]
91 executable = find_executable(executable) or executable
92 log.info(' '.join([executable] + cmd[1:]))
96 rc = os.spawnv(os.P_WAIT, executable, cmd)
100 cmd = executable
106 cmd = executable
120 executable = cmd[0]
148 exec_fn(executable, cmd)
150 exec_fn(executable, cmd, env)
153 cmd = executable
159 cmd = executable
173 cmd = executable
178 cmd = executable
189 cmd = executable
199 cmd = executable
204 def find_executable(executable, path=None): argument
214 base, ext = os.path.splitext(executable)
217 executable = executable + '.exe'
219 if not os.path.isfile(executable):
221 f = os.path.join(p, executable)
227 return executable