Searched refs:uv_tty_set_mode (Results 1 – 10 of 10) sorted by relevance
/libuv/test/ |
H A D | test-tty.c | 123 r = uv_tty_set_mode(&tty_in, UV_TTY_MODE_RAW); in TEST_IMPL() 127 r = uv_tty_set_mode(&tty_in, UV_TTY_MODE_NORMAL); in TEST_IMPL() 199 r = uv_tty_set_mode(&tty_in, UV_TTY_MODE_RAW); in TEST_IMPL() 331 r = uv_tty_set_mode(&tty_in, UV_TTY_MODE_RAW); in TEST_IMPL()
|
H A D | test-tty-duplicate-key.c | 170 r = uv_tty_set_mode(&tty_in, UV_TTY_MODE_RAW); in TEST_IMPL() 224 r = uv_tty_set_mode(&tty_in, UV_TTY_MODE_RAW); in TEST_IMPL() 290 r = uv_tty_set_mode(&tty_in, UV_TTY_MODE_RAW); in TEST_IMPL()
|
/libuv/docs/code/tty/ |
H A D | main.c | 17 uv_tty_set_mode(&tty, UV_TTY_MODE_NORMAL); in main()
|
/libuv/docs/code/tty-gravity/ |
H A D | main.c | 36 uv_tty_set_mode(&tty, 0); in main()
|
/libuv/docs/src/ |
H A D | tty.rst | 98 .. c:function:: int uv_tty_set_mode(uv_tty_t* handle, uv_tty_mode_t mode) 112 :c:func:`uv_tty_set_mode`.
|
/libuv/src/unix/ |
H A D | tty.c | 281 int uv_tty_set_mode(uv_tty_t* tty, uv_tty_mode_t mode) { in uv_tty_set_mode() function
|
/libuv/include/ |
H A D | uv.h | 822 UV_EXTERN int uv_tty_set_mode(uv_tty_t*, uv_tty_mode_t mode); 831 inline int uv_tty_set_mode(uv_tty_t* handle, int mode) { in uv_tty_set_mode() function 832 return uv_tty_set_mode(handle, static_cast<uv_tty_mode_t>(mode)); in uv_tty_set_mode()
|
/libuv/docs/src/guide/ |
H A D | utilities.rst | 389 It is then best to use ``uv_tty_set_mode`` to set the mode to *normal*
|
/libuv/src/win/ |
H A D | tty.c | 345 int uv_tty_set_mode(uv_tty_t* tty, uv_tty_mode_t mode) { in uv_tty_set_mode() function
|
/libuv/ |
H A D | ChangeLog | 3711 * win,tty: fix uv_tty_set_mode race conditions (Bartosz Sosnowski) 5595 * unix: clean up uv_tty_set_mode() a little (Ben Noordhuis)
|
Completed in 29 milliseconds