| /openbmc/u-boot/tools/patman/ |
| H A D | terminal.py | 30 def __init__(self, text, newline, colour): argument 33 self.colour = colour 36 return 'newline=%s, colour=%s, text=%s' % (self.newline, self.colour, 39 def Print(text='', newline=True, colour=None): argument 51 print_test_list.append(PrintLine(text, newline, colour)) 53 if colour: 55 text = col.Color(colour, text) 83 if line.colour: 85 print(col.Color(line.colour, line.text), end='')
|
| /openbmc/u-boot/drivers/serial/ |
| H A D | sandbox.c | 41 int colour; /* Text colour to use for output, -1 for none */ member 53 static void output_ansi_colour(int colour) in output_ansi_colour() argument 57 ansi_code[5] = '0' + colour; in output_ansi_colour() 85 if (plat->colour != -1) in sandbox_serial_remove() 96 if (priv->start_of_line && plat->colour != -1) { in sandbox_serial_putc() 98 output_ansi_colour(plat->colour); in sandbox_serial_putc() 220 const char *colour; in sandbox_serial_ofdata_to_platdata() local 223 plat->colour = -1; in sandbox_serial_ofdata_to_platdata() 224 colour = fdt_getprop(gd->fdt_blob, dev_of_offset(dev), in sandbox_serial_ofdata_to_platdata() 226 if (colour) { in sandbox_serial_ofdata_to_platdata() [all …]
|
| /openbmc/u-boot/drivers/demo/ |
| H A D | demo-pdata.c | 11 .colour = "red", 15 .colour = "green", 19 .colour = "yellow",
|
| H A D | demo-shape.c | 45 const char *colour = pdata->colour; in shape_hello() local 63 putc(first ? *colour++ : ch); in shape_hello() 66 if (!*colour) in shape_hello() 67 colour = pdata->colour; in shape_hello()
|
| H A D | demo-uclass.c | 71 pdata->colour = fdt_getprop(gd->fdt_blob, dn, "colour", NULL); in demo_parse_dt() 72 if (!pdata->sides || !pdata->colour) { in demo_parse_dt()
|
| H A D | demo-simple.c | 19 printf("Hello from %08x: %s %d\n", (uint)map_to_sysmem(dev), pdata->colour, in simple_hello()
|
| /openbmc/u-boot/doc/device-tree-bindings/serial/ |
| H A D | sandbox-serial.txt | 10 sandbox,text-colour: If present, this is the colour of the console text.
|
| /openbmc/qemu/tests/qapi-schema/ |
| H A D | features-unknown-key.json | 3 'features': [ { 'name': 'bar', 'colour': 'red' } ] }
|
| H A D | features-unknown-key.err | 2 features-unknown-key.json:1: 'features' member has unknown key 'colour'
|
| /openbmc/u-boot/arch/sandbox/dts/ |
| H A D | sandbox64.dts | 78 colour = "white"; 231 colour = "blue"; 250 colour = "cyan"; 259 sandbox,text-colour = "cyan";
|
| H A D | sandbox.dts | 88 colour = "white"; 266 colour = "blue"; 286 colour = "cyan"; 296 sandbox,text-colour = "cyan";
|
| /openbmc/u-boot/include/ |
| H A D | dm-demo.h | 19 const char *colour; member
|
| /openbmc/u-boot/board/bluewater/gurnard/ |
| H A D | gurnard.c | 118 u16 colour; in lcd_splash() local 129 colour = bmp_logo_palette[bmp_logo_bitmap[ in lcd_splash() 133 base_addr[posy * width + posx] = colour; in lcd_splash()
|
| /openbmc/phosphor-webui/app/common/styles/components/ |
| H A D | form-elements.scss | 165 /* Disabled tick colour */ 237 /* Disabled tick colour */ 257 /* Disabled circle colour */
|
| /openbmc/u-boot/tools/buildman/ |
| H A D | builder.py | 930 Print(msg, colour=color) 958 Print(msg, colour=color, newline=False) 1068 Print(msg, colour=color, newline=False) 1196 Print(' ' + line, newline=True, colour=col) 1252 Print('\n'.join(better_err), colour=self.col.GREEN) 1255 Print('\n'.join(worse_err), colour=self.col.RED) 1258 Print('\n'.join(better_warn), colour=self.col.CYAN) 1261 Print('\n'.join(worse_warn), colour=self.col.MAGENTA) 1425 Print(msg, colour=self.col.BLUE) 1450 Print('(no errors to report)', colour=self.col.GREEN)
|
| H A D | test.py | 233 self.assertEqual(lines[5].colour, col.MAGENTA) 262 self.assertEqual(lines[14].colour, col.GREEN) 266 self.assertEqual(lines[15].colour, col.MAGENTA)
|
| /openbmc/u-boot/drivers/video/ |
| H A D | Kconfig | 547 model. Video drivers typically provide a colour text console and 558 bool "Enable colour frame buffer console" 562 Enables the colour frame buffer driver. This supports colour 564 Several colour devices are supported along with various options to 602 This allows the colour buffer frame buffer driver to support 648 hex "Background colour" 652 Defines the background colour for the console. The value is from 655 the background and foreground to the same colour or you will see 659 hex "Foreground colour" 663 Defines the foreground colour for the console. The value is from [all …]
|
| /openbmc/openbmc/poky/scripts/ |
| H A D | buildhistory-diff | 112 init_colours({"yes": True, "no": False, "auto": sys.stdout.isatty()}[args.colour])
|
| /openbmc/u-boot/doc/device-tree-bindings/video/ |
| H A D | exynos-dp.txt | 43 samsung,color-depth: number of bits per colour component
|
| /openbmc/u-boot/tools/ |
| H A D | fdtgrep.c | 51 int colour; /* Display output in ANSI colour */ member 338 if (disp->colour) in display_fdt_by_regions() 367 if (disp->colour) in display_fdt_by_regions() 1200 disp.colour = disp.all && isatty(0); in main()
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/gd/gd/ |
| H A D | 0001-Fix-deprecared-function-prototypes.patch | 47 /* Search for ABGR values 0..255 (after net is unbiased) and return colour index
|
| /openbmc/qemu/hw/display/ |
| H A D | vmware_vga.c | 618 uint32_t cmd, colour; in vmsvga_fifo_run() local 650 colour = vmsvga_fifo_read(s); in vmsvga_fifo_run() 656 if (vmsvga_fill_rect(s, colour, x, y, width, height) == 0) { in vmsvga_fifo_run()
|
| /openbmc/u-boot/doc/ |
| H A D | README.sifive-fu540 | 201 [ 0.000221] Console: colour dummy device 80x25
|
| /openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/static/css/ |
| H A D | default.css | 118 /* Create a class for wells without background colour */
|
| /openbmc/u-boot/board/freescale/m54455evb/ |
| H A D | README | 353 Console: colour dummy device 80x25
|