Searched refs:colour (Results 1 - 18 of 18) sorted by relevance

/u-boot/drivers/demo/
H A Ddemo-pdata.c10 .colour = "red",
14 .colour = "green",
18 .colour = "yellow",
H A Ddemo-shape.c46 const char *colour = pdata->colour; local
64 putc(first ? *colour++ : ch);
67 if (!*colour)
68 colour = pdata->colour;
H A Ddemo-simple.c18 printf("Hello from %08x: %s %d\n", (uint)map_to_sysmem(dev), pdata->colour,
H A Ddemo-uclass.c67 pdata->colour = dev_read_string(dev, "colour");
68 if (!pdata->sides || !pdata->colour) {
/u-boot/arch/sandbox/include/asm/
H A Dserial.h16 int colour; /* Text colour to use for output, -1 for none */ member in struct:sandbox_serial_plat
/u-boot/tools/u_boot_pylib/
H A Dterminal.py35 colour: Text colour to use
37 def __init__(self, text, colour, newline=True, bright=True):
40 self.colour = colour
46 self.colour == other.colour and
50 return ("newline=%s, colour=%s, bright=%d, text='%s'" %
51 (self.newline, self.colour, self.bright, self.text))
133 def tprint(text='', newline=True, colour
[all...]
/u-boot/include/
H A Ddm-demo.h12 * @colour: Color of the demo
17 const char *colour; member in struct:dm_demo_pdata
H A Dvideo.h94 * @colour_fg: Foreground colour (pixel value)
95 * @colour_bg: Background colour (pixel value)
218 * video_clear() - Clear a device's frame buffer to background colour.
226 * video_fill() - Fill a device's frame buffer to a colour.
229 * @colour: Colour to use, in the frame buffer's format
232 int video_fill(struct udevice *dev, u32 colour);
244 * @colour: Value to write
248 int yend, u32 colour);
/u-boot/drivers/serial/
H A Dsandbox.c38 * output_ansi_colour() - Output an ANSI colour code
40 * @colour: Colour to output (0-7)
42 static void output_ansi_colour(int colour) argument
46 ansi_code[5] = '0' + colour;
75 if (plat->colour != -1)
86 /* With of-platdata we don't real the colour correctly, so disable it */
88 plat->colour != -1) {
90 output_ansi_colour(plat->colour);
235 const char *colour; local
240 plat->colour
[all...]
/u-boot/drivers/video/
H A Dvideo-uclass.c68 /** struct vid_rgb - Describes a video colour */
150 int yend, u32 colour)
167 *dst++ = colour;
176 *dst++ = colour;
185 *dst++ = colour;
215 int video_fill(struct udevice *dev, u32 colour) argument
227 *ppix++ = colour;
236 *ppix++ = colour;
240 memset(priv->fb, colour, priv->fb_size);
149 video_fill_part(struct udevice *dev, int xstart, int ystart, int xend, int yend, u32 colour) argument
/u-boot/tools/patman/
H A D__main__.py89 colour=terminal.Color.RED)
H A Dstatus.py342 newline=False, colour=col.GREEN, bright=is_new)
343 terminal.tprint(who, colour=col.WHITE, bright=is_new)
459 colour=col.BLUE)
469 terminal.tprint('Review: %s' % review.meta, colour=col.RED)
474 colour=col.MAGENTA if quoted else None)
H A Dpatman89 colour=terminal.Color.RED)
/u-boot/boot/
H A Dexpo.c193 u32 colour; local
197 colour = video_index_to_colour(vid_priv, back);
198 ret = video_fill(dev, colour);
/u-boot/board/bluewater/gurnard/
H A Dgurnard.c121 u16 colour; local
132 colour = bmp_logo_palette[bmp_logo_bitmap[
136 base_addr[posy * width + posx] = colour;
/u-boot/tools/buildman/
H A Dbuilder.py1050 tprint(msg, colour=color)
1078 tprint(msg, colour=color, newline=False)
1187 tprint(msg, colour=color, newline=False)
1335 tprint(' ' + line, newline=True, colour=col)
1337 def _output_err_lines(err_lines, colour):
1346 colour: Colour to use for output
1354 out = self.col.build(colour, line.char + '(')
1357 out += self.col.build(colour, ') %s' % line.errline)
1359 out = self.col.build(colour, line.char + line.errline)
1423 _output_err_lines(better_err, colour
[all...]
H A Dtest.py240 def add_line_prefix(prefix, brds, error_str, colour):
248 colour: Expected colour for the line. Note that the board list,
258 expect = self._col.build(colour, prefix + '(')
261 expect += self._col.build(colour, ') %s' % line)
263 expect = self._col.build(colour, prefix + line)
/u-boot/tools/
H A Dfdtgrep.c52 int colour; /* Display output in ANSI colour */ member in struct:display_info
92 * print_ansi_colour() - Print out the ANSI sequence for a colour
95 * @col: Colour to output (COL_...), or COL_NONE to reset colour
340 if (disp->colour)
368 /* Reset colour back to normal before end of line */
369 if (disp->colour)
973 {"colour", no_argument, NULL, 'A'},
1005 "Show all nodes/tags, colour those that match",
1247 /* Show matched lines in colour i
[all...]

Completed in 118 milliseconds