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:callFrames_
(Results
1 - 7
of
7
) sorted by relevance
/arkcompiler/toolchain/tooling/client/manager/
H
A
D
stack_manager.cpp
24
callFrames_
[callFrame.first] = std::move(callFrame.second);
in SetCallFrames()
31
for (const auto &callFrame :
callFrames_
) {
in ShowCallFrames()
43
for (const auto &callFram :
callFrames_
) {
in GetScopeChainInfo()
54
callFrames_
.clear();
in ClearCallFrame()
H
A
D
stack_manager.h
43
std::map<int32_t, std::unique_ptr<CallFrame>>
callFrames_
{};
/arkcompiler/toolchain/tooling/base/
H
A
D
pt_returns.cpp
127
size_t len =
callFrames_
.size();
in ToJson()
129
ASSERT(
callFrames_
[i] != nullptr);
in ToJson()
130
std::unique_ptr<PtJson> location =
callFrames_
[i]->ToJson();
in ToJson()
178
if (
callFrames_
) {
in ToJson()
180
size_t len =
callFrames_
->size();
in ToJson()
182
ASSERT(
callFrames_
.value()[i] != nullptr);
in ToJson()
183
std::unique_ptr<PtJson> location =
callFrames_
.value()[i]->ToJson();
in ToJson()
H
A
D
pt_events.cpp
38
size_t len =
callFrames_
.size();
in ToJson()
40
ASSERT(
callFrames_
[i] != nullptr);
in ToJson()
41
array->Push(
callFrames_
[i]->ToJson());
in ToJson()
102
size_t callFrameLength =
callFrames_
.size();
in ToJson()
104
ASSERT(
callFrames_
[i] != nullptr);
in ToJson()
105
callFrameArray->Push(
callFrames_
[i]->ToJson());
in ToJson()
H
A
D
pt_events.h
95
return &
callFrames_
;
in GetCallFrames()
100
callFrames_
= std::move(callFrames);
in SetCallFrames()
209
std::vector<std::unique_ptr<CallFrame>>
callFrames_
{};
285
return &
callFrames_
;
in GetCallFrames()
295
callFrames_
= std::move(callFrames);
in SetCallFrames()
310
std::vector<std::unique_ptr<CallFrame>>
callFrames_
{};
H
A
D
pt_returns.h
159
:
callFrames_
(std::move(callFrames))
in RestartFrameReturns()
169
std::vector<std::unique_ptr<CallFrame>>
callFrames_
{};
223
:
callFrames_
(std::move(callFrames)),
in SetScriptSourceReturns()
235
std::optional<std::vector<std::unique_ptr<CallFrame>>>
callFrames_
{};
/arkcompiler/toolchain/tooling/test/
H
A
D
debugger_events_test.cpp
90
auto
callFrames_
= std::vector<std::unique_ptr<CallFrame>>();
in HWTEST_F_L0()
local
100
callFrames_
.emplace_back(std::move(callFrame));
in HWTEST_F_L0()
102
paused.SetCallFrames(std::move(
callFrames_
))
in HWTEST_F_L0()
542
auto
callFrames_
= std::vector<std::unique_ptr<CallFrame>>();
in HWTEST_F_L0()
local
553
callFrames_
.emplace_back(std::move(callFrame));
in HWTEST_F_L0()
554
mixedStack.SetCallFrames(std::move(
callFrames_
));
in HWTEST_F_L0()
Completed in 6 milliseconds