| /OK3568_Linux_fs/u-boot/drivers/input/ |
| H A D | keyboard-uclass.c | 42 else if (ops->tstc) in keyboard_tstc() 43 return ops->tstc(dev); in keyboard_tstc() 72 sdev->tstc = keyboard_tstc; in keyboard_pre_probe()
|
| H A D | keyboard.c | 80 kbddev.tstc = kbd_testc; in kbd_init()
|
| /OK3568_Linux_fs/u-boot/common/ |
| H A D | console.c | 139 gd->jt->tstc = tstc; in console_setfile() 209 if (dev->tstc != NULL) { in console_tstc() 210 ret = dev->tstc(dev); in console_tstc() 283 return stdio_devices[file]->tstc(stdio_devices[file]); in console_tstc() 439 int tstc(void) in tstc() function 660 if (tstc()) { in ctrlc() 683 while (tstc()) in confirm_yesno() 845 gd->jt->tstc = serial_tstc; in console_init_r()
|
| H A D | autoboot.c | 83 if (tstc()) { in passwd_abort() 148 if (tstc()) { in passwd_abort() 228 if (tstc()) { /* we got a key press */
|
| H A D | bootretry.c | 47 while (!tstc()) { /* while no incoming data */ in bootretry_tstc_timeout()
|
| H A D | stdio.c | 105 dev.tstc = stdio_serial_tstc; in drv_system_init() 117 dev.tstc = nulldev_input; in drv_system_init()
|
| /OK3568_Linux_fs/u-boot/test/dm/ |
| H A D | usb.c | 282 ut_asserteq(0, tstc()); in dm_test_usb_keyb() 292 ut_asserteq(1, tstc()); in dm_test_usb_keyb() 294 ut_asserteq(1, tstc()); in dm_test_usb_keyb() 296 ut_asserteq(0, tstc()); in dm_test_usb_keyb()
|
| /OK3568_Linux_fs/u-boot/drivers/serial/ |
| H A D | serial.c | 176 if (dev->tstc) in serial_register() 177 dev->tstc += gd->reloc_off; in serial_register() 284 return dev->tstc(); in serial_stub_tstc() 310 dev.tstc = serial_stub_tstc; in serial_stdio_init() 457 return get_current()->tstc(); in serial_tstc()
|
| /OK3568_Linux_fs/u-boot/cmd/ |
| H A D | terminal.c | 37 if (stdio_devices[0]->tstc()) { in do_terminal() 61 if (dev->tstc()) { in do_terminal()
|
| H A D | bootmenu.c | 93 if (!tstc()) { in bootmenu_autoboot_loop() 137 while (!tstc()) { in bootmenu_loop()
|
| /OK3568_Linux_fs/u-boot/lib/efi_loader/ |
| H A D | efi_console.c | 206 while (tstc()) in efi_cout_query_mode() 213 while (!tstc()) in efi_cout_query_mode() 357 if (!tstc()) { in efi_cin_read_key_stroke() 429 if (tstc()) in efi_console_timer_notify()
|
| /OK3568_Linux_fs/u-boot/include/ |
| H A D | _exports.h | 12 EXPORT_FUNC(tstc, int, tstc, void)
|
| H A D | keyboard.h | 51 int (*tstc)(struct udevice *dev); member
|
| H A D | stdio.h | 9 int tstc(void);
|
| H A D | exports.h | 14 int tstc(void);
|
| H A D | stdio_dev.h | 45 int (*tstc)(struct stdio_dev *dev); member
|
| /OK3568_Linux_fs/u-boot/examples/standalone/ |
| H A D | smc911x_eeprom.c | 28 return (tstc() && getc() == 0x03); in smsc_ctrlc() 277 while (!tstc()) in getline()
|
| H A D | hello_world.c | 31 while (!tstc()) in hello_world()
|
| H A D | sched.c | 120 if (tstc () && getc () == 0x3) { in sched() 152 if (tstc () && getc () == 0x3) { in testthread()
|
| /OK3568_Linux_fs/kernel/arch/powerpc/boot/ |
| H A D | mpc52xx-psc.c | 62 scdp->tstc = psc_tstc; in mpc5200_psc_console_init()
|
| H A D | ns16550.c | 80 scdp->tstc = ns16550_tstc; in ns16550_console_init()
|
| /OK3568_Linux_fs/u-boot/doc/ |
| H A D | README.console | 45 tstc (to test for the presence of a char in stdin) 57 ftstc (like tstc but redirected to a file)
|
| H A D | README.iomux | 42 the tstc() routine for every registered device, but exits immediately 76 with calling tstc() and then getc() means that copy&paste will normally not
|
| /OK3568_Linux_fs/u-boot/arch/mips/mach-au1x00/ |
| H A D | au1x00_serial.c | 120 .tstc = au1x00_serial_tstc,
|
| /OK3568_Linux_fs/u-boot/spl/common/ |
| H A D | console.su | |