Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:uv_is_readable
(Results
1 - 19
of
19
) sorted by relevance
/third_party/libuv/test/
H
A
D
test-tty.c
99
ASSERT(
uv_is_readable
((uv_stream_t*) &tty_in));
in TEST_IMPL()
104
ASSERT(!
uv_is_readable
((uv_stream_t*) &tty_out));
in TEST_IMPL()
189
ASSERT(
uv_is_readable
((uv_stream_t*) &tty_in));
in TEST_IMPL()
247
ASSERT(!
uv_is_readable
((uv_stream_t*) &tty_out));
in TEST_IMPL()
382
ASSERT(
uv_is_readable
((uv_stream_t*) &tty));
in TEST_IMPL()
385
ASSERT(!
uv_is_readable
((uv_stream_t*) &tty));
in TEST_IMPL()
393
ASSERT(
uv_is_readable
((uv_stream_t*) &tty_ro));
in TEST_IMPL()
396
ASSERT(!
uv_is_readable
((uv_stream_t*) &tty_ro));
in TEST_IMPL()
404
ASSERT(!
uv_is_readable
((uv_stream_t*) &tty_wo));
in TEST_IMPL()
407
ASSERT(!
uv_is_readable
((uv_stream_
in TEST_IMPL()
[all...]
H
A
D
test-readable-on-eof.c
57
ASSERT_EQ(1,
uv_is_readable
(handle));
in read_cb()
62
ASSERT_OK(
uv_is_readable
(handle));
in read_cb()
H
A
D
test-handle-fileno.c
110
ASSERT(
uv_is_readable
((uv_stream_t*) &tty));
in TEST_IMPL()
117
ASSERT(!
uv_is_readable
((uv_stream_t*) &tty));
in TEST_IMPL()
H
A
D
test-tty-duplicate-key.c
160
ASSERT(
uv_is_readable
((uv_stream_t*) &tty_in));
in TEST_IMPL()
214
ASSERT(
uv_is_readable
((uv_stream_t*) &tty_in));
in TEST_IMPL()
280
ASSERT(
uv_is_readable
((uv_stream_t*) &tty_in));
in TEST_IMPL()
H
A
D
test-not-readable-nor-writable-on-read-error.c
58
ASSERT_OK(
uv_is_readable
(handle));
in read_cb()
H
A
D
test-ipc.c
692
ASSERT_EQ(1,
uv_is_readable
((uv_stream_t*) &channel));
in ipc_helper()
743
ASSERT_EQ(1,
uv_is_readable
((uv_stream_t*) &channel));
in ipc_helper_tcp_connection()
797
ASSERT_EQ(1,
uv_is_readable
((uv_stream_t*) &channel));
in ipc_helper_bind_twice()
838
ASSERT_EQ(1,
uv_is_readable
((uv_stream_t*) &channel));
in ipc_helper_send_zero()
H
A
D
test-ipc-send-recv.c
358
ASSERT_EQ(1,
uv_is_readable
((uv_stream_t*)&ctx2.channel));
in send_recv_start()
H
A
D
test-tcp-bind-error.c
279
ASSERT_OK(
uv_is_readable
((uv_stream_t*) &server));
in TEST_IMPL()
H
A
D
test-spawn.c
1914
ASSERT(
uv_is_readable
((uv_stream_t*) &pipe_stdin_child));
in TEST_IMPL()
1917
ASSERT(
uv_is_readable
((uv_stream_t*) &pipe_stdout_parent));
in TEST_IMPL()
1920
ASSERT_EQ(
uv_is_readable
((uv_stream_t*) &pipe_stdout_child), bidir);
in TEST_IMPL()
1921
ASSERT_EQ(
uv_is_readable
((uv_stream_t*) &pipe_stdin_parent), bidir);
in TEST_IMPL()
H
A
D
test-ping-pong.c
202
ASSERT_EQ(1,
uv_is_readable
(req->handle));
in pinger_on_connect()
/third_party/node/src/
H
A
D
connection_wrap.cc
98
readable =
uv_is_readable
(req->handle) != 0;
in AfterConnect()
H
A
D
node_report_utils.cc
256
static_cast<bool>(
uv_is_readable
(&handle->stream)));
in WalkHandle()
/third_party/libuv/src/win/
H
A
D
stream.c
232
int
uv_is_readable
(const uv_stream_t* handle) {
in uv_is_readable()
function
/third_party/node/deps/uv/src/win/
H
A
D
stream.c
233
int
uv_is_readable
(const uv_stream_t* handle) {
in uv_is_readable()
function
/third_party/libuv/src/unix/
H
A
D
stream.c
1475
int
uv_is_readable
(const uv_stream_t* stream) {
in uv_is_readable()
function
/third_party/node/deps/uv/src/unix/
H
A
D
stream.c
1542
int
uv_is_readable
(const uv_stream_t* stream) {
in uv_is_readable()
function
/third_party/libuv/include/
H
A
D
uv.h
592
UV_EXTERN int
uv_is_readable
(const uv_stream_t* handle);
/third_party/libuv/include/uv_ndk/
H
A
D
uv.h
536
UV_EXTERN int
uv_is_readable
(const uv_stream_t* handle);
/third_party/node/deps/uv/include/
H
A
D
uv.h
548
UV_EXTERN int
uv_is_readable
(const uv_stream_t* handle);
Completed in 21 milliseconds