Searched refs:print (Results 1 - 25 of 29) sorted by relevance

12

/u-boot/include/
H A Deeprom_layout.h22 void (*print)(const struct eeprom_layout *eeprom_layout); member in struct:eeprom_layout
H A Deeprom_field.h19 void (*print)(const struct eeprom_field *eeprom_field); member in struct:eeprom_field
H A Dvideo_osd.h98 * print() - Print a string in a given color to specified coordinates
113 int (*print)(struct udevice *dev, uint col, uint row, ulong color, member in struct:video_osd_ops
H A Dpart.h471 * @print: Print partition information
473 * @print.desc: Block device descriptor
475 void (*print)(struct blk_desc *desc); member in struct:part_driver
/u-boot/lib/efi_loader/
H A Dinitrddump.c64 * print() - print string
68 static void print(u16 *string) function
79 print(u"\r\n");
85 * error() - print error string
92 print(string);
97 * printx() - print hexadecimal number
99 * @val: value to print;
100 * @prec: minimum number of digits to print
119 print(bu
[all...]
H A Dsmbiosdump.c44 * print() - print string
48 static void print(u16 *string) function
59 print(u"\r\n");
65 * error() - print error string
72 print(string);
147 print(u"\r\nAborted\r\n");
156 print(u"\b \b");
161 print(u"\r\n");
174 print(outbu
[all...]
H A Ddtbdump.c34 * print() - print string
38 static void print(u16 *string) function
44 * error() - print error string
51 print(string);
126 print(u"\r\nAborted\r\n");
135 print(u"\b \b");
140 print(u"\r\n");
153 print(outbuf);
226 * do_help() - print hel
[all...]
/u-boot/cmd/
H A Dlegacy-mtd-utils.c70 goto print;
79 goto print;
96 print:
H A Dbootcount.c26 U_BOOT_CMD_MKENT(print, 1, 1, do_bootcount_print, "", ""),
50 "print - print current bootcounter\n"
H A Dosd.c74 * @osd: OSD device to print information for
158 printf("Could not print string to osd %s\n", osd_cur->name);
258 U_BOOT_CMD_MKENT(print, 4, 1, do_osd_print, "", ""),
285 "print [pos_x] [pos_y] [color] [text] - write ASCII buffer (given by text data and driver-specific color information) to osd memory\n"
H A Deeprom.c279 if (!strncmp(cmd, "print", 5))
328 layout.print(&layout);
426 "eeprom print [-l <layout_version>] <bus> <devaddr>\n"
430 " The new data must be written in the same human readable format as shown by the print command.\n"
/u-boot/arch/arm/include/asm/arch-rockchip/
H A Duart.h42 void print(char *s);
/u-boot/arch/arm/mach-stm32mp/
H A Dcmd_stm32key.c111 static int read_key_otp(struct udevice *dev, const struct stm32key *key, bool print, bool *locked) argument
125 if (print)
140 if (nb_lock_err && print)
142 else if (!status && print)
146 if (print)
151 if (print)
159 static int read_close_status(struct udevice *dev, bool print, bool *closed) argument
183 if (print)
189 static int fuse_key_value(struct udevice *dev, const struct stm32key *key, u32 addr, bool print) argument
196 if (print)
[all...]
/u-boot/common/eeprom/
H A Deeprom_layout.c47 * eeprom_layout_print() - print the layout and the data which is assigned to it
56 fields[i].print(&fields[i]);
122 layout->print = eeprom_layout_print;
/u-boot/tools/
H A Dmtk_image.c276 static int mtk_image_verify_gfh(struct gfh_header *gfh, uint32_t type, int print) argument
284 if (print)
289 if (print)
295 static int mtk_image_verify_gen_header(const uint8_t *ptr, int print) argument
312 if (print)
357 return mtk_image_verify_gfh(gfh, GFH_FLASH_TYPE_GEN, print);
360 static int mtk_image_verify_nand_header(const uint8_t *ptr, int print) argument
394 if (print) {
407 return mtk_image_verify_gfh(gfh, GFH_FLASH_TYPE_NAND, print);
428 static int mtk_image_verify_mt7621_header(const uint8_t *ptr, int print) argument
[all...]
/u-boot/drivers/video/
H A Dvideo_osd-uclass.c40 return ops->print(dev, col, row, color, text);
H A Dsandbox_osd.c147 .print = sandbox_osd_print,
H A Dihs_video_out.c229 .print = ihs_video_out_print,
/u-boot/disk/
H A Dpart_mac.c240 .print = part_print_mac,
H A Dpart_amiga.c385 .print = part_print_amiga,
H A Dpart_iso.c239 .print = part_print_iso,
H A Dpart.c327 if (drv->print)
328 drv->print(desc);
H A Dpart_dos.c525 .print = part_print_ptr(part_print_dos),
/u-boot/test/
H A Dcmd_ut.c102 U_BOOT_CMD_MKENT(print, CONFIG_SYS_MAXARGS, 1, do_ut_print, "", ""),
/u-boot/test/cmd/
H A Dfdt.c370 * This is the only 'fdt print' / 'fdt list' incantation which
389 static int fdt_test_print_list(struct unit_test_state *uts, bool print) argument
391 const char *opc = print ? "print" : "list";
410 if (print) {
417 if (print) {
1014 ut_assertok(run_commandf("fdt print / compatible"));
1017 ut_asserteq(1, run_commandf("fdt print / compatible"));
1023 ut_assertok(run_commandf("fdt print /test-node@1234 clock-names"));
1026 ut_asserteq(1, run_commandf("fdt print /tes
[all...]

Completed in 238 milliseconds

12