/third_party/libuv/test/ |
D | test-tty.c | 97 r = uv_tty_init(uv_default_loop(), &tty_in, ttyin_fd, 1); /* Readable. */ in TEST_IMPL() 102 r = uv_tty_init(uv_default_loop(), &tty_out, ttyout_fd, 0); /* Writable. */ in TEST_IMPL() 191 r = uv_tty_init(uv_default_loop(), &tty_in, ttyin_fd, 1); /* Readable. */ in TEST_IMPL() 249 r = uv_tty_init(uv_default_loop(), &tty_out, ttyout_fd, 0); /* Writable. */ in TEST_IMPL() 295 r = uv_tty_init(uv_default_loop(), &tty_out, ttyout_fd, 0); /* Writable. */ in TEST_IMPL() 333 r = uv_tty_init(uv_default_loop(), &tty_in, ttyin_fd, 1); /* Readable. */ in TEST_IMPL() 361 ASSERT(UV_EINVAL == uv_tty_init(&loop, &tty, fd, 1)); in TEST_IMPL() 364 ASSERT(UV_EINVAL == uv_tty_init(&loop, &tty, fd, 1)); in TEST_IMPL() 371 ASSERT(UV_EINVAL == uv_tty_init(&loop, &tty, fd, 1)); in TEST_IMPL() 378 ASSERT(UV_EINVAL == uv_tty_init(&loop, &tty, fd, 1)); in TEST_IMPL() [all …]
|
D | test-osx-select.c | 64 r = uv_tty_init(uv_default_loop(), &tty, fd, 1); in TEST_IMPL() 117 r = uv_tty_init(uv_default_loop(), &tty, fd, 1); in TEST_IMPL()
|
D | test-tty-duplicate-key.c | 158 r = uv_tty_init(uv_default_loop(), &tty_in, ttyin_fd, 1); /* Readable. */ in TEST_IMPL() 212 r = uv_tty_init(uv_default_loop(), &tty_in, ttyin_fd, 1); /* Readable. */ in TEST_IMPL() 278 r = uv_tty_init(uv_default_loop(), &tty_in, ttyin_fd, 1); /* Readable. */ in TEST_IMPL()
|
D | test-handle-fileno.c | 108 r = uv_tty_init(loop, &tty, tty_fd, 0); in TEST_IMPL()
|
D | test-tty-escape-sequence-processing.c | 368 r = uv_tty_init(uv_default_loop(), tty_out, ttyout_fd, 0); /* Writable. */ in initialize_tty()
|
/third_party/libuv/docs/code/tty/ |
D | main.c | 11 uv_tty_init(loop, &tty, STDOUT_FILENO, 0); in main()
|
/third_party/libuv/docs/code/tty-gravity/ |
D | main.c | 35 uv_tty_init(loop, &tty, STDOUT_FILENO, 0); in main()
|
/third_party/node/src/ |
D | tty_wrap.cc | 141 *init_err = uv_tty_init(env->event_loop(), &handle_, fd, readable); in TTYWrap()
|
/third_party/libuv/src/unix/ |
D | tty.c | 123 int uv_tty_init(uv_loop_t* loop, uv_tty_t* tty, int fd, int unused) { in uv_tty_init() function
|
/third_party/libuv/docs/src/ |
D | tty.rst | 67 .. c:function:: int uv_tty_init(uv_loop_t* loop, uv_tty_t* handle, uv_file fd, int unused)
|
/third_party/libuv/docs/src/guide/ |
D | utilities.rst | 384 int uv_tty_init(uv_loop_t*, uv_tty_t*, uv_file fd, int unused)
|
/third_party/libuv/include/uv_ndk/ |
D | uv.h | 750 UV_EXTERN int uv_tty_init(uv_loop_t*, uv_tty_t*, uv_file fd, int readable);
|
/third_party/libuv/include/ |
D | uv.h | 763 UV_EXTERN int uv_tty_init(uv_loop_t*, uv_tty_t*, uv_file fd, int readable);
|
/third_party/libuv/src/win/ |
D | tty.c | 190 int uv_tty_init(uv_loop_t* loop, uv_tty_t* tty, uv_file fd, int unused) { in uv_tty_init() function
|
/third_party/libuv/ |
D | ChangeLog | 3309 * tty: cleanup handle if uv_tty_init fails (Saúl Ibarra Corretgé) 3434 * unix: reject non-tty fds in uv_tty_init() (Ben Noordhuis) 3597 * doc: clarify the behavior of uv_tty_init (Saúl Ibarra Corretgé) 5323 * windows: remove double initialization in uv_tty_init (Shannen Saez)
|
/third_party/node/doc/changelogs/ |
D | CHANGELOG_V8.md | 4538 …node/commit/4b9d84df51)] - **(SEMVER-MINOR)** **tty_wrap**: throw when uv_tty_init() returns error…
|