Searched refs:outputPath (Results 1 - 7 of 7) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/dfx/hprof/ |
H A D | heap_snapshot_tool_main.cpp | 43 std::string outputPath = argv[argc - 1];
in HeapSnapshotPcToolMain() local 53 DFXJSNApi::GenerateHeapSnapshotByBinFile(vm, filePath, outputPath);
in HeapSnapshotPcToolMain()
|
H A D | heap_profiler_interface.h | 57 virtual bool GenerateHeapSnapshot(std::string &inputFilePath, std::string &outputPath) = 0;
|
H A D | heap_profiler.cpp | 350 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 D | heap_profiler.h | 169 bool GenerateHeapSnapshot(std::string &inputFilePath, std::string &outputPath) override;
|
/arkcompiler/ets_runtime/ecmascript/napi/include/ |
H A D | dfx_jsnapi.h | 72 static void GenerateHeapSnapshotByBinFile(const EcmaVM *vm, std::string &inputFilePath, std::string &outputPath);
|
/arkcompiler/ets_runtime/ecmascript/dfx/hprof/tests/ |
H A D | heap_dump_test.cpp | 119 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 D | dfx_jsnapi.cpp | 217 [[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