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_EPIPE
(Results
1 - 16
of
16
) sorted by relevance
/third_party/libuv/src/win/
H
A
D
error.c
159
case ERROR_BAD_PIPE: return
UV_EPIPE
;
in uv_translate_sys_error()
160
case ERROR_NO_DATA: return
UV_EPIPE
;
in uv_translate_sys_error()
161
case ERROR_PIPE_NOT_CONNECTED: return
UV_EPIPE
;
in uv_translate_sys_error()
162
case WSAESHUTDOWN: return
UV_EPIPE
;
in uv_translate_sys_error()
H
A
D
stream.c
123
return
UV_EPIPE
;
in uv_write()
162
return
UV_EPIPE
;
in uv_write2()
177
return
UV_EPIPE
;
in uv_try_write()
/third_party/node/deps/uv/src/win/
H
A
D
error.c
159
case ERROR_BAD_PIPE: return
UV_EPIPE
;
in uv_translate_sys_error()
160
case ERROR_NO_DATA: return
UV_EPIPE
;
in uv_translate_sys_error()
161
case ERROR_PIPE_NOT_CONNECTED: return
UV_EPIPE
;
in uv_translate_sys_error()
162
case WSAESHUTDOWN: return
UV_EPIPE
;
in uv_translate_sys_error()
H
A
D
stream.c
123
return
UV_EPIPE
;
in uv_write()
162
return
UV_EPIPE
;
in uv_write2()
177
return
UV_EPIPE
;
in uv_try_write()
/third_party/libuv/test/
H
A
D
test-error.c
70
ASSERT_EQ(uv_translate_sys_error(ERROR_BAD_PIPE),
UV_EPIPE
);
in TEST_IMPL()
local
73
ASSERT_EQ(uv_translate_sys_error(EPIPE),
UV_EPIPE
);
in TEST_IMPL()
H
A
D
test-tcp-try-write-error.c
51
ASSERT(r ==
UV_EPIPE
|| r == UV_ECONNABORTED || r == UV_ECONNRESET);
in incoming_close_cb()
H
A
D
test-signal-pending-on-close.c
53
ASSERT_EQ(status,
UV_EPIPE
);
in write_cb()
H
A
D
test-tcp-bind-error.c
283
ASSERT_EQ(r,
UV_EPIPE
);
in TEST_IMPL()
/third_party/node/lib/internal/
H
A
D
js_stream_socket.js
210
errCode = uv[`UV_${err.code}`] || uv.
UV_EPIPE
;
/third_party/node/deps/uvwasi/src/
H
A
D
uv_mapping.c
82
case
UV_EPIPE
: return UVWASI_EPIPE;
in uvwasi__translate_uv_error()
/third_party/node/src/
H
A
D
stream_pipe.cc
208
OnStreamRead(
UV_EPIPE
, uv_buf_init(nullptr, 0));
in OnStreamDestroy()
H
A
D
node_http2.cc
2116
return
UV_EPIPE
;
in DoShutdown()
/third_party/node/deps/uv/src/unix/
H
A
D
process.c
925
err =
UV_EPIPE
;
in uv__spawn_and_init_child()
H
A
D
stream.c
1370
return
UV_EPIPE
;
in uv__check_before_write()
/third_party/libuv/src/unix/
H
A
D
process.c
945
err =
UV_EPIPE
;
in uv__spawn_and_init_child()
H
A
D
stream.c
1303
return
UV_EPIPE
;
in uv__check_before_write()
Completed in 17 milliseconds