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:g_battClient
(Results
1 - 3
of
3
) sorted by relevance
/base/powermgr/battery_manager/frameworks/cj/src/
H
A
D
battery_info_ffi.cpp
27
thread_local static BatterySrvClient&
g_battClient
= BatterySrvClient::GetInstance();
member
32
int32_t capacity =
g_battClient
.GetCapacity();
in FfiBatteryInfoBatterySOC()
39
int32_t chargingState = static_cast<int32_t>(
g_battClient
.GetChargingStatus());
in FfiBatteryInfoGetChargingState()
46
int32_t healthStatus = static_cast<int32_t>(
g_battClient
.GetHealthStatus());
in FfiBatteryInfoGetHealthState()
53
int32_t pluggedType = static_cast<int32_t>(
g_battClient
.GetPluggedType());
in FfiBatteryInfoGetPluggedType()
60
int32_t voltage =
g_battClient
.GetVoltage();
in FfiBatteryInfoGetVoltage()
67
int32_t curNow =
g_battClient
.GetNowCurrent();
in FfiBatteryInfoGetBatteryNowCurrent()
74
auto technology =
g_battClient
.GetTechnology();
in FfiBatteryInfoGetTechnology()
90
int32_t temperature =
g_battClient
.GetBatteryTemperature();
in FfiBatteryInfoGetBatteryTemperature()
97
bool present =
g_battClient
in FfiBatteryInfoGetBatteryPresent()
[all...]
/base/powermgr/battery_manager/frameworks/napi/src/
H
A
D
battery_info.cpp
35
thread_local static BatterySrvClient&
g_battClient
= BatterySrvClient::GetInstance();
variable
40
int32_t capacity =
g_battClient
.GetCapacity();
in BatterySOC()
51
int32_t chargingState = (int32_t)
g_battClient
.GetChargingStatus();
in GetChargingState()
63
int32_t healthStatus = (int32_t)
g_battClient
.GetHealthStatus();
in GetHealthState()
75
int32_t pluggedType = (int32_t)
g_battClient
.GetPluggedType();
in GetPluggedType()
87
int32_t voltage =
g_battClient
.GetVoltage();
in GetVoltage()
99
auto technology =
g_battClient
.GetTechnology();
in GetTechnology()
111
int32_t temperature =
g_battClient
.GetBatteryTemperature();
in GetBatteryTemperature()
123
bool present =
g_battClient
.GetPresent();
in GetBatteryPresent()
135
int32_t curNow =
g_battClient
in GetBatteryNowCurrent()
[all...]
H
A
D
system_battery.cpp
199
BatterySrvClient&
g_battClient
= BatterySrvClient::GetInstance();
in GetBatteryInfo()
local
200
capacity_ =
g_battClient
.GetCapacity();
in GetBatteryInfo()
201
chargingState_ =
g_battClient
.GetChargingStatus();
in GetBatteryInfo()
Completed in 2 milliseconds