Searched refs:exit_code (Results 1 – 6 of 6) sorted by relevance
40 self.exit_code = 098 return False, self.exit_code, self.exit_info106 self.exit_code = os.WEXITSTATUS(status)107 self.exit_info = 'status %d' % self.exit_code110 self.exit_code = -signum113 return False, self.exit_code, self.exit_info
308 exit_code = 42311 exit_code = subprocess.call(cmd, stdout = out)312 if exit_code != 0:314 "Error #%d when calling: %s" % (exit_code, " ".join(cmd)))315 return bool(exit_code == 0)329 exit_code = subprocess.call(cmd)330 if exit_code != 0:331 kernellog.warn(app, "Error #%d when calling: %s" % (exit_code, " ".join(cmd)))332 return bool(exit_code == 0)
8 def usage(exit_code): argument16 sys.exit(exit_code)
10 def usage(exit_code): argument13 sys.exit(exit_code)
109 void os_exit(int exit_code) __attribute__((noreturn));
128 void os_exit(int exit_code) in os_exit() argument130 exit(exit_code); in os_exit()
Completed in 40 milliseconds