Home
last modified time | relevance | path

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

/packages/modules/NetworkStack/common/netlinkclient/src/android/net/netlink/
DNetlinkConstants.java87 public static final short NLMSG_DONE = 3; // End of a dump field in NetlinkConstants
138 case NLMSG_DONE: return "NLMSG_DONE"; in stringForCtlMsgType()
DInetDiagMessage.java125 if (hdr.nlmsg_type == NetlinkConstants.NLMSG_DONE) { in lookupUidByFamily()
/packages/modules/NetworkStack/tests/unit/src/android/net/netlink/
DNetlinkConstantsTest.java28 import static android.net.netlink.NetlinkConstants.NLMSG_DONE;
119 assertEquals("NLMSG_DONE", stringForNlMsgType(NLMSG_DONE, family)); in testStringForNlMsgType_ControlMessage()
DNetlinkSocketTest.java85 if (hdr.nlmsg_type == NetlinkConstants.NLMSG_DONE) { in testBasicWorkingGetNeighborsQuery()
/packages/modules/NetworkStack/src/com/android/networkstack/netlink/
DTcpSocketTracker.java20 import static android.net.netlink.NetlinkConstants.NLMSG_DONE;
226 if (nlmsghdr.nlmsg_type == NLMSG_DONE) break; in pollSocketsInfo()