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:tgt_prog
(Results
1 - 2
of
2
) sorted by relevance
/device/soc/rockchip/common/sdk_linux/kernel/bpf/
H
A
D
syscall.c
2560
struct bpf_prog *
tgt_prog
;
member
2571
/*
tgt_prog
is NULL if target is a kernel function */
in bpf_tracing_link_release()
2572
if (tr_link->
tgt_prog
) {
in bpf_tracing_link_release()
2573
bpf_prog_put(tr_link->
tgt_prog
);
in bpf_tracing_link_release()
2610
struct bpf_prog *
tgt_prog
= NULL;
in bpf_tracing_prog_attach()
local
2653
tgt_prog
= bpf_prog_get(tgt_prog_fd);
in bpf_tracing_prog_attach()
2654
if (IS_ERR(
tgt_prog
)) {
in bpf_tracing_prog_attach()
2655
err = PTR_ERR(
tgt_prog
);
in bpf_tracing_prog_attach()
2656
tgt_prog
= NULL;
in bpf_tracing_prog_attach()
2660
key = bpf_trampoline_compute_key(
tgt_prog
, btf_i
in bpf_tracing_prog_attach()
[all...]
H
A
D
verifier.c
11831
int bpf_check_attach_target(struct bpf_verifier_log *log, const struct bpf_prog *prog, const struct bpf_prog *
tgt_prog
,
in bpf_check_attach_target()
argument
11847
btf =
tgt_prog
?
tgt_prog
->aux->btf : btf_vmlinux;
in bpf_check_attach_target()
11862
if (
tgt_prog
) {
in bpf_check_attach_target()
11863
struct bpf_prog_aux *aux =
tgt_prog
->aux;
in bpf_check_attach_target()
11886
if (!
tgt_prog
->jited) {
in bpf_check_attach_target()
11890
if (
tgt_prog
->type == prog->type) {
in bpf_check_attach_target()
11898
if (
tgt_prog
->type == BPF_PROG_TYPE_TRACING && prog_extension &&
in bpf_check_attach_target()
11899
(
tgt_prog
->expected_attach_type == BPF_TRACE_FENTRY ||
tgt_prog
in bpf_check_attach_target()
12065
struct bpf_prog *
tgt_prog
= prog->aux->dst_prog;
check_attach_btf_id()
local
[all...]
Completed in 22 milliseconds