Home
last modified time | relevance | path

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

/external/bcc/src/cc/api/
DBPFTable.cc251 BPFStackTable::BPFStackTable(const TableDesc& desc, bool use_debug_file, in BPFStackTable() function in ebpf::BPFStackTable
263 BPFStackTable::BPFStackTable(BPFStackTable&& that) in BPFStackTable() function in ebpf::BPFStackTable
270 BPFStackTable::~BPFStackTable() { in ~BPFStackTable()
275 void BPFStackTable::clear_table_non_atomic() { in clear_table_non_atomic()
281 std::vector<uintptr_t> BPFStackTable::get_stack_addr(int stack_id) { in get_stack_addr()
293 std::vector<std::string> BPFStackTable::get_stack_symbol(int stack_id, in get_stack_symbol()
DBPFTable.h302 class BPFStackTable : public BPFTableBase<int, stacktrace_t> {
304 BPFStackTable(const TableDesc& desc, bool use_debug_file,
306 BPFStackTable(BPFStackTable&& that);
307 ~BPFStackTable();
DBPF.cc644 BPFStackTable BPF::get_stack_table(const std::string& name, bool use_debug_file, in get_stack_table()
648 return BPFStackTable(it->second, use_debug_file, check_debug_file_crc); in get_stack_table()
649 return BPFStackTable({}, use_debug_file, check_debug_file_crc); in get_stack_table()
DBPF.h146 BPFStackTable get_stack_table(const std::string& name,