HomeSort by relevance Sort by last modified time
    Searched refs:sock_cookie (Results 1 - 2 of 2) sorted by null

  /system/netd/libbpf/
BpfUtils.cpp 196 uint64_t sock_cookie; local
197 socklen_t cookie_len = sizeof(sock_cookie);
198 int res = getsockopt(sockFd, SOL_SOCKET, SO_COOKIE, &sock_cookie, &cookie_len);
206 return sock_cookie;
  /system/netd/server/
TrafficController.cpp 231 uint64_t sock_cookie = static_cast<uint64_t>(diagmsg.id.idiag_cookie[0]) |
234 mCookieTagMap.deleteValue(sock_cookie);
290 uint64_t sock_cookie = getSocketCookie(sockFd); local
291 if (sock_cookie == NONEXISTENT_COOKIE) return -errno;
299 Status res = mCookieTagMap.writeValue(sock_cookie, newKey, BPF_ANY);
312 uint64_t sock_cookie = getSocketCookie(sockFd); local
314 if (sock_cookie == NONEXISTENT_COOKIE) return -errno;
315 Status res = mCookieTagMap.deleteValue(sock_cookie);

Completed in 76 milliseconds