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:pimhdr
(Results
1 - 4
of
4
) sorted by relevance
/kernel/linux/linux-5.10/include/linux/
H
A
D
pim.h
55
struct
pimhdr
{
struct
76
static inline struct
pimhdr
*pim_hdr(const struct sk_buff *skb)
in pim_hdr()
78
return (struct
pimhdr
*)skb_transport_header(skb);
in pim_hdr()
81
static inline u8 pim_hdr_version(const struct
pimhdr
*
pimhdr
)
in pim_hdr_version()
argument
83
return
pimhdr
->type >> 4;
in pim_hdr_version()
86
static inline u8 pim_hdr_type(const struct
pimhdr
*
pimhdr
)
in pim_hdr_type()
argument
88
return
pimhdr
->type & 0xf;
in pim_hdr_type()
/kernel/linux/linux-6.6/include/linux/
H
A
D
pim.h
55
struct
pimhdr
{
struct
76
static inline struct
pimhdr
*pim_hdr(const struct sk_buff *skb)
in pim_hdr()
78
return (struct
pimhdr
*)skb_transport_header(skb);
in pim_hdr()
81
static inline u8 pim_hdr_version(const struct
pimhdr
*
pimhdr
)
in pim_hdr_version()
argument
83
return
pimhdr
->type >> 4;
in pim_hdr_version()
86
static inline u8 pim_hdr_type(const struct
pimhdr
*
pimhdr
)
in pim_hdr_type()
argument
88
return
pimhdr
->type & 0xf;
in pim_hdr_type()
/kernel/linux/linux-5.10/net/bridge/
H
A
D
br_multicast.c
2994
struct
pimhdr
*
pimhdr
, _pimhdr;
in br_multicast_pim()
local
2996
pimhdr
= skb_header_pointer(skb, offset, sizeof(_pimhdr), &_pimhdr);
in br_multicast_pim()
2997
if (!
pimhdr
|| pim_hdr_version(
pimhdr
) != PIM_VERSION ||
in br_multicast_pim()
2998
pim_hdr_type(
pimhdr
) != PIM_TYPE_HELLO)
in br_multicast_pim()
/kernel/linux/linux-6.6/net/bridge/
H
A
D
br_multicast.c
3783
struct
pimhdr
*
pimhdr
, _pimhdr;
in br_multicast_pim()
local
3785
pimhdr
= skb_header_pointer(skb, offset, sizeof(_pimhdr), &_pimhdr);
in br_multicast_pim()
3786
if (!
pimhdr
|| pim_hdr_version(
pimhdr
) != PIM_VERSION ||
in br_multicast_pim()
3787
pim_hdr_type(
pimhdr
) != PIM_TYPE_HELLO)
in br_multicast_pim()
Completed in 12 milliseconds