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:BTF_VAR_STATIC
(Results
1 - 4
of
4
) sorted by relevance
/third_party/libbpf/include/uapi/linux/
H
A
D
btf.h
151
BTF_VAR_STATIC
= 0,
enumerator
/third_party/libbpf/src/
H
A
D
linker.c
1409
is_static1 = btf_var(t1)->linkage ==
BTF_VAR_STATIC
;
in glob_sym_btf_matches()
1410
is_static2 = btf_var(t2)->linkage ==
BTF_VAR_STATIC
;
in glob_sym_btf_matches()
1654
return (btf_is_var(t) && btf_var(t)->linkage !=
BTF_VAR_STATIC
)
in btf_is_non_static()
1698
if (btf_is_var(t) && btf_var(t)->linkage ==
BTF_VAR_STATIC
)
in find_glob_sym_btf()
H
A
D
libbpf.c
1713
if (btf_var(vt)->linkage !=
BTF_VAR_STATIC
)
2605
case
BTF_VAR_STATIC
: return "static";
3089
if (var->linkage ==
BTF_VAR_STATIC
|| var->linkage == BTF_VAR_GLOBAL_EXTERN)
3118
var->linkage =
BTF_VAR_STATIC
;
5057
BTF_VAR_STATIC
,
5087
BTF_VAR_STATIC
,
H
A
D
btf.c
2733
* - *linkage* - variable linkage, one of
BTF_VAR_STATIC
,
2749
if (linkage !=
BTF_VAR_STATIC
&& linkage != BTF_VAR_GLOBAL_ALLOCATED &&
Completed in 25 milliseconds