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:iovmax
(Results
1 - 7
of
7
) sorted by relevance
/third_party/node/deps/uv/src/unix/
H
A
D
core.c
236
int
iovmax
;
in uv__getiovmax()
238
iovmax
= uv__load_relaxed(&iovmax_cached);
in uv__getiovmax()
239
if (
iovmax
!= -1)
in uv__getiovmax()
240
return
iovmax
;
in uv__getiovmax()
246
iovmax
= sysconf(_SC_IOV_MAX);
in uv__getiovmax()
247
if (
iovmax
== -1)
in uv__getiovmax()
248
iovmax
= 1;
in uv__getiovmax()
250
uv__store_relaxed(&iovmax_cached,
iovmax
);
in uv__getiovmax()
252
return
iovmax
;
in uv__getiovmax()
H
A
D
fs.c
464
unsigned int
iovmax
;
in uv__fs_read()
local
467
iovmax
= uv__getiovmax();
in uv__fs_read()
468
if (req->nbufs >
iovmax
)
in uv__fs_read()
469
req->nbufs =
iovmax
;
in uv__fs_read()
1652
unsigned int
iovmax
;
in uv__fs_write_all()
local
1658
iovmax
= uv__getiovmax();
in uv__fs_write_all()
1665
if (req->nbufs >
iovmax
)
in uv__fs_write_all()
1666
req->nbufs =
iovmax
;
in uv__fs_write_all()
H
A
D
stream.c
791
int
iovmax
;
in uv__try_write()
local
802
iovmax
= uv__getiovmax();
in uv__try_write()
805
if (iovcnt >
iovmax
)
in uv__try_write()
806
iovcnt =
iovmax
;
in uv__try_write()
/third_party/libuv/src/unix/
H
A
D
core.c
269
int
iovmax
;
in uv__getiovmax()
271
iovmax
= atomic_load_explicit(&iovmax_cached, memory_order_relaxed);
in uv__getiovmax()
272
if (
iovmax
!= -1)
in uv__getiovmax()
273
return
iovmax
;
in uv__getiovmax()
279
iovmax
= sysconf(_SC_IOV_MAX);
in uv__getiovmax()
280
if (
iovmax
== -1)
in uv__getiovmax()
281
iovmax
= 1;
in uv__getiovmax()
283
atomic_store_explicit(&iovmax_cached,
iovmax
, memory_order_relaxed);
in uv__getiovmax()
285
return
iovmax
;
in uv__getiovmax()
H
A
D
fs.c
432
unsigned int
iovmax
;
in uv__fs_read()
local
443
iovmax
= uv__getiovmax();
in uv__fs_read()
444
if (nbufs >
iovmax
)
in uv__fs_read()
445
nbufs =
iovmax
;
in uv__fs_read()
1522
unsigned int
iovmax
;
in uv__fs_write_all()
local
1528
iovmax
= uv__getiovmax();
in uv__fs_write_all()
1535
if (req->nbufs >
iovmax
)
in uv__fs_write_all()
1536
req->nbufs =
iovmax
;
in uv__fs_write_all()
H
A
D
stream.c
758
int
iovmax
;
in uv__try_write()
local
769
iovmax
= uv__getiovmax();
in uv__try_write()
772
if (iovcnt >
iovmax
)
in uv__try_write()
773
iovcnt =
iovmax
;
in uv__try_write()
/third_party/libuv/test/
H
A
D
test-fs.c
143
static int
iovmax
= -1;
in uv_test_getiovmax()
144
if (
iovmax
== -1) {
in uv_test_getiovmax()
145
iovmax
= sysconf(_SC_IOV_MAX);
in uv_test_getiovmax()
150
if (
iovmax
== -1)
iovmax
= 1;
in uv_test_getiovmax()
152
return
iovmax
;
in uv_test_getiovmax()
3406
size_t
iovmax
;
in fs_write_alotof_bufs()
local
3421
iovmax
= uv_test_getiovmax();
in fs_write_alotof_bufs()
3467
if (iovcount >
iovmax
)
in fs_write_alotof_bufs()
3468
iovcount =
iovmax
;
in fs_write_alotof_bufs()
3514
size_t
iovmax
;
fs_write_alotof_bufs_with_offset()
local
[all...]
Completed in 17 milliseconds