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:POLLRDNORM
(Results
1 - 25
of
52
) sorted by relevance
1
2
3
/third_party/pulseaudio/src/pulsecore/
H
A
D
poll-win32.c
80
#ifndef
POLLRDNORM
81
# define
POLLRDNORM
0
macro
182
happened |= *p_sought & (POLLIN |
POLLRDNORM
);
in windows_compute_revents()
220
*p_sought &= POLLIN |
POLLRDNORM
;
in windows_compute_revents()
260
happened |= (POLLIN |
POLLRDNORM
) & sought;
in windows_compute_revents_socket()
273
happened |= (POLLIN |
POLLRDNORM
) & sought;
in windows_compute_revents_socket()
325
happened |= (POLLIN |
POLLRDNORM
) & sought;
in compute_revents()
334
happened |= (POLLIN |
POLLRDNORM
) & sought;
in compute_revents()
422
if (pfd[i].events & (POLLIN |
POLLRDNORM
))
in pa_poll()
434
|
POLLRDNORM
| POLLRDBAN
in pa_poll()
[all...]
/third_party/curl/lib/
H
A
D
select.c
212
pfd[num].events =
POLLRDNORM
|POLLIN|POLLRDBAND|POLLPRI;
in Curl_socket_check()
218
pfd[num].events =
POLLRDNORM
|POLLIN|POLLRDBAND|POLLPRI;
in Curl_socket_check()
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()
347
POLLRDNORM
|POLLWRNORM|POLLRDBAND)) {
in Curl_poll()
350
if(ufds[i].events & (
POLLRDNORM
|POLLIN))
in Curl_poll()
379
if(ufds[i].events &
POLLRDNORM
)
in Curl_poll()
380
ufds[i].revents |=
POLLRDNORM
;
in Curl_poll()
H
A
D
select.h
59
#ifndef
POLLRDNORM
60
#define
POLLRDNORM
POLLIN
macro
H
A
D
asyn-ares.c
340
pfd[i].events |=
POLLRDNORM
|POLLIN;
in waitperform()
369
(pfd[i].revents & (
POLLRDNORM
|POLLIN))?
in waitperform()
/third_party/alsa-utils/axfer/
H
A
D
waiter-select.c
18
#ifdef
POLLRDNORM
21
# define POLLIN_SET (
POLLRDNORM
| POLLRDBAND | POLLIN | POLLHUP)
/third_party/NuttX/fs/vfs/
H
A
D
fs_select.c
47
#define POLL_IN_SET (POLLIN |
POLLRDNORM
| POLLRDBAND | POLLHUP | POLLERR)
200
pollset[ndx].events |= (POLLIN |
POLLRDNORM
);
in do_select()
/third_party/musl/porting/uniproton/kernel/include/
H
A
D
poll.h
18
#define
POLLRDNORM
0x040
macro
/third_party/musl/porting/liteos_m_iccarm/kernel/include/
H
A
D
poll.h
18
#define
POLLRDNORM
0x040
macro
/third_party/musl/porting/linux/user/include/
H
A
D
poll.h
18
#define
POLLRDNORM
0x040
macro
/third_party/musl/porting/liteos_m/kernel/include/
H
A
D
poll.h
18
#define
POLLRDNORM
0x040
macro
/third_party/musl/libc-test/src/api/
H
A
D
poll.c
15
C(
POLLRDNORM
)
in f()
/third_party/musl/porting/liteos_a/kernel/include/
H
A
D
poll.h
18
#define
POLLRDNORM
0x040
macro
/third_party/musl/porting/liteos_a_newlib/kernel/include/
H
A
D
poll.h
18
#define
POLLRDNORM
0x040
macro
/third_party/musl/include/
H
A
D
poll.h
18
#define
POLLRDNORM
0x040
macro
/third_party/ffmpeg/libavcodec/
H
A
D
v4l2_context.c
275
.events = POLLIN |
POLLRDNORM
| POLLPRI | POLLOUT | POLLWRNORM, /* default blocking capture */
in v4l2_dequeue_v4l2buf()
314
pfd.events = POLLIN |
POLLRDNORM
| POLLPRI;
in v4l2_dequeue_v4l2buf()
359
if (pfd.revents & (POLLIN |
POLLRDNORM
| POLLOUT | POLLWRNORM)) {
in v4l2_dequeue_v4l2buf()
363
if (pfd.revents & (POLLIN |
POLLRDNORM
))
in v4l2_dequeue_v4l2buf()
/third_party/rust/crates/rustix/src/backend/linux_raw/io/
H
A
D
poll_fd.rs
15
/// `
POLLRDNORM
`
16
const RDNORM = linux_raw_sys::general::
POLLRDNORM
as u16;
/third_party/rust/crates/rustix/src/backend/libc/io/
H
A
D
poll_fd.rs
23
/// `
POLLRDNORM
`
25
const RDNORM = c::
POLLRDNORM
;
/third_party/rust/crates/libc/src/unix/newlib/espidf/
H
A
D
mod.rs
68
pub const
POLLRDNORM
: ::c_short = 1 << 1;
consts
/third_party/rust/crates/nix/src/
H
A
D
poll.rs
101
POLLRDNORM
;
/third_party/ffmpeg/libavformat/
H
A
D
os_support.h
154
#define
POLLRDNORM
POLLIN
macro
/third_party/NuttX/drivers/usbdev/gadget/
H
A
D
usbd_hid.c
214
uint32_t value = fds->key & (POLLIN |
POLLRDNORM
);
in hid_poll()
/third_party/rust/crates/libc/src/unix/newlib/horizon/
H
A
D
mod.rs
145
pub const
POLLRDNORM
: ::c_short = 0x0040;
consts
/third_party/libwebsockets/include/
H
A
D
libwebsockets.h
403
#define LWS_POLLIN (
POLLRDNORM
| POLLRDBAND)
/third_party/FreeBSD/sys/dev/usb/
H
A
D
usb_dev.c
1053
(POLLHUP|POLLIN|
POLLRDNORM
|POLLOUT|POLLWRNORM));
in usb_poll()
1096
if ((events & (POLLIN |
POLLRDNORM
)) &&
in usb_poll()
1128
revents = (unsigned int)revents | (events & (POLLIN |
POLLRDNORM
));
in usb_poll()
/third_party/NuttX/drivers/usbdev/gadget/fconfig/src/
H
A
D
usbd_generic_epfile.c
558
uint32_t revents =
POLLRDNORM
;
in generic_epfile_handle_poll()
Completed in 12 milliseconds
1
2
3