Searched refs:BPFStackTable (Results 1 – 4 of 4) sorted by relevance
/external/bcc/src/cc/api/ |
D | BPFTable.cc | 251 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()
|
D | BPFTable.h | 302 class BPFStackTable : public BPFTableBase<int, stacktrace_t> { 304 BPFStackTable(const TableDesc& desc, bool use_debug_file, 306 BPFStackTable(BPFStackTable&& that); 307 ~BPFStackTable();
|
D | BPF.cc | 644 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()
|
D | BPF.h | 146 BPFStackTable get_stack_table(const std::string& name,
|