Home
last modified time | relevance | path

Searched refs:stringTable_ (Results 1 – 12 of 12) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/dfx/hprof/
Dheap_profiler.h107 return const_cast<StringHashMap *>(&stringTable_); in GetEcmaStringTable()
130 StringHashMap stringTable_; variable
Dheap_snapshot.h404 : vm_(vm), stringTable_(stringTable), isVmMode_(isVmMode), isPrivate_(isPrivate), in HeapSnapshot()
496 return stringTable_; in GetEcmaStringTable()
527 StringHashMap *stringTable_ {nullptr};
Dheap_profiler.cpp94 HeapProfiler::HeapProfiler(const EcmaVM *vm) : vm_(vm), stringTable_(vm), chunk_(vm->GetNativeAreaA… in HeapProfiler()
Dheap_snapshot.cpp43 return stringTable_->GetString(as); in GetString()
102 stringTable_ = nullptr; in ~HeapSnapshot()
/arkcompiler/runtime_core/static_core/runtime/core/
Dcore_vm.h88 return stringTable_; in GetStringTable()
182 StringTable *stringTable_ {nullptr};
Dcore_vm.cpp89 stringTable_ = allocator->New<StringTable>(); in PandaCoreVM()
106 allocator->Delete(stringTable_); in ~PandaCoreVM()
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/
Dets_vm.h198 return stringTable_; in GetStringTable()
363 StringTable *stringTable_ {nullptr};
Dets_vm.cpp172 stringTable_ = allocator->New<StringTable>();
198 allocator->Delete(stringTable_); in ~PandaEtsVM()
/arkcompiler/ets_runtime/ecmascript/
Decma_vm.cpp167 : stringTable_(new EcmaStringTable(this)), in EcmaVM()
335 if (stringTable_ != nullptr) { in ~EcmaVM()
336 delete stringTable_; in ~EcmaVM()
337 stringTable_ = nullptr; in ~EcmaVM()
Decma_vm.h529 ASSERT(stringTable_ != nullptr); in GetEcmaStringTable()
530 return stringTable_; in GetEcmaStringTable()
612 EcmaStringTable *stringTable_; variable
/arkcompiler/runtime_core/static_core/compiler/aot/aot_builder/
Daot_builder.cpp202 aotSection->AppendData(stringTable_.data(), stringTable_.size()); in PrepareElfBuilder()
Delf_builder.h1157 auto pos = stringTable_.size(); in AddString()
1159 stringTable_.insert(stringTable_.end(), str.data(), str.data() + str.size() + 1); in AddString()
1192 …std::vector<char> stringTable_; // NOLINT(misc-non-private-member-variables-i… variable