Searched refs:bpf_update_elem (Results 1 – 7 of 7) sorted by relevance
/external/bcc/src/cc/ |
D | libbpf.h | 48 int bpf_update_elem(int fd, void *key, void *value, unsigned long long flags);
|
D | libbpf.c | 395 int bpf_update_elem(int fd, void *key, void *value, unsigned long long flags) in bpf_update_elem() function
|
/external/bcc/src/cc/includes/ |
D | libbpf.h | 48 int bpf_update_elem(int fd, void *key, void *value, unsigned long long flags);
|
/external/bcc/src/cc/api/ |
D | BPFTable.h | 67 return bpf_update_elem(desc.fd, nullptr, value, flags) >= 0; in push() 126 return bpf_update_elem(desc.fd, key, value, 0) >= 0; in update()
|
/external/bcc/src/python/bcc/ |
D | libbcc.py | 83 lib.bpf_update_elem.restype = ct.c_int 84 lib.bpf_update_elem.argtypes = [ct.c_int, ct.c_void_p, ct.c_void_p,
|
D | table.py | 375 res = lib.bpf_update_elem(self.map_fd, ct.byref(key), ct.byref(leaf), 0) 847 res = lib.bpf_update_elem(self.map_fd, ct.byref(key), ct.byref(leaf), 0) 1311 res = lib.bpf_update_elem(self.map_fd, None, ct.byref(leaf), flags)
|
/external/bcc/src/lua/bcc/ |
D | table.lua | 99 assert(libbcc.bpf_update_elem(self.map_fd, pkey, pvalue, 0) == 0, "could not update table")
|