Home
last modified time | relevance | path

Searched refs:ptr_to_u64 (Results 1 – 2 of 2) sorted by relevance

/system/bpf/libbpf_android/
DBpfUtils.cpp95 attr.key = ptr_to_u64(key); in writeToMapEntry()
96 attr.value = ptr_to_u64(value); in writeToMapEntry()
106 attr.key = ptr_to_u64(key); in findMapEntry()
107 attr.value = ptr_to_u64(value); in findMapEntry()
116 attr.key = ptr_to_u64(key); in deleteMapEntry()
125 attr.key = ptr_to_u64(key); in getNextMapKey()
126 attr.next_key = ptr_to_u64(next_key); in getNextMapKey()
136 attr.next_key = ptr_to_u64(firstKey); in getFirstMapKey()
146 attr.insns = ptr_to_u64(bpf_insns.base()); in bpfProgLoad()
148 attr.license = ptr_to_u64((void*)license); in bpfProgLoad()
[all …]
/system/bpf/libbpf_android/include/bpf/
DBpfUtils.h36 #define ptr_to_u64(x) ((uint64_t)(uintptr_t)(x)) macro