Home
last modified time | relevance | path

Searched refs:exit_code (Results 1 – 6 of 6) sorted by relevance

/u-boot/test/py/
A Du_boot_spawn.py40 self.exit_code = 0
98 return False, self.exit_code, self.exit_info
106 self.exit_code = os.WEXITSTATUS(status)
107 self.exit_info = 'status %d' % self.exit_code
110 self.exit_code = -signum
113 return False, self.exit_code, self.exit_info
/u-boot/doc/sphinx/
A Dkfigure.py308 exit_code = 42
311 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)
/u-boot/board/synopsys/axs10x/
A Dheaderize-axs.py8 def usage(exit_code): argument
16 sys.exit(exit_code)
/u-boot/board/synopsys/hsdk/
A Dheaderize-hsdk.py10 def usage(exit_code): argument
13 sys.exit(exit_code)
/u-boot/include/
A Dos.h109 void os_exit(int exit_code) __attribute__((noreturn));
/u-boot/arch/sandbox/cpu/
A Dos.c128 void os_exit(int exit_code) in os_exit() argument
130 exit(exit_code); in os_exit()

Completed in 40 milliseconds