Home
last modified time | relevance | path

Searched refs:NLMSG_DONE (Results 1 – 5 of 5) sorted by relevance

/packages/modules/Connectivity/staticlibs/device/com/android/net/module/util/netlink/
DNetlinkConstants.java106 public static final short NLMSG_DONE = 3; // End of a dump field in NetlinkConstants
185 case NLMSG_DONE: return "NLMSG_DONE"; in stringForCtlMsgType()
DNetlinkUtils.java34 import static com.android.net.module.util.netlink.NetlinkConstants.NLMSG_DONE;
365 if (nlMsg.getHeader().nlmsg_type == NLMSG_DONE) { in getAndProcessNetlinkDumpMessagesWithFd()
DInetDiagMessage.java215 if (hdr.nlmsg_type == NetlinkConstants.NLMSG_DONE) { in lookupUidByFamily()
/packages/modules/Connectivity/staticlibs/tests/unit/src/com/android/net/module/util/netlink/
DNetlinkConstantsTest.java32 import static com.android.net.module.util.netlink.NetlinkConstants.NLMSG_DONE;
122 assertEquals("NLMSG_DONE", stringForNlMsgType(NLMSG_DONE, family)); in testStringForNlMsgType_ControlMessage()
/packages/modules/NetworkStack/src/com/android/networkstack/netlink/
DTcpSocketTracker.java32 import static com.android.net.module.util.netlink.NetlinkConstants.NLMSG_DONE;
407 if (nlmsghdr.nlmsg_type == NLMSG_DONE) { in getLengthAndVerifyMsgHeader()