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:Hz
(Results
1 - 2
of
2
) sorted by relevance
/developtools/profiler/device/plugins/cpu_plugin/test/unittest/
H
A
D
cpu_data_plugin_unittest.cpp
225
void GetSystemCpuTime(TestSystemStat& stat, int64_t
Hz
, int64_t& usageTime, int64_t& time)
in GetSystemCpuTime()
argument
227
usageTime = (stat.user + stat.nice + stat.system + stat.irq + stat.softirq + stat.steal) *
Hz
;
in GetSystemCpuTime()
228
time = usageTime + (stat.idle + stat.iowait) *
Hz
;
in GetSystemCpuTime()
231
void GetCpuUsage(TestCpuUsage& cpuUsage, int64_t
Hz
)
in GetCpuUsage()
argument
234
int64_t userTime = stat.user *
Hz
;
in GetCpuUsage()
235
int64_t sysTime = stat.system *
Hz
;
in GetCpuUsage()
236
int64_t totalTime = (stat.user + stat.nice + stat.system + stat.irq + stat.softirq + stat.steal) *
Hz
;
in GetCpuUsage()
237
int64_t bootTime = totalTime + (stat.idle + stat.iowait) *
Hz
;
in GetCpuUsage()
291
int64_t
Hz
= cpuPlugin.GetUserHz();
in HWTEST_F()
local
292
int64_t processCpuTime = (g_pidStat.utime + g_pidStat.stime) *
Hz
;
in HWTEST_F()
343
int64_t
Hz
= cpuPlugin.GetUser
Hz
();
HWTEST_F()
local
425
int64_t
Hz
= cpuPlugin.GetUser
Hz
();
HWTEST_F()
local
463
int64_t
Hz
= cpuPlugin.GetUser
Hz
();
HWTEST_F()
local
538
int64_t
Hz
= cpuPlugin.GetUser
Hz
();
HWTEST_F()
local
618
int64_t
Hz
= cpuPlugin.GetUser
Hz
();
HWTEST_F()
local
747
int64_t
Hz
= cpuPlugin.GetUser
Hz
();
HWTEST_F()
local
817
int64_t
Hz
= cpuPlugin.GetUser
Hz
();
HWTEST_F()
local
[all...]
/developtools/profiler/device/plugins/process_plugin/test/unittest/
H
A
D
process_plugin_unittest.cpp
153
void GetCpuData(std::vector<CpuData>& cpuDataVec, int64_t
Hz
)
in GetCpuData()
argument
156
+ g_bootData.irq + g_bootData.softirq + g_bootData.steal) *
Hz
;
in GetCpuData()
159
+ g_processCpuData[i].cstime) *
Hz
;
in GetCpuData()
223
int64_t
Hz
= processPlugin->GetUserHz();
in HWTEST_F()
local
224
GetCpuData(cpuDataVec,
Hz
);
in HWTEST_F()
311
int64_t
Hz
= processPlugin->GetUserHz();
in HWTEST_F()
local
312
GetCpuData(cpuDataVec,
Hz
);
in HWTEST_F()
Completed in 3 milliseconds