Home
last modified time | relevance | path

Searched refs:outputPath (Results 1 - 7 of 7) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/dfx/hprof/
H A Dheap_snapshot_tool_main.cpp43 std::string outputPath = argv[argc - 1]; in HeapSnapshotPcToolMain() local
53 DFXJSNApi::GenerateHeapSnapshotByBinFile(vm, filePath, outputPath); in HeapSnapshotPcToolMain()
H A Dheap_profiler_interface.h57 virtual bool GenerateHeapSnapshot(std::string &inputFilePath, std::string &outputPath) = 0;
H A Dheap_profiler.cpp350 bool HeapProfiler::GenerateHeapSnapshot(std::string &inputFilePath, std::string &outputPath) in GenerateHeapSnapshot() argument
387 if (outputPath.empty()) { in GenerateHeapSnapshot()
388 outputPath = GenDumpFileName(dumpOption.dumpFormat); in GenerateHeapSnapshot()
389 } else if (outputPath.back() == '/') { in GenerateHeapSnapshot()
390 outputPath += GenDumpFileName(dumpOption.dumpFormat); in GenerateHeapSnapshot()
392 LOG_GC(INFO) << "ark GenerateHeapSnapshot output file=" << outputPath.c_str(); in GenerateHeapSnapshot()
393 FileStream newStream(outputPath); in GenerateHeapSnapshot()
H A Dheap_profiler.h169 bool GenerateHeapSnapshot(std::string &inputFilePath, std::string &outputPath) override;
/arkcompiler/ets_runtime/ecmascript/napi/include/
H A Ddfx_jsnapi.h72 static void GenerateHeapSnapshotByBinFile(const EcmaVM *vm, std::string &inputFilePath, std::string &outputPath);
/arkcompiler/ets_runtime/ecmascript/dfx/hprof/tests/
H A Dheap_dump_test.cpp119 bool DecodeRawHeapSnashot(std::string &inputPath, std::string &outputPath) in DecodeRawHeapSnashot() argument
122 fstream outputString(outputPath, std::ios::out); in DecodeRawHeapSnashot()
125 auto ret = heapProfile->GenerateHeapSnapshot(inputPath, outputPath); in DecodeRawHeapSnashot()
552 bool GenerateHeapSnapshot(std::string &inputFilePath, std::string &outputPath) override
554 return profiler_->GenerateHeapSnapshot(inputFilePath, outputPath);
/arkcompiler/ets_runtime/ecmascript/napi/
H A Ddfx_jsnapi.cpp217 [[maybe_unused]] std::string &outputPath) in GenerateHeapSnapshotByBinFile()
221 heapProfile->GenerateHeapSnapshot(inputFilePath, outputPath); in GenerateHeapSnapshotByBinFile()
215 GenerateHeapSnapshotByBinFile([[maybe_unused]] const EcmaVM *vm, [[maybe_unused]] std::string &inputFilePath, [[maybe_unused]] std::string &outputPath) GenerateHeapSnapshotByBinFile() argument

Completed in 8 milliseconds