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:rtMsg
(Results
1 - 3
of
3
) sorted by relevance
/foundation/communication/dhcp/services/dhcp_client/src/
H
A
D
dhcp_ipv6_event.cpp
72
struct rtmsg*
rtMsg
= reinterpret_cast<struct rtmsg*>(NLMSG_DATA(hdrMsg));
in parseNDRouteMessage()
local
77
if ((
rtMsg
->rtm_protocol != RTPROT_KERNEL &&
rtMsg
->rtm_protocol != RTPROT_RA) ||
in parseNDRouteMessage()
78
(
rtMsg
->rtm_scope != RT_SCOPE_UNIVERSE) || (
rtMsg
->rtm_type != RTN_UNICAST) ||
in parseNDRouteMessage()
79
(
rtMsg
->rtm_src_len != 0) || (
rtMsg
->rtm_flags & RTM_F_CLONED)) {
in parseNDRouteMessage()
85
int32_t rtmFamily =
rtMsg
->rtm_family;
in parseNDRouteMessage()
89
for (rtaInfo = RTM_RTA(
rtMsg
); RTA_OK(rtaInfo, (int)size); rtaInfo = RTA_NEXT(rtaInfo, size)) {
in parseNDRouteMessage()
/foundation/communication/dhcp/test/unittest/services/dhcp_client/
H
A
D
dhcp_ipv6_client_test.cpp
295
rtmsg
rtMsg
;
in HWTEST_F()
local
297
rtMsg
.rtm_protocol = RTPROT_BOOT;
in HWTEST_F()
298
rtMsg
.rtm_scope = RT_SCOPE_SITE;
in HWTEST_F()
299
rtMsg
.rtm_type = RTN_MULTICAST;
in HWTEST_F()
300
rtMsg
.rtm_src_len = 1;
in HWTEST_F()
301
rtMsg
.rtm_flags = RTM_F_PREFIX;
in HWTEST_F()
310
rtmsg
rtMsg
;
in HWTEST_F()
local
312
rtMsg
.rtm_protocol = RTPROT_KERNEL;
in HWTEST_F()
313
rtMsg
.rtm_scope = RT_SCOPE_UNIVERSE;
in HWTEST_F()
314
rtMsg
in HWTEST_F()
[all...]
/foundation/communication/netmanager_base/services/netmanagernative/src/netsys/wrapper/
H
A
D
wrapper_decoder.cpp
444
rtmsg *
rtMsg
= CheckRtParam(hdrMsg, type);
in InterpreteRtMsg()
local
445
if (
rtMsg
== nullptr) {
in InterpreteRtMsg()
451
int32_t rtmFamily =
rtMsg
->rtm_family;
in InterpreteRtMsg()
452
int32_t rtmDstLen =
rtMsg
->rtm_dst_len;
in InterpreteRtMsg()
456
for (rtAttr = RTM_RTA(
rtMsg
); RTA_OK(rtAttr, (int)size); rtAttr = RTA_NEXT(rtAttr, size)) {
in InterpreteRtMsg()
Completed in 3 milliseconds