Home
last modified time | relevance | path

Searched refs:due_time (Results 1 – 3 of 3) sorted by relevance

/vim-8.2.3635/src/
H A Dui.c440 int due_time; in ui_wait_for_chars_or_timer() local
455 due_time = check_due_timer(); in ui_wait_for_chars_or_timer()
461 if (due_time <= 0 || (wtime > 0 && due_time > remaining)) in ui_wait_for_chars_or_timer()
462 due_time = remaining; in ui_wait_for_chars_or_timer()
464 if ((due_time < 0 || due_time > 10L) && ( in ui_wait_for_chars_or_timer()
482 due_time = 10L; in ui_wait_for_chars_or_timer()
488 if (wait_func(due_time, interrupted, ignore_input)) in ui_wait_for_chars_or_timer()
499 remaining -= due_time; in ui_wait_for_chars_or_timer()
H A Dos_win32.c1627 long due_time; in WaitForChar() local
1631 due_time = check_due_timer(); in WaitForChar()
1637 if (due_time > 0 && dwWaitTime > (DWORD)due_time) in WaitForChar()
1638 dwWaitTime = due_time; in WaitForChar()
H A Dex_docmd.c7535 long due_time = check_due_timer(); in do_sleep() local
7537 if (due_time > 0 && due_time < wait_now) in do_sleep()
7538 wait_now = due_time; in do_sleep()