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:logId
(Results
1 - 8
of
8
) sorted by relevance
/base/hiviewdfx/hiview/plugins/performance/context/
H
A
D
BaseContext.cpp
24
void BaseContext::RegisterMonitorByLogID(int
logId
, IMonitor* newMonitor)
in RegisterMonitorByLogID()
argument
26
if (monitors.find(
logId
) == monitors.end()) {
in RegisterMonitorByLogID()
29
monitors.emplace(
logId
, monitorVector);
in RegisterMonitorByLogID()
31
std::vector<IMonitor*> &monitorVec = monitors.at(
logId
);
in RegisterMonitorByLogID()
36
std::vector<IMonitor*> BaseContext::GetMonitorsByLogID(int
logId
)
in GetMonitorsByLogID()
argument
38
if (monitors.find(
logId
) == monitors.end()) {
in GetMonitorsByLogID()
39
throw std::invalid_argument("
logId
: " + std::to_string(
logId
) + " not register.");
in GetMonitorsByLogID()
41
return monitors.at(
logId
);
in GetMonitorsByLogID()
H
A
D
BaseContext.h
32
void RegisterMonitorByLogID(int
logId
, IMonitor *newMonitor) override;
33
std::vector<IMonitor*> GetMonitorsByLogID(int
logId
) override;
/base/hiviewdfx/hiview/plugins/performance/
H
A
D
IMonitorRegistry.h
26
virtual void RegisterMonitorByLogID(int
logId
, IMonitor* monitor) = 0;
27
virtual std::vector<IMonitor*> GetMonitorsByLogID(int
logId
) = 0;
H
A
D
XperfPlugin.cpp
149
DispatchToMonitor(evt->
logId
, evt);
in XperfDispatch()
160
void XperfPlugin::DispatchToMonitor(unsigned int
logId
, std::shared_ptr<XperfEvt> xperfEvt)
in DispatchToMonitor()
argument
164
monitorVec = perfContext->GetMonitorsByLogID(
logId
);
in DispatchToMonitor()
166
HIVIEW_LOGW("[XperfPlugin::DispatchToMonitor] no monitor register for %{public}d",
logId
);
in DispatchToMonitor()
H
A
D
XperfPlugin.h
44
void DispatchToMonitor(unsigned int
logId
, std::shared_ptr<XperfEvt> xperfEvt);
H
A
D
EvtParser.h
221
unsigned int
logId
= logIdMap.at(logIdStr); // this might throw std::out_of_range
in ExtractLogIdFromEvt()
local
222
return
logId
;
in ExtractLogIdFromEvt()
238
evt.
logId
= ExtractLogIdFromEvt(sysEvent);
in ConvertToXperfEvent()
H
A
D
XperfEvt.h
66
unsigned int
logId
{0};
/base/hiviewdfx/hiview/plugins/performance/scene_data_processor/
H
A
D
AnimatorSceneDataProcessor.cpp
66
switch (evt->
logId
) {
in ProcessSceneData()
Completed in 4 milliseconds