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:cmptr
(Results
1 - 2
of
2
) sorted by relevance
/foundation/communication/netmanager_ext/services/mdnsmanager/src/
H
A
D
mdns_socket_listener.cpp
420
cmsghdr *
cmptr
;
in ReceiveInSock()
local
442
for (
cmptr
= CMSG_FIRSTHDR(&msg);
cmptr
!= nullptr;
cmptr
= CMSG_NXTHDR(&msg,
cmptr
)) {
in ReceiveInSock()
443
if (
cmptr
->cmsg_level == IPPROTO_IP &&
cmptr
->cmsg_type == IP_PKTINFO) {
in ReceiveInSock()
444
ifIndex = reinterpret_cast<in_pktinfo *>(CMSG_DATA(
cmptr
))->ipi_ifindex;
in ReceiveInSock()
446
if (
cmptr
->cmsg_level == IPPROTO_IPV6 &&
cmptr
in ReceiveInSock()
[all...]
/foundation/communication/bluetooth/frameworks/inner/src/
H
A
D
bluetooth_socket.cpp
686
struct cmsghdr *
cmptr
= CMSG_FIRSTHDR(&msg);
in RecvSocketFd()
local
687
CHECK_AND_RETURN_LOG_RET(
cmptr
!= nullptr, BtStatus::BT_FAILURE, "
cmptr
error");
in RecvSocketFd()
688
CHECK_AND_RETURN_LOG_RET(
cmptr
->cmsg_len == CMSG_LEN(sizeof(int)) &&
cmptr
->cmsg_level == SOL_SOCKET
in RecvSocketFd()
689
&&
cmptr
->cmsg_type == SCM_RIGHTS, BtStatus::BT_FAILURE,
in RecvSocketFd()
691
cmptr
->cmsg_len,
cmptr
->cmsg_level,
cmptr
->cmsg_type);
in RecvSocketFd()
692
int clientFd = *(reinterpret_cast<int *>(CMSG_DATA(
cmptr
)));
in RecvSocketFd()
[all...]
Completed in 3 milliseconds