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:POLLPRI
(Results
1 - 25
of
66
) sorted by relevance
1
2
3
/third_party/pulseaudio/src/pulsecore/
H
A
D
poll-posix.c
97
if (f->events &
POLLPRI
)
in pa_poll()
99
if (f->fd > maxfd && (f->events & (POLLIN|POLLOUT|
POLLPRI
)))
in pa_poll()
135
if (f->events &
POLLPRI
)
in pa_poll()
137
if (f->events & (POLLIN|POLLOUT|
POLLPRI
)) {
in pa_poll()
148
if (f->events &
POLLPRI
)
in pa_poll()
150
if (f->fd > maxfd && (f->events & (POLLIN|POLLOUT|
POLLPRI
)))
in pa_poll()
165
if (f->fd > maxfd && (f->events & (POLLIN|POLLOUT|
POLLPRI
))) {
in pa_poll()
225
f->revents |=
POLLPRI
;
in pa_poll()
H
A
D
poll-win32.c
213
return ret == WAIT_OBJECT_0 ? *p_sought & ~(
POLLPRI
| POLLRDBAND) : 0;
in windows_compute_revents()
246
return *p_sought & ~(
POLLPRI
| POLLRDBAND);
in windows_compute_revents()
288
happened |= (
POLLPRI
| POLLRDBAND) & sought;
in windows_compute_revents_socket()
344
happened |= (
POLLPRI
| POLLRDBAND) & sought;
in compute_revents()
430
if (pfd[i].events & (
POLLPRI
| POLLRDBAND))
in pa_poll()
433
&& (pfd[i].events & (POLLIN | POLLOUT |
POLLPRI
in pa_poll()
496
|
POLLPRI
| POLLRDBAND)))
in pa_poll()
516
if (sought & (
POLLPRI
| POLLRDBAND))
in pa_poll()
H
A
D
poll.h
35
#define
POLLPRI
0x002 /* There is urgent data to read. */
macro
/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()
224
pfd[num].events = POLLWRNORM|POLLOUT|
POLLPRI
;
in Curl_socket_check()
238
if(pfd[num].revents & (
POLLPRI
|POLLNVAL))
in Curl_socket_check()
245
if(pfd[num].revents & (
POLLPRI
|POLLNVAL))
in Curl_socket_check()
252
if(pfd[num].revents & (POLLERR|POLLHUP|
POLLPRI
|POLLNVAL))
in Curl_socket_check()
346
if(ufds[i].events & (POLLIN|POLLOUT|
POLLPRI
|
in Curl_poll()
354
if(ufds[i].events & (POLLRDBAND|
POLLPRI
))
in Curl_poll()
393
if(ufds[i].events &
POLLPRI
)
in Curl_poll()
394
ufds[i].revents |=
POLLPRI
;
in Curl_poll()
[all...]
H
A
D
select.h
44
#define
POLLPRI
0x02
macro
68
#define POLLRDBAND
POLLPRI
/third_party/libwebsockets/include/libwebsockets/
H
A
D
lws-freertos.h
53
#define
POLLPRI
0x0002
macro
/third_party/musl/porting/uniproton/kernel/include/
H
A
D
poll.h
13
#define
POLLPRI
0x002
macro
/third_party/musl/porting/liteos_m_iccarm/kernel/include/
H
A
D
poll.h
13
#define
POLLPRI
0x002
macro
/third_party/musl/porting/linux/user/include/
H
A
D
poll.h
13
#define
POLLPRI
0x002
macro
/third_party/musl/porting/liteos_m/kernel/include/
H
A
D
poll.h
13
#define
POLLPRI
0x002
macro
/third_party/musl/libc-test/src/api/
H
A
D
poll.c
17
C(
POLLPRI
)
in f()
/third_party/musl/porting/liteos_a/kernel/include/
H
A
D
poll.h
13
#define
POLLPRI
0x002
macro
/third_party/musl/porting/liteos_a_newlib/kernel/include/
H
A
D
poll.h
13
#define
POLLPRI
0x002
macro
/third_party/musl/include/
H
A
D
poll.h
13
#define
POLLPRI
0x002
macro
/third_party/rust/crates/libc/src/unix/newlib/arm/
H
A
D
mod.rs
40
pub const
POLLPRI
: ::c_short = 0x2;
consts
/third_party/rust/crates/libc/src/unix/newlib/aarch64/
H
A
D
mod.rs
38
pub const
POLLPRI
: ::c_short = 0x2;
consts
/third_party/rust/crates/rustix/src/backend/linux_raw/io/
H
A
D
poll_fd.rs
11
/// `
POLLPRI
`
12
const PRI = linux_raw_sys::general::
POLLPRI
as u16;
/third_party/rust/crates/rustix/src/backend/libc/io/
H
A
D
poll_fd.rs
18
/// `
POLLPRI
`
20
const PRI = c::
POLLPRI
;
/third_party/ltp/testcases/kernel/syscalls/ppoll/
H
A
D
ppoll01.c
211
fds_good[0].events = POLLIN |
POLLPRI
| POLLOUT | POLLRDHUP;
in setup()
216
fds_already_closed[0].events = POLLIN |
POLLPRI
| POLLOUT | POLLRDHUP;
in setup()
/third_party/node/deps/uv/src/unix/
H
A
D
internal.h
130
#ifdef
POLLPRI
131
# define UV__POLLPRI
POLLPRI
/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()
343
if (pfd.revents &
POLLPRI
) {
in v4l2_dequeue_v4l2buf()
/third_party/python/Modules/clinic/
H
A
D
selectmodule.c.h
69
" eventmask=select.POLLIN | select.
POLLPRI
| select.POLLOUT, /)\n"
90
unsigned short eventmask = POLLIN |
POLLPRI
| POLLOUT;
in select_poll_register()
235
" eventmask=select.POLLIN | select.
POLLPRI
| select.POLLOUT, /)\n"
258
unsigned short eventmask = POLLIN |
POLLPRI
| POLLOUT;
in select_devpoll_register()
285
" eventmask=select.POLLIN | select.
POLLPRI
| select.POLLOUT, /)\n"
308
unsigned short eventmask = POLLIN |
POLLPRI
| POLLOUT;
in select_devpoll_modify()
/third_party/alsa-utils/axfer/
H
A
D
waiter-select.c
28
#define POLLEX_SET (
POLLPRI
)
/third_party/NuttX/fs/vfs/
H
A
D
fs_select.c
49
#define POLL_EX_SET (
POLLPRI
)
/third_party/rust/crates/libc/src/unix/newlib/espidf/
H
A
D
mod.rs
70
pub const
POLLPRI
: ::c_short = POLLRDBAND;
consts
Completed in 10 milliseconds
1
2
3