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:cmsg_space
(Results
1 - 5
of
5
) sorted by relevance
/third_party/rust/crates/libc/libc-test/test/
H
A
D
cmsg.rs
17
pub fn
cmsg_space
(length: c_uint) -> usize;
in cmsg_space()
functions
95
assert_eq!(libc::CMSG_SPACE(l) as usize,
cmsg_space
(l));
in test_cmsg_space()
/third_party/rust/crates/libc/libc-test/src/
H
A
D
cmsg.c
17
size_t
cmsg_space
(size_t length) {
in cmsg_space()
function
/third_party/rust/crates/nix/test/sys/
H
A
D
test_socket.rs
109
let mut cmsg =
cmsg_space
!(nix::sys::socket::Timestamps);
in test_timestamping()
804
let mut cmsgspace =
cmsg_space
!([RawFd; 1]);
in test_scm_rights()
1215
let mut space =
cmsg_space
!([RawFd; 2]);
in test_scm_rights_single_cmsg_multiple_fds()
1288
let mut cmsgspace =
cmsg_space
!([RawFd; 1]);
in test_sendmsg_empty_cmsgs()
1355
let mut cmsgspace =
cmsg_space
!(UnixCredentials);
in test_scm_credentials()
1396
let space =
cmsg_space
!(libc::ucred, RawFd);
in test_scm_credentials_and_rights()
1727
let mut space =
cmsg_space
!(libc::in_pktinfo);
in test_recv_ipv4pktinfo()
1823
let mut space =
cmsg_space
!(libc::sockaddr_dl, libc::in_addr);
in test_recvif()
1920
let mut space =
cmsg_space
!(libc::sockaddr_in);
in test_recvif_ipv4()
2005
let mut space =
cmsg_space
!(lib
in test_recvif_ipv6()
[all...]
/third_party/node/deps/uv/src/unix/
H
A
D
stream.c
1082
char
cmsg_space
[CMSG_SPACE(UV__CMSG_FD_SIZE)];
in uv__read()
local
1128
msg.msg_controllen = sizeof(
cmsg_space
);
in uv__read()
1129
msg.msg_control =
cmsg_space
;
in uv__read()
/third_party/rust/crates/nix/src/sys/socket/
H
A
D
mod.rs
78
// Needed by the
cmsg_space
macro
572
/// let _ =
cmsg_space
!(TimeVal);
575
/// let _ =
cmsg_space
!([RawFd; 2]);
578
/// let _ =
cmsg_space
!(RawFd, TimeVal);
584
macro_rules!
cmsg_space
{
macros
712
/// let mut cmsgspace =
cmsg_space
!(TimeVal);
1607
/// `cmsg_buffer` should be created with [`
cmsg_space
!`] if needed
1871
let cmsg =
cmsg_space
!(crate::sys::socket::Timestamps);
in test_recvmm2()
2042
/// [`
cmsg_space
!`](../../macro.
cmsg_space
[all...]
Completed in 8 milliseconds