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:pending_queue
(Results
1 - 6
of
6
) sorted by relevance
/third_party/node/deps/uv/src/unix/
H
A
D
core.c
352
!QUEUE_EMPTY(&loop->
pending_queue
) ||
in uv__loop_alive()
361
QUEUE_EMPTY(&loop->
pending_queue
) &&
in uv__backend_timeout()
396
QUEUE_EMPTY(&loop->
pending_queue
) && QUEUE_EMPTY(&loop->idle_handles);
in uv_run()
410
for (r = 0; r < 8 && !QUEUE_EMPTY(&loop->
pending_queue
); r++)
in uv_run()
803
QUEUE_MOVE(&loop->
pending_queue
, &pq);
in uv__run_pending()
809
w = QUEUE_DATA(q, uv__io_t,
pending_queue
);
in uv__run_pending()
864
QUEUE_INIT(&w->
pending_queue
);
in uv__io_init()
939
QUEUE_REMOVE(&w->
pending_queue
);
in uv__io_close()
948
if (QUEUE_EMPTY(&w->
pending_queue
))
in uv__io_feed()
949
QUEUE_INSERT_TAIL(&loop->
pending_queue
,
in uv__io_feed()
[all...]
H
A
D
loop.c
62
QUEUE_INIT(&loop->
pending_queue
);
in uv_loop_init()
195
assert(QUEUE_EMPTY(&loop->
pending_queue
));
in uv__loop_close()
/third_party/libuv/src/unix/
H
A
D
core.c
385
!uv__queue_empty(&loop->
pending_queue
) ||
in uv__loop_alive()
394
uv__queue_empty(&loop->
pending_queue
) &&
in uv__backend_timeout()
419
!uv__queue_empty(&loop->
pending_queue
) ||
in uv_loop_alive_taskpool()
449
uv__queue_empty(&loop->
pending_queue
) &&
in uv_run()
466
for (r = 0; r < 8 && !uv__queue_empty(&loop->
pending_queue
); r++)
in uv_run()
859
uv__queue_move(&loop->
pending_queue
, &pq);
in uv__run_pending()
865
w = uv__queue_data(q, uv__io_t,
pending_queue
);
in uv__run_pending()
920
uv__queue_init(&w->
pending_queue
);
in uv__io_init()
990
uv__queue_remove(&w->
pending_queue
);
in uv__io_close()
999
if (uv__queue_empty(&w->
pending_queue
))
in uv__io_feed()
[all...]
H
A
D
loop.c
74
uv__queue_init(&loop->
pending_queue
);
in uv_loop_init()
212
assert(uv__queue_empty(&loop->
pending_queue
));
in uv__loop_close()
/third_party/libuv/include/uv/
H
A
D
unix.h
95
struct uv__queue
pending_queue
;
member
224
struct uv__queue
pending_queue
; \
/third_party/node/deps/uv/include/uv/
H
A
D
unix.h
96
void*
pending_queue
[2];
member
224
void*
pending_queue
[2]; \
Completed in 5 milliseconds