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:msgh
(Results
1 - 4
of
4
) sorted by relevance
/third_party/rust/crates/libc/libc-test/src/
H
A
D
cmsg.c
9
struct cmsghdr *cmsg_firsthdr(struct msghdr *
msgh
) {
in cmsg_firsthdr()
argument
10
return CMSG_FIRSTHDR(
msgh
);
in cmsg_firsthdr()
13
struct cmsghdr *cmsg_nxthdr(struct msghdr *
msgh
, struct cmsghdr *cmsg) {
in cmsg_nxthdr()
argument
14
return CMSG_NXTHDR(
msgh
, cmsg);
in cmsg_nxthdr()
/third_party/mesa3d/src/gallium/winsys/virgl/vtest/
H
A
D
virgl_vtest_socket.c
78
struct msghdr
msgh
= { 0 };
in virgl_vtest_receive_fd()
local
85
msgh
.msg_name = NULL;
in virgl_vtest_receive_fd()
86
msgh
.msg_namelen = 0;
in virgl_vtest_receive_fd()
87
msgh
.msg_iov = &iovec;
in virgl_vtest_receive_fd()
88
msgh
.msg_iovlen = 1;
in virgl_vtest_receive_fd()
89
msgh
.msg_control = buf;
in virgl_vtest_receive_fd()
90
msgh
.msg_controllen = sizeof(buf);
in virgl_vtest_receive_fd()
91
msgh
.msg_flags = 0;
in virgl_vtest_receive_fd()
93
int size = recvmsg(socket_fd, &
msgh
, 0);
in virgl_vtest_receive_fd()
99
cmsgh = CMSG_FIRSTHDR(&
msgh
);
in virgl_vtest_receive_fd()
[all...]
/third_party/selinux/libselinux/src/
H
A
D
setrans_client.c
88
struct msghdr
msgh
;
in send_request()
local
116
memset(&
msgh
, 0, sizeof(
msgh
));
in send_request()
117
msgh
.msg_iov = iov;
in send_request()
118
msgh
.msg_iovlen = sizeof(iov) / sizeof(iov[0]);
in send_request()
124
while (((count = sendmsg(fd, &
msgh
, MSG_NOSIGNAL)) < 0)
in send_request()
/third_party/rust/crates/libc/libc-test/test/
H
A
D
cmsg.rs
13
pub fn cmsg_firsthdr(
msgh
: *const msghdr) -> *mut cmsghdr;
in cmsg_firsthdr()
Completed in 3 milliseconds