Searched refs:getNextMapKey (Results 1 – 5 of 5) sorted by relevance
/aosp12/frameworks/libs/net/common/native/bpf_syscall_wrappers/include/ |
H A D | BpfSyscallWrappers.h | 81 inline int getNextMapKey(const BPF_FD_TYPE map_fd, const void* key, void* next_key) { in getNextMapKey() function 90 return getNextMapKey(map_fd, NULL, firstKey); in getFirstMapKey()
|
/aosp12/packages/modules/Connectivity/Tethering/jni/ |
H A D | com_android_networkstack_tethering_BpfMap.cpp | 116 ret = bpf::getNextMapKey(static_cast<int>(fd), nullptr, nextKeyRW.get()); in com_android_networkstack_tethering_BpfMap_getNextMapKey() 119 ret = bpf::getNextMapKey(static_cast<int>(fd), keyRO.get(), nextKeyRW.get()); in com_android_networkstack_tethering_BpfMap_getNextMapKey()
|
/aosp12/packages/modules/Connectivity/Tethering/src/com/android/networkstack/tethering/ |
H A D | BpfMap.java | 199 if (getNextMapKey(mMapFd, key, nextKey)) return nextKey; in getNextRawKey() 285 private native boolean getNextMapKey(int fd, byte[] key, byte[] nextKey) throws ErrnoException; in getNextMapKey() method in BpfMap
|
/aosp12/system/bpf/libbpf_android/include/bpf/ |
H A D | BpfMap.h | 74 if (getNextMapKey(mMapFd, &key, &nextKey)) { in getNextKey()
|
/aosp12/frameworks/native/libs/cputimeinstate/ |
H A D | cputimeinstate.cpp | 389 } while (prevKey = key, !getNextMapKey(gTisMapFd, &prevKey, &key)); in getUidsUpdatedCpuFreqTimes() 512 } while (prevKey = key, !getNextMapKey(gConcurrentMapFd, &prevKey, &key)); in getUidsUpdatedConcurrentTimes()
|