/third_party/libuv/test/ |
H A D | test-tty.c | 97 r = uv_tty_init(loop, &tty_in, ttyin_fd, 1); /* Readable. */ in TEST_IMPL() 102 r = uv_tty_init(loop, &tty_out, ttyout_fd, 0); /* Writable. */ in TEST_IMPL() 187 r = uv_tty_init(loop, &tty_in, ttyin_fd, 1); /* Readable. */ in TEST_IMPL() 245 r = uv_tty_init(loop, &tty_out, ttyout_fd, 0); /* Writable. */ in TEST_IMPL() 291 r = uv_tty_init(loop, &tty_out, ttyout_fd, 0); /* Writable. */ in TEST_IMPL() 329 r = uv_tty_init(uv_default_loop(), &tty_in, ttyin_fd, 1); /* Readable. */ in TEST_IMPL() 357 ASSERT_EQ(UV_EINVAL, uv_tty_init(&loop, &tty, fd, 1)); in TEST_IMPL() 360 ASSERT_EQ(UV_EINVAL, uv_tty_init(&loop, &tty, fd, 1)); in TEST_IMPL() 367 ASSERT_EQ(UV_EINVAL, uv_tty_init(&loop, &tty, fd, 1)); in TEST_IMPL() 374 ASSERT_EQ(UV_EINVAL, uv_tty_init( in TEST_IMPL() [all...] |
H A 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()
|
H A 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()
|
H A D | test-handle-fileno.c | 108 r = uv_tty_init(loop, &tty, tty_fd, 0); in TEST_IMPL()
|
H A 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/ |
H A D | main.c | 11 uv_tty_init(loop, &tty, STDOUT_FILENO, 0); in main()
|
/third_party/libuv/docs/code/tty-gravity/ |
H A D | main.c | 35 uv_tty_init(loop, &tty, STDOUT_FILENO, 0); in main()
|
/third_party/node/test/parallel/ |
H A D | test-ttywrap-invalid-fd.js | 27 syscall: 'uv_tty_init' 32 const message = `TTY initialization failed: uv_tty_init returned ${suffix}`;
|
/third_party/node/src/ |
H A D | tty_wrap.cc | 137 env->CollectUVExceptionInfo(args[1], err, "uv_tty_init"); in New() 151 *init_err = uv_tty_init(env->event_loop(), &handle_, fd, 0); in TTYWrap()
|
/third_party/libuv/src/unix/ |
H A D | tty.c | 136 int uv_tty_init(uv_loop_t* loop, uv_tty_t* tty, int fd, int unused) { in uv_tty_init() function
|
/third_party/node/deps/uv/src/unix/ |
H A D | tty.c | 136 int uv_tty_init(uv_loop_t* loop, uv_tty_t* tty, int fd, int unused) { in uv_tty_init() function
|
/third_party/libuv/include/ |
H A D | uv.h | 807 UV_EXTERN int uv_tty_init(uv_loop_t*, uv_tty_t*, uv_file fd, int readable);
|
/third_party/libuv/include/uv_ndk/ |
H A D | uv.h | 750 UV_EXTERN int uv_tty_init(uv_loop_t*, uv_tty_t*, uv_file fd, int readable);
|
/third_party/libuv/src/win/ |
H A D | tty.c | 185 int uv_tty_init(uv_loop_t* loop, uv_tty_t* tty, uv_file fd, int unused) { in uv_tty_init() function
|
/third_party/node/deps/uv/include/ |
H A D | uv.h | 763 UV_EXTERN int uv_tty_init(uv_loop_t*, uv_tty_t*, uv_file fd, int readable);
|
/third_party/node/deps/uv/src/win/ |
H A 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
|