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 265 BPFStackTable::BPFStackTable(BPFStackTable&& that) in BPFStackTable() function in ebpf::BPFStackTable 272 BPFStackTable::~BPFStackTable() { in ~BPFStackTable() 277 void BPFStackTable::free_symcache(int pid) { in free_symcache() 285 void BPFStackTable::clear_table_non_atomic() { in clear_table_non_atomic() 291 std::vector<uintptr_t> BPFStackTable::get_stack_addr(int stack_id) { in get_stack_addr() 303 std::vector<std::string> BPFStackTable::get_stack_symbol(int stack_id, in get_stack_symbol()
|
D | BPFTable.h | 374 class BPFStackTable : public BPFTableBase<int, stacktrace_t> { 376 BPFStackTable(const TableDesc& desc, bool use_debug_file, 378 BPFStackTable(BPFStackTable&& that); 379 ~BPFStackTable();
|
D | BPF.cc | 820 BPFStackTable BPF::get_stack_table(const std::string& name, bool use_debug_file, in get_stack_table() 824 return BPFStackTable(it->second, use_debug_file, check_debug_file_crc); in get_stack_table() 825 return BPFStackTable({}, use_debug_file, check_debug_file_crc); in get_stack_table()
|
D | BPF.h | 290 BPFStackTable get_stack_table(const std::string& name,
|