Searched refs:retcode (Results 1 - 7 of 7) sorted by relevance

/u-boot/include/
H A Dgzip.h55 * indicate success (retcode=0) or failure
61 void gzwrite_progress_finish(int retcode, ulong totalwritten, ulong totalsize,
/u-boot/scripts/kconfig/tests/
H A Dconftest.py82 self.retcode = ps.returncode
89 if self.retcode == 0 and out_file:
102 print("[retcode]\n{}\n".format(self.retcode))
114 return self.retcode
/u-boot/drivers/mtd/
H A Dcfi_flash.c611 int retcode; local
613 retcode = flash_status_check(info, sector, tout, prompt);
618 if (retcode == ERR_OK &&
620 retcode = ERR_INVAL;
629 retcode = ERR_NOT_ERASED;
636 retcode = ERR_PROTECTED;
647 return retcode;
878 int retcode; local
901 retcode = ERR_INVAL;
932 retcode
1482 int retcode = 0; local
[all...]
/u-boot/test/py/
H A Du_boot_utils.py185 def run_and_log_expect_exception(u_boot_console, cmd, retcode, msg):
194 retcode: Expected non-zero return code from the command.
201 assert retcode == runner.exit_status
204 raise Exception("Expected an exception with retcode %d message '%s',"
205 "but it was not raised" % (retcode, msg))
/u-boot/drivers/mtd/nand/raw/
H A Dpxa3xx_nand.c247 int retcode; member in struct:pxa3xx_nand_info
683 info->retcode = ERR_UNCORERR;
685 info->retcode = ERR_CORERR;
799 info->retcode = ERR_NONE;
1240 if (info->retcode == ERR_CORERR && info->use_ecc) {
1243 } else if (info->retcode == ERR_UNCORERR && info->ecc_bch) {
1260 info->retcode = ERR_CORERR;
1262 info->retcode = ERR_NONE;
1265 } else if (info->retcode == ERR_UNCORERR && !info->ecc_bch) {
1268 info->retcode
[all...]
/u-boot/common/
H A Dcli_hush.c2695 int retcode; local
2703 retcode = parse_stream(&result, &inner, input, subst_end);
2704 if (retcode != 0) return retcode; /* syntax error or EOF */
2715 retcode = parse_stream(dest, ctx, &pipe_str, '\0');
2718 if (retcode == 1) {
2729 retcode=pclose(p);
2731 debug_printf("pclosed, retcode=%d\n",retcode);
2733 return retcode;
[all...]
/u-boot/tools/binman/
H A Dftest.py557 retcode = self._DoTestFile(fname, map=map, update_dtb=update_dtb,
561 self.assertEqual(0, retcode)
857 retcode = self._DoTestFile('006_dual_image.dts')
858 self.assertEqual(0, retcode)
887 retcode = self._DoTestFile('008_pack.dts')
888 self.assertEqual(0, retcode)
1084 retcode = self._DoTestFile('017_pack_image_size.dts')
1085 self.assertEqual(0, retcode)
1092 retcode = self._DoTestFile('018_pack_image_align.dts')
1093 self.assertEqual(0, retcode)
[all...]

Completed in 126 milliseconds