Searched refs:bpf_update_elem (Results 1 – 7 of 7) sorted by relevance
/external/bcc/src/python/bcc/ |
D | libbcc.py | 76 lib.bpf_update_elem.restype = ct.c_int 77 lib.bpf_update_elem.argtypes = [ct.c_int, ct.c_void_p, ct.c_void_p,
|
D | table.py | 215 res = lib.bpf_update_elem(self.map_fd, ct.byref(key), ct.byref(leaf), 0) 450 res = lib.bpf_update_elem(self.map_fd, ct.byref(key), ct.byref(leaf), 0)
|
/external/bcc/src/cc/ |
D | libbpf.h | 37 int bpf_update_elem(int fd, void *key, void *value, unsigned long long flags);
|
D | libbpf.c | 225 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 | 37 int bpf_update_elem(int fd, void *key, void *value, unsigned long long flags);
|
/external/bcc/src/cc/api/ |
D | BPFTable.h | 83 return bpf_update_elem(desc.fd, key, value, 0) >= 0; in update()
|
/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")
|