Home
last modified time | relevance | path

Searched refs:TTY (Results 1 – 25 of 155) sorted by relevance

1234567

/third_party/node/test/parallel/
Dtest-stream-base-prototype-accessors-enumerability.js14 const TTY = internalBinding('tty_wrap').TTY; constant
17 assert.strictEqual(TTY.prototype.propertyIsEnumerable('bytesRead'), false);
18 assert.strictEqual(TTY.prototype.propertyIsEnumerable('fd'), false);
20 TTY.prototype.propertyIsEnumerable('_externalStream'), false);
Dtest-accessor-properties.js14 const TTY = internalBinding('tty_wrap').TTY; constant
23 const StreamWrapProto = Object.getPrototypeOf(TTY.prototype);
29 TTY.prototype[property]; // eslint-disable-line no-unused-expressions class
Dtest-tty-backwards-api.js9 const TTY = internalBinding('tty_wrap').TTY = function() {}; constant
11 TTY.prototype = { class
/third_party/libuv/docs/src/
Dtty.rst4 :c:type:`uv_tty_t` --- TTY handle
7 TTY handles represent a stream for the console.
17 TTY handle type.
23 TTY mode type:
69 Initialize a new TTY stream with the given file descriptor. Usually the
78 refers to a TTY. This lets libuv put the tty in non-blocking mode without
85 If reopening the TTY fails, libuv falls back to blocking writes.
90 .. versionchanged:: 1.9.0: the path of the TTY is determined by
94 .. versionchanged:: 1.5.0: trying to initialize a TTY stream with a file
103 Set the TTY using the specified terminal mode.
[all …]
Dindex.rst31 * ANSI escape code controlled TTY
/third_party/node/test/pseudo-tty/
Dtest-tty-window-size.js7 const { TTY } = internalBinding('tty_wrap');
8 const getWindowSize = TTY.prototype.getWindowSize;
11 TTY.prototype.getWindowSize = function() { class
12 TTY.prototype.getWindowSize = getWindowSize;
Dtest-tty-wrap.js6 const { TTY } = internalBinding('tty_wrap');
9 const handle = new TTY(1);
Dref_keeps_node_running.js7 const { TTY, isTTY } = internalBinding('tty_wrap');
12 const handle = new TTY(0);
Dtest-async-wrap-getasyncid-tty.js43 const handle = new tty_wrap.TTY(ttyFd, false);
/third_party/node/doc/api/
Dtty.md1 # TTY chapter
17 When Node.js detects that it is being run with a text terminal ("TTY")
21 whether Node.js is being run within a TTY context is to check that the value of
42 Represents the readable side of a TTY. In normal circumstances
51 A `boolean` that is `true` if the TTY is currently configured to operate as a
86 Represents the writable side of a TTY. In normal circumstances,
150 A `number` specifying the number of columns the TTY currently has. This property
214 `writeStream.getWindowSize()` returns the size of the TTY
217 of columns and rows in the corresponding TTY.
281 A `number` specifying the number of rows the TTY currently has. This property
[all …]
Dreadline.md370 a [TTY][] text terminal. See [TTY keybindings][] for a list of key
448 This can be used when collecting input from a TTY stream to retrieve the
456 **If not using a TTY stream for input, use the [`'line'`][] event.**
484 reading input from a TTY stream. The position of cursor determines the
522 The `readline.clearLine()` method clears current line of given [TTY][] stream
540 The `readline.clearScreenDown()` method clears the given [TTY][] stream from
579 treated like a TTY, and have ANSI/VT100 escape codes written to it.
634 ([`process.stdout`][] does this automatically when it is a TTY).
693 given [TTY][] `stream`.
709 If the `stream` is a [TTY][], then it must be in raw mode.
[all …]
/third_party/node/lib/
Dtty.js31 const { TTY, isTTY } = internalBinding('tty_wrap');
54 const tty = new TTY(fd, true, ctx);
92 const tty = new TTY(fd, false, ctx);
/third_party/node/deps/npm/node_modules/read/
DREADME.md29 * `terminal` Treat the output as a TTY, whether it is or not.
33 If silent is true, and the input is a TTY, then read will set raw
/third_party/node/deps/npm/node_modules/mute-stream/
DREADME.md61 True if the pipe destination is a TTY, or if the incoming pipe source is
62 a TTY.
/third_party/flutter/skia/third_party/externals/icu/source/data/coll/
Dhu.txt42 "&TY<<<TTY/TY"
/third_party/skia/third_party/externals/icu/source/data/coll/
Dhu.txt42 "&TY<<<TTY/TY"
/third_party/icu/icu4c/source/data/coll/
Dhu.txt42 "&TY<<<TTY/TY"
/third_party/ltp/testcases/kernel/containers/
DTEST_PLAN.txt24 TTY+CONSOLE+DEVPTS NAMESPACES (NEAR FUTURE)
/third_party/node/deps/npm/node_modules/term-size/
Dreadme.md5 …ple, in a child process or when piped. This module even works when all the TTY file descriptors ar…
/third_party/curl/tests/data/
Dtest142543 # this test needs to be a debug build in order to fake it being a TTY output
Dtest142643 # this test needs to be a debug build in order to fake it being a TTY output
/third_party/node/deps/npm/node_modules/npmlog/
DCHANGELOG.md22 when a progress bar is enabled. In `1.x` if you didn't have a TTY the
/third_party/mksh/
Dcheck.pl1255 open(TTY, "> /dev/tty") || return 0;
1256 print TTY $msg;
1257 close(TTY);
/third_party/libuv/docs/src/guide/
Dutilities.rst368 TTY chapter
390 which enables most TTY formatting, flow-control and other settings. Other_ modes
399 ``grep``. To check if the file descriptor is indeed a TTY, call
411 The final TTY helper is ``uv_tty_get_winsize()`` which is used to get the
/third_party/node/test/
DREADME.md34 | `pseudo-tty` | Yes | Tests that require stdin/stdout/stderr to be a TTY. |

1234567