/aosp12/packages/modules/NetworkStack/common/netlinkclient/src/android/net/netlink/ |
H A D | NetlinkConstants.java | 86 public static final short NLMSG_ERROR = 2; // Error field in NetlinkConstants 137 case NLMSG_ERROR: return "NLMSG_ERROR"; in stringForCtlMsgType()
|
H A D | NetlinkMessage.java | 106 case NetlinkConstants.NLMSG_ERROR: in parseCtlMessage()
|
/aosp12/packages/modules/NetworkStack/tests/unit/src/android/net/netlink/ |
H A D | NetlinkConstantsTest.java | 29 import static android.net.netlink.NetlinkConstants.NLMSG_ERROR; 118 assertEquals("NLMSG_ERROR", stringForNlMsgType(NLMSG_ERROR, family)); in testStringForNlMsgType_ControlMessage()
|
H A D | NetlinkErrorMessageTest.java | 80 assertEquals(NetlinkConstants.NLMSG_ERROR, hdr.nlmsg_type); in testParseNlmErrorOk()
|
/aosp12/bionic/libc/bionic/ |
H A D | bionic_netlink.cpp | 83 if (hdr->nlmsg_type == NLMSG_ERROR) { in ReadResponses()
|
/aosp12/hardware/qcom/msm8994/kernel-headers/linux/ |
H A D | netlink.h | 99 #define NLMSG_ERROR 0x2 macro
|
/aosp12/hardware/interfaces/automotive/can/1.0/default/libnl++/protocols/common/ |
H A D | Error.cpp | 31 {NLMSG_ERROR, {"ERROR", MessageGenre::Ack}}, in Error()
|
/aosp12/hardware/qcom/msm8994/original-kernel-headers/linux/ |
H A D | netlink.h | 92 #define NLMSG_ERROR 0x2 /* Error */ macro
|
/aosp12/hardware/qcom/msm8996/kernel-headers/linux/ |
H A D | netlink.h | 99 #define NLMSG_ERROR 0x2 macro
|
/aosp12/hardware/qcom/msm8996/original-kernel-headers/linux/ |
H A D | netlink.h | 92 #define NLMSG_ERROR 0x2 /* Error */ macro
|
/aosp12/system/logging/logd/ |
H A D | libaudit.cpp | 43 if (rep.nlh.nlmsg_type == NLMSG_ERROR) { in get_ack()
|
/aosp12/bionic/libc/kernel/uapi/linux/ |
H A D | netlink.h | 88 #define NLMSG_ERROR 0x2 macro
|
/aosp12/system/netd/server/ |
H A D | NetlinkListener.cpp | 46 constexpr int kNetlinkMsgErrorType = (NFNL_SUBSYS_NONE << 8) | NLMSG_ERROR;
|
H A D | NetlinkCommands.cpp | 144 case NLMSG_ERROR: { in processNetlinkDump()
|
H A D | OffloadUtils.cpp | 152 if (resp.h.nlmsg_type != NLMSG_ERROR) { in sendAndProcessNetlinkResponse()
|
H A D | SockDiag.cpp | 76 } else if (bytesread == (ssize_t) sizeof(ack) && ack.h.nlmsg_type == NLMSG_ERROR) { in checkError()
|
/aosp12/hardware/interfaces/automotive/can/1.0/default/libnl++/ |
H A D | Socket.cpp | 112 const auto nlerr = receive<nlmsgerr>({NLMSG_ERROR}); in receiveAck()
|
/aosp12/system/connectivity/wificond/net/ |
H A D | netlink_manager.cpp | 333 if (response_or_error->GetMessageType() == NLMSG_ERROR) { in SendMessageAndGetSingleResponse() 367 if (type != NLMSG_ERROR) { in SendMessageAndGetAckOrError()
|
H A D | nl80211_packet.cpp | 80 if (GetMessageType() == NLMSG_ERROR) { in IsValid()
|
H A D | netlink_utils.cpp | 153 if (packet->GetMessageType() == NLMSG_ERROR) { in GetWiphyIndex() 202 if (packet->GetMessageType() == NLMSG_ERROR) { in GetInterfaces()
|
/aosp12/packages/modules/Connectivity/Tethering/jni/ |
H A D | com_android_networkstack_tethering_BpfUtils.cpp | 126 if (resp.h.nlmsg_type != NLMSG_ERROR) { in sendAndProcessNetlinkResponse()
|
/aosp12/system/connectivity/wificond/tests/ |
H A D | scan_utils_unittest.cpp | 72 nl_header->nlmsg_type = NLMSG_ERROR; in CreateControlMessageError()
|
H A D | netlink_utils_unittest.cpp | 101 nl_header->nlmsg_type = NLMSG_ERROR; in CreateControlMessageError()
|
/aosp12/system/connectivity/wificond/scanning/ |
H A D | scan_utils.cpp | 102 if (packet->GetMessageType() == NLMSG_ERROR) { in GetScanResult()
|
/aosp12/system/core/libnetutils/ |
H A D | ifc_utils.c | 356 if (!NLMSG_OK(nh, (unsigned) len) || nh->nlmsg_type != NLMSG_ERROR) { in ifc_act_on_address()
|