Home
last modified time | relevance | path

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

/developtools/smartperf_host/trace_streamer/src/trace_data/
Dtrace_data_cache.cpp506 int32_t ebpfFd = base::OpenFile(outputName, O_CREAT | O_RDWR, TS_PERMISSION_RW); in ExportEbpfReadableText() local
507 …TS_CHECK_TRUE(ebpfFd != -1, 1, "Failed to create file: %s, err:%s", outputName.c_str(), strerror(e… in ExportEbpfReadableText()
508 …std::unique_ptr<int32_t, std::function<void(int32_t *)>> fp(&ebpfFd, [](int32_t *fp) { close(*fp);… in ExportEbpfReadableText()
509 …TS_CHECK_TRUE(ftruncate(ebpfFd, 0) != -1, 1, "Failed to ftruncate file: %s, err:%s", outputName.c_… in ExportEbpfReadableText()
522 ExportEbpfFileSystemReadableText(ebpfFd, ebpfBufferLine, ebpfEventTypeMap); in ExportEbpfReadableText()
523 ExportEbpfPagedMemReadableText(ebpfFd, ebpfBufferLine, ebpfEventTypeMap); in ExportEbpfReadableText()
524 ExportEbpfBIOReadableText(ebpfFd, ebpfBufferLine, ebpfEventTypeMap); in ExportEbpfReadableText()