HomeSort by relevance Sort by last modified time
    Searched defs:FtraceProcfs (Results 1 - 2 of 2) sorted by null

  /external/perfetto/src/traced/probes/ftrace/
ftrace_procfs.h 28 class FtraceProcfs {
30 static std::unique_ptr<FtraceProcfs> Create(const std::string& root);
33 explicit FtraceProcfs(const std::string& root);
34 virtual ~FtraceProcfs();
ftrace_procfs.cc 48 if (FtraceProcfs::g_kmesg_fd != -1)
49 base::ignore_result(base::WriteAll(FtraceProcfs::g_kmesg_fd, s, strlen(s)));
68 int FtraceProcfs::g_kmesg_fd = -1; // Set by ProbesMain() in probes.cc .
71 std::unique_ptr<FtraceProcfs> FtraceProcfs::Create(const std::string& root) {
75 return std::unique_ptr<FtraceProcfs>(new FtraceProcfs(root));
78 FtraceProcfs::FtraceProcfs(const std::string& root) : root_(root) {}
79 FtraceProcfs::~FtraceProcfs() = default
    [all...]

Completed in 143 milliseconds