HomeSort by relevance Sort by last modified time
    Searched refs:get_hash_table (Results 1 - 9 of 9) sorted by null

  /external/bcc/tests/cc/
test_perf_event.cc 74 auto val = bpf.get_hash_table<int, uint64_t>("val");
80 bpf.get_hash_table<int, struct bpf_perf_event_value>("counter");
82 auto ret = bpf.get_hash_table<int, int>("ret");
124 auto pid = bpf.get_hash_table<int, uint64_t>("pid");
130 bpf.get_hash_table<int, struct bpf_perf_event_value>("counter");
132 auto ret = bpf.get_hash_table<int, int>("ret");
test_bpf_table.cc 135 auto t = bpf.get_hash_table<int, int>("myhash");
202 auto id = bpf.get_hash_table<int, int>("id");
test_hash_table.cc 33 ebpf::BPFHashTable<int, int> t = bpf.get_hash_table<int, int>("myhash");
38 bpf.get_hash_table<int, int>("myarray");
  /external/bcc/examples/cpp/
LLCStat.cc 100 auto refs = bpf.get_hash_table<event_t, uint64_t>("ref_count");
101 auto misses = bpf.get_hash_table<event_t, uint64_t>("miss_count");
CPUDistribution.cc 83 auto table = bpf.get_hash_table<int, uint64_t>("cpu_time");
RecordMySQLQuery.cc 84 auto table_handle = bpf.get_hash_table<query_probe_t, int>("queries");
UseExternalMap.cc 67 bpfp->get_hash_table<struct sched_switch_info, uint32_t>("counts");
TCPSendStack.cc 84 bpf.get_hash_table<stack_key_t, uint64_t>("counts").get_table_offline();
  /external/bcc/src/cc/api/
BPF.h 124 BPFHashTable<KeyType, ValueType> get_hash_table(const std::string& name) { function in class:ebpf::BPF

Completed in 311 milliseconds