Home
last modified time | relevance | path

Searched refs:bpf_update_elem (Results 1 – 7 of 7) sorted by relevance

/external/bcc/src/python/bcc/
Dlibbcc.py76 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,
Dtable.py215 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/
Dlibbpf.h37 int bpf_update_elem(int fd, void *key, void *value, unsigned long long flags);
Dlibbpf.c225 int bpf_update_elem(int fd, void *key, void *value, unsigned long long flags) in bpf_update_elem() function
/external/bcc/src/cc/includes/
Dlibbpf.h37 int bpf_update_elem(int fd, void *key, void *value, unsigned long long flags);
/external/bcc/src/cc/api/
DBPFTable.h83 return bpf_update_elem(desc.fd, key, value, 0) >= 0; in update()
/external/bcc/src/lua/bcc/
Dtable.lua99 assert(libbcc.bpf_update_elem(self.map_fd, pkey, pvalue, 0) == 0, "could not update table")