HomeSort by relevance Sort by last modified time
    Searched refs:tstc (Results 1 - 25 of 42) sorted by null

1 2

  /external/u-boot/examples/standalone/
hello_world.c 30 while (!tstc())
sched.c 118 if (tstc () && getc () == 0x3) {
150 if (tstc () && getc () == 0x3) {
smc911x_eeprom.c 28 return (tstc() && getc() == 0x03);
277 while (!tstc())
  /external/u-boot/cmd/
terminal.c 36 if (stdio_devices[0]->tstc()) {
60 if (dev->tstc()) {
bootmenu.c 92 if (!tstc()) {
136 while (!tstc()) {
  /external/u-boot/include/
keyboard.h 44 * tstc() - check if a key is available
50 int (*tstc)(struct udevice *dev); member in struct:keyboard_ops
stdio.h 9 int tstc(void);
_exports.h 12 EXPORT_FUNC(tstc, int, tstc, void)
exports.h 15 int tstc(void);
serial.h 14 int (*tstc)(void); member in struct:serial_device
stdio_dev.h 42 int (*tstc)(struct stdio_dev *dev); member in struct:stdio_dev
  /external/u-boot/drivers/input/
keyboard-uclass.c 41 else if (ops->tstc)
42 return ops->tstc(dev);
71 sdev->tstc = keyboard_tstc;
  /external/u-boot/common/
bootretry.c 46 while (!tstc()) { /* while no incoming data */
autoboot.c 83 if (tstc()) {
148 if (tstc()) {
225 if (tstc()) { /* we got a key press */
236 if (tstc()) { /* we got a key press */
console.c 133 gd->jt->tstc = tstc;
180 * This depends on tstc() always being called before getc().
203 if (dev->tstc != NULL) {
204 ret = dev->tstc(dev);
265 return stdio_devices[file]->tstc(stdio_devices[file]);
320 * Upper layer may have already called tstc() so
411 int tstc(void) function
608 if (tstc()) {
631 while (tstc())
    [all...]
stdio.c 94 dev.tstc = stdio_serial_tstc;
105 dev.tstc = nulldev_input;
cli_readline.c 266 while (!tstc()) { /* while no incoming data */
569 while (!tstc()) {
  /external/u-boot/test/dm/
usb.c 126 ut_asserteq(0, tstc());
136 ut_asserteq(1, tstc());
138 ut_asserteq(1, tstc());
140 ut_asserteq(0, tstc());
  /external/u-boot/drivers/serial/
serial.c 143 if (dev->tstc)
144 dev->tstc += gd->reloc_off;
219 return dev->tstc();
245 dev.tstc = serial_stub_tstc;
392 return get_current()->tstc();
mcfuart.c 141 .tstc = mcf_serial_tstc,
serial_ns16550.c 116 .tstc = eserial##port##_tstc, \
  /external/u-boot/arch/mips/mach-au1x00/
au1x00_serial.c 119 .tstc = au1x00_serial_tstc,
  /external/u-boot/lib/efi_loader/
efi_console.c 195 while (tstc())
202 while (!tstc())
444 if (!tstc()) {
566 if (tstc()) {
  /external/u-boot/common/spl/
spl_ymodem.c 32 if (tstc())
  /external/u-boot/board/kosagi/novena/
novena.c 83 .tstc = novena_gpio_button_tstc,

Completed in 3286 milliseconds

1 2