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:pipelineInfo
(Results
1 - 4
of
4
) sorted by relevance
/base/hiviewdfx/hiview/core/test/unittest/common/
H
A
D
platform_config_test.cpp
65
for (auto&
pipelineInfo
: pipelineInfoList) {
in HWTEST_F()
66
printf("read pipeline with name:%s \n",
pipelineInfo
.name.c_str());
in HWTEST_F()
98
for (auto&
pipelineInfo
: pipelineInfoList) {
in HWTEST_F()
99
printf("read pipeline with name:%s \n",
pipelineInfo
.name.c_str());
in HWTEST_F()
/base/hiviewdfx/hiview/core/
H
A
D
plugin_config.cpp
118
PipelineInfo
pipelineInfo
;
in ParsePipeline()
local
119
pipelineInfo
.name = result.str(pipelineNameField);
in ParsePipeline()
120
pipelineInfo
.pluginNameList = StringUtil::SplitStr(result.str(pluginNameListField));
in ParsePipeline()
121
pipelineInfoList_.push_back(std::move(
pipelineInfo
));
in ParsePipeline()
H
A
D
hiview_platform.cpp
240
for (auto const&
pipelineInfo
: pipelineInfoList) {
in LoadBusinessPlugin()
241
HIVIEW_LOGI("Start to create pipeline %{public}s",
pipelineInfo
.name.c_str());
in LoadBusinessPlugin()
242
CreatePipeline(
pipelineInfo
);
in LoadBusinessPlugin()
451
void HiviewPlatform::CreatePipeline(const PluginConfig::PipelineInfo&
pipelineInfo
)
in CreatePipeline()
argument
453
if (pipelines_.find(
pipelineInfo
.name) != pipelines_.end()) {
in CreatePipeline()
454
HIVIEW_LOGW("pipeline %{public}s already exists! create pipeline failed",
pipelineInfo
.name.c_str());
in CreatePipeline()
459
for (const auto& pluginName :
pipelineInfo
.pluginNameList) {
in CreatePipeline()
462
pluginName.c_str(),
pipelineInfo
.name.c_str());
in CreatePipeline()
468
std::shared_ptr<Pipeline> pipeline = std::make_shared<Pipeline>(
pipelineInfo
.name, pluginList);
in CreatePipeline()
469
pipelines_[
pipelineInfo
in CreatePipeline()
[all...]
/base/hiviewdfx/hiview/core/include/
H
A
D
hiview_platform.h
158
void CreatePipeline(const PluginConfig::PipelineInfo&
pipelineInfo
);
Completed in 3 milliseconds