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:outmsg
(Results
1 - 4
of
4
) sorted by relevance
/third_party/ltp/utils/sctp/lib/
H
A
D
sendmsg.c
36
struct msghdr
outmsg
;
in sctp_sendmsg()
local
42
outmsg
.msg_name = to;
in sctp_sendmsg()
43
outmsg
.msg_namelen = tolen;
in sctp_sendmsg()
44
outmsg
.msg_iov = &iov;
in sctp_sendmsg()
47
outmsg
.msg_iovlen = 1;
in sctp_sendmsg()
49
outmsg
.msg_control = outcmsg;
in sctp_sendmsg()
50
outmsg
.msg_controllen = sizeof(outcmsg);
in sctp_sendmsg()
51
outmsg
.msg_flags = 0;
in sctp_sendmsg()
53
cmsg = CMSG_FIRSTHDR(&
outmsg
);
in sctp_sendmsg()
58
outmsg
in sctp_sendmsg()
77
struct msghdr
outmsg
;
sctp_send()
local
[all...]
/third_party/ffmpeg/libavformat/
H
A
D
sctp.c
119
struct msghdr
outmsg
= { 0 };
in ff_sctp_send()
local
122
outmsg
.msg_name = NULL;
in ff_sctp_send()
123
outmsg
.msg_namelen = 0;
in ff_sctp_send()
124
outmsg
.msg_iov = &iov;
in ff_sctp_send()
127
outmsg
.msg_iovlen = 1;
in ff_sctp_send()
128
outmsg
.msg_controllen = 0;
in ff_sctp_send()
134
outmsg
.msg_control = outcmsg;
in ff_sctp_send()
135
outmsg
.msg_controllen = sizeof(outcmsg);
in ff_sctp_send()
136
outmsg
.msg_flags = 0;
in ff_sctp_send()
138
cmsg = CMSG_FIRSTHDR(&
outmsg
);
in ff_sctp_send()
[all...]
/third_party/python/Lib/distutils/
H
A
D
text_file.py
128
outmsg
= []
131
outmsg
.append(self.filename + ", ")
133
outmsg
.append("lines %d-%d: " % tuple(line))
135
outmsg
.append("line %d: " % line)
136
outmsg
.append(str(msg))
137
return "".join(
outmsg
)
/third_party/node/lib/
H
A
D
_http_outgoing.js
999
function onFinish(
outmsg
) {
1000
if (
outmsg
&&
outmsg
.socket &&
outmsg
.socket._hadError) return;
1001
outmsg
.emit('finish');
Completed in 3 milliseconds