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:pollfds
(Results
1 - 2
of
2
) sorted by relevance
/developtools/hdc/hdc_rust/src/common/
H
A
D
uds.rs
187
let
pollfds
: &mut [libc::pollfd; MAX_CLIENT_FD_COUNT] =
in wrap_poll()
193
pollfds
[index].fd = node.fd;
in wrap_poll()
194
pollfds
[index].events = node.events;
in wrap_poll()
195
pollfds
[index].revents = node.revents;
in wrap_poll()
198
let ret = poll(
pollfds
.as_mut_ptr(), size as libc::nfds_t, timeout);
in wrap_poll()
207
fds[i].revents =
pollfds
[i].revents;
in wrap_poll()
208
fds[i].events =
pollfds
[i].events;
in wrap_poll()
/developtools/hdc/src/daemon/
H
A
D
jdwp.cpp
646
std::vector<struct pollfd>
pollfds
;
in FdEventPollThread()
local
651
pollfds
.clear();
in FdEventPollThread()
657
pollfds
.push_back(pollFd);
in FdEventPollThread()
662
pollfds
.push_back(pollFd);
in FdEventPollThread()
663
size =
pollfds
.size();
in FdEventPollThread()
666
poll(&
pollfds
[0], size, -1);
in FdEventPollThread()
667
for (const auto &pollfdsing :
pollfds
) {
in FdEventPollThread()
Completed in 2 milliseconds