Home
last modified time | relevance | path

Searched refs:dumpFile (Results 1 – 4 of 4) sorted by relevance

/arkcompiler/runtime_core/static_core/runtime/tooling/
Dmemory_allocation_dumper.h39 …explicit MemoryAllocationDumper(const PandaString &dumpFile, const Runtime *runtime) : runtime_(ru… in MemoryAllocationDumper() argument
41 dumpstream_.open(dumpFile.c_str(), std::ios::out); in MemoryAllocationDumper()
/arkcompiler/runtime_core/static_core/assembler/
Dpandasm.cpp148 std::ofstream dumpFile; in DumpProgramInJson() local
149 dumpFile.open(scopesFile.GetValue()); in DumpProgramInJson()
151 if (!dumpFile) { in DumpProgramInJson()
155 dumpFile << program.JsonDump(); in DumpProgramInJson()
/arkcompiler/runtime_core/static_core/runtime/include/
Druntime.h200 int StartMemAllocDumper(const PandaString &dumpFile);
/arkcompiler/runtime_core/static_core/runtime/
Druntime.cpp933 int Runtime::StartMemAllocDumper(const PandaString &dumpFile) in StartMemAllocDumper() argument
937 …memAllocDumper_ = internalAllocator_->New<tooling::MemoryAllocationDumper>(dumpFile, Runtime::GetC… in StartMemAllocDumper()