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_decl_tag
(Results
1 - 13
of
13
) sorted by relevance
/kernel/linux/linux-6.6/tools/testing/selftests/bpf/progs/
H
A
D
bpf_misc.h
61
#define __msg(msg) __attribute__((
btf_decl_tag
("comment:test_expect_msg=" msg)))
62
#define __failure __attribute__((
btf_decl_tag
("comment:test_expect_failure")))
63
#define __success __attribute__((
btf_decl_tag
("comment:test_expect_success")))
64
#define __description(desc) __attribute__((
btf_decl_tag
("comment:test_description=" desc)))
65
#define __msg_unpriv(msg) __attribute__((
btf_decl_tag
("comment:test_expect_msg_unpriv=" msg)))
66
#define __failure_unpriv __attribute__((
btf_decl_tag
("comment:test_expect_failure_unpriv")))
67
#define __success_unpriv __attribute__((
btf_decl_tag
("comment:test_expect_success_unpriv")))
68
#define __log_level(lvl) __attribute__((
btf_decl_tag
("comment:test_log_level="#lvl)))
69
#define __flag(flag) __attribute__((
btf_decl_tag
("comment:test_prog_flags="#flag)))
70
#define __retval(val) __attribute__((
btf_decl_tag
("commen
[all...]
H
A
D
test_btf_decl_tag.c
7
#if __has_attribute(
btf_decl_tag
)
8
#define __tag1 __attribute__((
btf_decl_tag
("tag1")))
9
#define __tag2 __attribute__((
btf_decl_tag
("tag2")))
/kernel/linux/linux-6.6/tools/lib/bpf/
H
A
D
btf.h
565
struct
btf_decl_tag
;
566
static inline struct
btf_decl_tag
*
btf_decl_tag
(const struct btf_type *t)
in btf_decl_tag()
function
568
return (struct
btf_decl_tag
*)(t + 1);
in btf_decl_tag()
H
A
D
btf.c
322
return base_size + sizeof(struct
btf_decl_tag
);
in btf_type_size()
405
btf_decl_tag
(t)->component_idx = bswap_32(
btf_decl_tag
(t)->component_idx);
in btf_bswap_type_rest()
2630
sz = sizeof(struct btf_type) + sizeof(struct
btf_decl_tag
);
in btf__add_decl_tag()
2642
btf_decl_tag
(t)->component_idx = component_idx;
in btf__add_decl_tag()
/kernel/linux/linux-6.6/include/uapi/linux/
H
A
D
btf.h
179
/* BTF_KIND_DECL_TAG is followed by a single "struct
btf_decl_tag
" to describe
186
struct
btf_decl_tag
{
struct
/kernel/linux/linux-6.6/tools/testing/selftests/bpf/
H
A
D
bpf_experimental.h
9
#define __contains(name, node) __attribute__((
btf_decl_tag
("contains:" #name ":" #node)))
H
A
D
btf_helpers.c
204
t->type,
btf_decl_tag
(t)->component_idx);
in fprintf_btf_type_raw()
H
A
D
test_loader.c
156
/* Uses
btf_decl_tag
attributes to describe the expected test
196
if (t->type != func_id ||
btf_decl_tag
(t)->component_idx != -1)
in parse_test_spec()
/kernel/linux/linux-6.6/tools/include/uapi/linux/
H
A
D
btf.h
179
/* BTF_KIND_DECL_TAG is followed by a single "struct
btf_decl_tag
" to describe
186
struct
btf_decl_tag
{
struct
/kernel/linux/linux-6.6/tools/testing/selftests/bpf/prog_tests/
H
A
D
btf_write.c
288
ASSERT_EQ(
btf_decl_tag
(t)->component_idx, -1, "tag_component_idx");
in gen_btf()
298
ASSERT_EQ(
btf_decl_tag
(t)->component_idx, 1, "tag_component_idx");
in gen_btf()
H
A
D
btf.c
7984
return base_size + sizeof(struct
btf_decl_tag
);
in btf_type_size()
/kernel/linux/linux-6.6/tools/bpf/bpftool/
H
A
D
btf.c
396
const struct
btf_decl_tag
*tag = (const void *)(t + 1);
in dump_btf_type()
/kernel/linux/linux-6.6/kernel/bpf/
H
A
D
btf.c
729
static const struct
btf_decl_tag
*btf_type_decl_tag(const struct btf_type *t)
in btf_type_decl_tag()
731
return (const struct
btf_decl_tag
*)(t + 1);
in btf_type_decl_tag()
4700
const struct
btf_decl_tag
*tag;
in btf_decl_tag_check_meta()
Completed in 33 milliseconds