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:ret_regs
(Results
1 - 7
of
7
) sorted by relevance
/kernel/linux/linux-6.6/arch/loongarch/include/asm/
H
A
D
ftrace.h
113
static inline unsigned long fgraph_ret_regs_return_value(struct fgraph_ret_regs *
ret_regs
)
in fgraph_ret_regs_return_value()
argument
115
return
ret_regs
->regs[0];
in fgraph_ret_regs_return_value()
118
static inline unsigned long fgraph_ret_regs_frame_pointer(struct fgraph_ret_regs *
ret_regs
)
in fgraph_ret_regs_frame_pointer()
argument
120
return
ret_regs
->fp;
in fgraph_ret_regs_frame_pointer()
/kernel/linux/linux-6.6/arch/arm64/include/asm/
H
A
D
ftrace.h
205
static inline unsigned long fgraph_ret_regs_return_value(struct fgraph_ret_regs *
ret_regs
)
in fgraph_ret_regs_return_value()
argument
207
return
ret_regs
->regs[0];
in fgraph_ret_regs_return_value()
210
static inline unsigned long fgraph_ret_regs_frame_pointer(struct fgraph_ret_regs *
ret_regs
)
in fgraph_ret_regs_frame_pointer()
argument
212
return
ret_regs
->fp;
in fgraph_ret_regs_frame_pointer()
/kernel/linux/linux-6.6/arch/riscv/include/asm/
H
A
D
ftrace.h
149
static inline unsigned long fgraph_ret_regs_return_value(struct fgraph_ret_regs *
ret_regs
)
in fgraph_ret_regs_return_value()
argument
151
return
ret_regs
->a0;
in fgraph_ret_regs_return_value()
154
static inline unsigned long fgraph_ret_regs_frame_pointer(struct fgraph_ret_regs *
ret_regs
)
in fgraph_ret_regs_frame_pointer()
argument
156
return
ret_regs
->s0;
in fgraph_ret_regs_frame_pointer()
/kernel/linux/linux-6.6/arch/s390/include/asm/
H
A
D
ftrace.h
63
static __always_inline unsigned long fgraph_ret_regs_return_value(struct fgraph_ret_regs *
ret_regs
)
in fgraph_ret_regs_return_value()
argument
65
return
ret_regs
->gpr2;
in fgraph_ret_regs_return_value()
68
static __always_inline unsigned long fgraph_ret_regs_frame_pointer(struct fgraph_ret_regs *
ret_regs
)
in fgraph_ret_regs_frame_pointer()
argument
70
return
ret_regs
->fp;
in fgraph_ret_regs_frame_pointer()
/kernel/linux/linux-6.6/arch/x86/include/asm/
H
A
D
ftrace.h
161
static inline unsigned long fgraph_ret_regs_return_value(struct fgraph_ret_regs *
ret_regs
)
in fgraph_ret_regs_return_value()
argument
163
return
ret_regs
->ax;
in fgraph_ret_regs_return_value()
166
static inline unsigned long fgraph_ret_regs_frame_pointer(struct fgraph_ret_regs *
ret_regs
)
in fgraph_ret_regs_frame_pointer()
argument
168
return
ret_regs
->bp;
in fgraph_ret_regs_frame_pointer()
/kernel/linux/linux-6.6/kernel/trace/
H
A
D
fgraph.c
247
static unsigned long __ftrace_return_to_handler(struct fgraph_ret_regs *
ret_regs
,
in __ftrace_return_to_handler()
argument
255
trace.retval = fgraph_ret_regs_return_value(
ret_regs
);
in __ftrace_return_to_handler()
279
* leave only ftrace_return_to_handler(
ret_regs
).
282
unsigned long ftrace_return_to_handler(struct fgraph_ret_regs *
ret_regs
)
in ftrace_return_to_handler()
argument
284
return __ftrace_return_to_handler(
ret_regs
,
in ftrace_return_to_handler()
285
fgraph_ret_regs_frame_pointer(
ret_regs
));
in ftrace_return_to_handler()
/kernel/linux/linux-6.6/include/linux/
H
A
D
ftrace.h
48
unsigned long ftrace_return_to_handler(struct fgraph_ret_regs *
ret_regs
);
Completed in 6 milliseconds