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:softirq
(Results
1 - 3
of
3
) sorted by relevance
/developtools/profiler/device/plugins/cpu_plugin/src/
H
A
D
cpu_data_plugin.cpp
385
// 获取到的数据不包含user, nice, system, idle, iowait, irq,
softirq
, steal八个数值时返回
in GetSystemCpuTime()
395
int64_t
softirq
= 0;
in GetSystemCpuTime()
local
403
softirq
= atoi(cpuUsageVec[SYSTEM_SOFTIRQ].c_str());
in GetSystemCpuTime()
408
cpuTimeData.systemUsageTime = (user + nice + system + irq +
softirq
+ steal) * GetUserHz();
in GetSystemCpuTime()
/developtools/profiler/device/plugins/process_plugin/test/unittest/
H
A
D
process_plugin_unittest.cpp
76
int64_t
softirq
;
member
156
+ g_bootData.irq + g_bootData.
softirq
+ g_bootData.steal) * Hz;
in GetCpuData()
/developtools/profiler/device/plugins/cpu_plugin/test/unittest/
H
A
D
cpu_data_plugin_unittest.cpp
49
int64_t
softirq
;
member
227
usageTime = (stat.user + stat.nice + stat.system + stat.irq + stat.
softirq
+ stat.steal) * Hz;
in GetSystemCpuTime()
236
int64_t totalTime = (stat.user + stat.nice + stat.system + stat.irq + stat.
softirq
+ stat.steal) * Hz;
in GetCpuUsage()
Completed in 5 milliseconds