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:collectResult
(Results
1 - 5
of
5
) sorted by relevance
/developtools/profiler/hidebug/frameworks/native/src/
H
A
D
hidebug_native_interface_impl.cpp
77
auto
collectResult
= threadCpu_.CollectThreadStatInfos();
in GetAppThreadCpuUsage()
local
78
if (
collectResult
.retCode != UCollect::UcError::SUCCESS) {
in GetAppThreadCpuUsage()
79
HILOG_ERROR(LOG_CORE, "GetAppThreadCpuUsage fail, ret: %{public}d", static_cast<int>(
collectResult
.retCode));
in GetAppThreadCpuUsage()
83
for (const auto &threadCpuStatInfo :
collectResult
.data) {
in GetAppThreadCpuUsage()
131
auto
collectResult
= collector->GetSysCpuUsage();
in GetSystemCpuUsage()
local
132
if (
collectResult
.retCode != UCollect::UcError::SUCCESS) {
in GetSystemCpuUsage()
134
static_cast<int>(
collectResult
.retCode));
in GetSystemCpuUsage()
137
cachedValue =
collectResult
.data;
in GetSystemCpuUsage()
149
auto
collectResult
= collector->CollectMemoryLimit();
in GetAppMemoryLimit()
local
150
if (
collectResult
in GetAppMemoryLimit()
170
auto
collectResult
= collector->CollectProcessMemory(pid);
GetAppNativeMemInfo()
local
202
auto
collectResult
= collector->CollectSysMemory();
GetSystemMemInfo()
local
269
auto
collectResult
= collector->GetGraphicUsage();
GetGraphicsMemory()
local
[all...]
/developtools/profiler/hidebug/interfaces/cj/
H
A
D
hidebug_ffi.cpp
90
auto
collectResult
= collector->CollectProcessMemory(pid);
in FfiHidebugGetPss()
local
91
int32_t pssInfo =
collectResult
.data.pss +
collectResult
.data.swapPss;
in FfiHidebugGetPss()
103
auto
collectResult
= collector->CollectProcessVss(pid);
in FfiHidebugGetVss()
local
104
uint64_t vssInfo =
collectResult
.data;
in FfiHidebugGetVss()
134
auto
collectResult
= collector->CollectProcessMemory(pid);
in FfiHidebugGetSharedDirty()
local
135
int32_t sharedDirtyInfo =
collectResult
.data.sharedDirty;
in FfiHidebugGetSharedDirty()
147
auto
collectResult
= collector->CollectProcessMemory(pid);
in FfiHidebugGetPrivateDirty()
local
148
int32_t privateDirty =
collectResult
.data.privateDirty;
in FfiHidebugGetPrivateDirty()
/developtools/profiler/hidebug/frameworks/hidebug_ndk/
H
A
D
hidebug_ndk.cpp
91
auto
collectResult
= nativeInterface->GetAppMemoryLimit();
in OH_HiDebug_GetAppMemoryLimit()
local
92
if (!
collectResult
) {
in OH_HiDebug_GetAppMemoryLimit()
95
memoryLimit->vssLimit =
collectResult
->vssLimit;
in OH_HiDebug_GetAppMemoryLimit()
96
memoryLimit->rssLimit =
collectResult
->rssLimit;
in OH_HiDebug_GetAppMemoryLimit()
/developtools/profiler/host/smartperf/client/client_command/
H
A
D
CPU.cpp
156
auto
collectResult
= collector->CollectProcessCpuStatInfo(procId, true);
in GetSysProcessCpuLoad()
local
157
auto data =
collectResult
.data;
in GetSysProcessCpuLoad()
/developtools/profiler/hidebug/interfaces/js/kits/napi/
H
A
D
napi_hidebug.cpp
454
auto
collectResult
= collector->CollectProcessMemory(pid);
in GetPss()
local
455
int32_t pssInfo =
collectResult
.data.pss +
collectResult
.data.swapPss;
in GetPss()
470
auto
collectResult
= collector->CollectProcessMemory(pid);
in GetSharedDirty()
local
471
int32_t sharedDirtyInfo =
collectResult
.data.sharedDirty;
in GetSharedDirty()
486
auto
collectResult
= collector->CollectProcessMemory(pid);
in GetPrivateDirty()
local
487
int32_t privateDirty =
collectResult
.data.privateDirty;
in GetPrivateDirty()
567
auto
collectResult
= collector->CollectProcessVss(pid);
in GetVss()
local
568
uint64_t vssInfo =
collectResult
.data;
in GetVss()
Completed in 6 milliseconds