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:iovecs
(Results
1 - 5
of
5
) sorted by relevance
/third_party/rust/crates/nix/test/sys/
H
A
D
test_uio.rs
29
// Allocate and fill
iovecs
in test_writev()
30
let mut
iovecs
= Vec::new();
in test_writev()
variables
40
iovecs
.push(IoSlice::new(b));
in test_writev()
48
let write_res = writev(writer, &
iovecs
);
in test_writev()
84
let mut
iovecs
= Vec::with_capacity(storage.len());
in test_readv()
variables
86
iovecs
.push(IoSliceMut::new(&mut v[..]));
in test_readv()
91
let read = readv(reader, &mut
iovecs
[..]).expect("read failed");
in test_readv()
94
// Cccumulate data from
iovecs
in test_readv()
96
for iovec in &
iovecs
{
in test_readv()
99
// Check whether
iovecs
contai
in test_readv()
205
let mut
iovecs
: Vec<_> = buffers
test_preadv()
variables
[all...]
/third_party/musl/libc-test/src/functionalext/supplement/network/
H
A
D
__recvmmsg_time64.c
82
struct iovec
iovecs
[VLEN];
in recvsss()
local
102
iovecs
[i].iov_base = bufs[i];
in recvsss()
103
iovecs
[i].iov_len = BUFSIZE;
in recvsss()
104
msgs[i].msg_hdr.msg_iov = &
iovecs
[i];
in recvsss()
H
A
D
recvmmsg.c
80
struct iovec
iovecs
[VLEN];
in recvsss()
local
100
iovecs
[i].iov_base = bufs[i];
in recvsss()
101
iovecs
[i].iov_len = BUFSIZE;
in recvsss()
102
msgs[i].msg_hdr.msg_iov = &
iovecs
[i];
in recvsss()
/third_party/ltp/testcases/kernel/syscalls/io_uring/
H
A
D
io_uring01.c
156
struct iovec *
iovecs
= (void*)cqe->user_data;
in drain_uring_cq()
local
163
check_buffer(
iovecs
[0].iov_base, cqe->res);
in drain_uring_cq()
/third_party/rust/crates/nix/test/
H
A
D
test_fcntl.rs
343
let
iovecs
= vec![IoSlice::new(&buf1[0..3]), IoSlice::new(&buf2[0..3])];
in test_vmsplice()
345
let res = vmsplice(wr, &
iovecs
[..], SpliceFFlags::empty()).unwrap();
in test_vmsplice()
Completed in 2 milliseconds