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:pm_power_off
(Results
1 - 5
of
5
) sorted by relevance
/device/soc/rockchip/common/sdk_linux/drivers/power/reset/
H
A
D
gpio-poweroff.c
21
* since
pm_power_off
itself is global.
54
/* If a
pm_power_off
function has already been added, leave it alone */
in gpio_poweroff_probe()
55
if (
pm_power_off
!= NULL) {
in gpio_poweroff_probe()
56
dev_err(&pdev->dev, "%s:
pm_power_off
function already registered\n", __func__);
in gpio_poweroff_probe()
76
pm_power_off
= &gpio_poweroff_do_poweroff;
in gpio_poweroff_probe()
82
if (
pm_power_off
== &gpio_poweroff_do_poweroff) {
in gpio_poweroff_remove()
83
pm_power_off
= NULL;
in gpio_poweroff_remove()
/device/soc/rockchip/common/sdk_linux/arch/arm64/kernel/
H
A
D
process.c
70
void (*
pm_power_off
)(void);
variable
71
EXPORT_SYMBOL_GPL(
pm_power_off
);
variable
178
if (
pm_power_off
) {
in machine_power_off()
179
pm_power_off
();
in machine_power_off()
/device/soc/rockchip/common/sdk_linux/drivers/mfd/
H
A
D
rk808.c
862
* Because when run to kernel's "
pm_power_off
" call, i2c may has
in rk8xx_syscore_shutdown()
892
* RK8xx PMICs would do real power off in syscore shutdown, if "
pm_power_off
"
896
* if ((cmd == LINUX_REBOOT_CMD_POWER_OFF) && !
pm_power_off
)
1368
if (!
pm_power_off
) {
in rk808_probe()
1369
pm_power_off
= rk808_pm_power_off_dummy;
in rk808_probe()
1390
*
pm_power_off
may points to a function from another module.
in rk808_remove()
1393
if (
pm_power_off
== rk808_pm_power_off_dummy) {
in rk808_remove()
1394
pm_power_off
= NULL;
in rk808_remove()
/device/soc/rockchip/common/sdk_linux/kernel/
H
A
D
reboot.c
361
* halt when
pm_power_off
is not set do it the easy way.
in SYSCALL_DEFINE4()
363
if ((cmd == LINUX_REBOOT_CMD_POWER_OFF) && !
pm_power_off
) {
in SYSCALL_DEFINE4()
/device/soc/rockchip/common/sdk_linux/kernel/power/
H
A
D
hibernate.c
698
if (
pm_power_off
) {
in power_down()
Completed in 8 milliseconds