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:POLLERR
(Results
1 - 25
of
124
) sorted by relevance
1
2
3
4
5
/third_party/curl/lib/
H
A
D
select.c
236
if(pfd[num].revents & (POLLRDNORM|POLLIN|
POLLERR
|POLLHUP))
in Curl_socket_check()
243
if(pfd[num].revents & (POLLRDNORM|POLLIN|
POLLERR
|POLLHUP))
in Curl_socket_check()
252
if(pfd[num].revents & (
POLLERR
|POLLHUP|POLLPRI|POLLNVAL))
in Curl_socket_check()
330
if(ufds[i].revents &
POLLERR
)
in Curl_poll()
H
A
D
select.h
46
#define
POLLERR
0x08
macro
/third_party/alsa-utils/alsamixer/
H
A
D
mainloop.c
109
if (pollfds[0].revents & (
POLLERR
| POLLHUP | POLLNVAL))
in mainloop()
117
if (revents & (
POLLERR
| POLLNVAL))
in mainloop()
/third_party/NuttX/fs/vfs/
H
A
D
fs_select.c
47
#define POLL_IN_SET (POLLIN | POLLRDNORM | POLLRDBAND | POLLHUP |
POLLERR
)
48
#define POLL_OUT_SET (POLLOUT | POLLWRBAND | POLLWRNORM |
POLLERR
)
H
A
D
fs_poll.c
295
wait->key = p_fds->events |
POLLERR
| POLLHUP;
in query_fds()
304
p_fds->revents = (p_fds->events |
POLLERR
| POLLHUP) & (pollevent_t)ret;
in query_fds()
/third_party/ltp/testcases/kernel/syscalls/eventfd/
H
A
D
eventfd06.c
32
* -
POLLERR
event occurs in poll() for the eventfd
130
TST_EXP_EQ_LI(pollfd.revents &
POLLERR
,
POLLERR
);
in test_poll()
/third_party/libwebsockets/include/libwebsockets/
H
A
D
lws-freertos.h
55
#define
POLLERR
0x0008
macro
/third_party/musl/porting/uniproton/kernel/include/
H
A
D
poll.h
15
#define
POLLERR
0x008
macro
/third_party/musl/porting/liteos_m_iccarm/kernel/include/
H
A
D
poll.h
15
#define
POLLERR
0x008
macro
/third_party/musl/porting/linux/user/include/
H
A
D
poll.h
15
#define
POLLERR
0x008
macro
/third_party/musl/porting/liteos_m/kernel/include/
H
A
D
poll.h
15
#define
POLLERR
0x008
macro
/third_party/musl/libc-test/src/api/
H
A
D
poll.c
21
C(
POLLERR
)
in f()
/third_party/pulseaudio/src/pulsecore/
H
A
D
poll.h
41
#define
POLLERR
0x008 /* Error condition. */
macro
/third_party/ffmpeg/libavformat/
H
A
D
os_support.c
261
if (fds[i].events &
POLLERR
)
in ff_poll()
292
fds[i].revents |=
POLLERR
;
in ff_poll()
/third_party/musl/porting/liteos_a/kernel/include/
H
A
D
poll.h
15
#define
POLLERR
0x008
macro
/third_party/musl/porting/liteos_a_newlib/kernel/include/
H
A
D
poll.h
15
#define
POLLERR
0x008
macro
/third_party/musl/include/
H
A
D
poll.h
15
#define
POLLERR
0x008
macro
/third_party/rust/crates/libc/src/unix/newlib/arm/
H
A
D
mod.rs
42
pub const
POLLERR
: ::c_short = 0x8;
consts
/third_party/rust/crates/libc/src/unix/newlib/aarch64/
H
A
D
mod.rs
40
pub const
POLLERR
: ::c_short = 0x8;
consts
/third_party/rust/crates/rustix/src/backend/linux_raw/io/
H
A
D
poll_fd.rs
23
/// `
POLLERR
`
24
const ERR = linux_raw_sys::general::
POLLERR
as u16;
/third_party/alsa-lib/src/hwdep/
H
A
D
hwdep.c
273
pfds->events = POLLOUT|
POLLERR
|POLLNVAL;
in snd_hwdep_poll_descriptors()
276
pfds->events = POLLIN|
POLLERR
|POLLNVAL;
in snd_hwdep_poll_descriptors()
279
pfds->events = POLLOUT|POLLIN|
POLLERR
|POLLNVAL;
in snd_hwdep_poll_descriptors()
/third_party/alsa-lib/src/timer/
H
A
D
timer.c
365
pfds->events = POLLOUT|
POLLERR
|POLLNVAL;
in snd_timer_poll_descriptors()
368
pfds->events = POLLIN|
POLLERR
|POLLNVAL;
in snd_timer_poll_descriptors()
371
pfds->events = POLLOUT|POLLIN|
POLLERR
|POLLNVAL;
in snd_timer_poll_descriptors()
/third_party/NuttX/drivers/pipes/
H
A
D
pipe_common.c
99
if (eventset &
POLLERR
)
in pipecommon_pollnotify()
339
pipecommon_pollnotify(dev,
POLLERR
);
in pipecommon_close()
752
/* Change POLLOUT to
POLLERR
, if no readers and policy 0. */
in pipecommon_poll()
758
eventset |=
POLLERR
;
in pipecommon_poll()
/third_party/libdrm/
H
A
D
libsync.h
72
if (fds.revents & (
POLLERR
| POLLNVAL)) {
in sync_wait()
/third_party/rust/crates/rustix/src/backend/libc/io/
H
A
D
poll_fd.rs
35
/// `
POLLERR
`
36
const ERR = c::
POLLERR
;
Completed in 16 milliseconds
1
2
3
4
5