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:pidStr
(Results
1 - 6
of
6
) sorted by relevance
/developtools/profiler/host/smartperf/client/client_command/
H
A
D
smartperf_command.cpp
40
std::string
pidStr
= sd.GetPidByPkg("SP_daemon");
in SmartPerfCommand()
local
43
SPUtils::LoadCmd(cmdStr +
pidStr
, result);
in SmartPerfCommand()
91
std::string
pidStr
= sd.GetPidByPkg("SP_daemon");
in HelpCommand()
local
94
SPUtils::LoadCmd(cmdStr +
pidStr
, result);
in HelpCommand()
/developtools/smartperf_host/trace_streamer/src/parser/ptreader_parser/hilog_parser/
H
A
D
ptreader_hilog_parser.cpp
100
std::string
pidStr
= matcheLine[HILOG_MATCH_SEQ_PID].str();
in ParseHilogDataItem()
local
101
std::optional<uint32_t> optionalPid = base::StrToInt<uint32_t>(
pidStr
);
in ParseHilogDataItem()
103
TS_LOGD("Illegal pid: %s",
pidStr
.c_str());
in ParseHilogDataItem()
/developtools/profiler/device/plugins/ftrace_plugin/src/
H
A
D
ftrace_parser.cpp
507
auto
pidStr
= line.substr(0, pos);
in ParseSavedCmdlines()
local
508
pid = COMMON::IsNumeric(
pidStr
) ? std::stoi(
pidStr
) : 0;
in ParseSavedCmdlines()
/developtools/profiler/hidebug/frameworks/native/src/
H
A
D
hidebug_native_interface_impl.cpp
251
std::string
pidStr
= line.substr(line.find(":") + 1);
in IsDebuggerConnected()
local
252
return std::atoi(
pidStr
.c_str()) != 0;
in IsDebuggerConnected()
/developtools/profiler/device/base/src/
H
A
D
common.cpp
118
std::string
pidStr
= std::to_string(getpid());
in IsProcessRunning()
local
119
auto nbytes = write(fd,
pidStr
.data(),
pidStr
.size());
in IsProcessRunning()
121
CHECK_TRUE(static_cast<size_t>(nbytes) ==
pidStr
.size(), false, "write pid FAILED!");
in IsProcessRunning()
/developtools/smartperf_host/trace_streamer/test/unittest/ptreader_parser/
H
A
D
event_parser_test.cpp
167
bytraceLine.
pidStr
= "12";
in HWTEST_F()
Completed in 7 milliseconds