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:prefix_key
(Results
1 - 2
of
2
) sorted by relevance
/kernel/linux/linux-5.10/samples/bpf/
H
A
D
xdp_router_ipv4_user.c
125
struct bpf_lpm_trie_key *
prefix_key
;
in read_route()
local
211
prefix_key
= alloca(sizeof(*
prefix_key
) + 3);
in read_route()
214
prefix_key
->prefixlen = 32;
in read_route()
215
prefix_key
->prefixlen = route.dst_len;
in read_route()
235
prefix_key
->data[i] = (route.dst >> i * 8) & 0xff;
in read_route()
238
(int)
prefix_key
->data[0],
in read_route()
239
(int)
prefix_key
->data[1],
in read_route()
240
(int)
prefix_key
->data[2],
in read_route()
241
(int)
prefix_key
in read_route()
[all...]
/kernel/linux/linux-6.6/samples/bpf/
H
A
D
xdp_router_ipv4_user.c
94
struct bpf_lpm_trie_key *
prefix_key
;
in read_route()
local
165
prefix_key
= alloca(sizeof(*
prefix_key
) + 4);
in read_route()
168
prefix_key
->prefixlen = 32;
in read_route()
169
prefix_key
->prefixlen = route.dst_len;
in read_route()
189
prefix_key
->data[i] = (route.dst >> i * 8) & 0xff;
in read_route()
191
if (bpf_map_lookup_elem(lpm_map_fd,
prefix_key
,
in read_route()
194
prefix_value->prefix[i] =
prefix_key
->data[i];
in read_route()
201
prefix_key
,
in read_route()
207
prefix_key
in read_route()
[all...]
Completed in 2 milliseconds