Searched refs:nl_msg (Results 1 – 9 of 9) sorted by relevance
/device/generic/goldfish/network/wifi_forwarder/ |
D | netlink_socket.h | 22 struct nl_msg; 41 Result setOnMsgInCallback(int (*callback)(struct nl_msg*, void*), 43 Result setOnMsgOutCallback(int (*callback)(struct nl_msg*, void*), 45 Result setOnSeqCheckCallback(int (*callback)(struct nl_msg*, void*), 47 Result setOnAckCallback(int (*callback)(struct nl_msg*, void*),
|
D | local_connection.h | 58 static int staticOnMessage(struct nl_msg* msg, void* context); 59 static int staticOnAck(struct nl_msg* msg, void* context); 63 int onMessage(struct nl_msg* msg); 64 int onFrame(struct nl_msg* msg); 67 int onAck(struct nl_msg* msg);
|
D | netlink_socket.cpp | 61 Result NetlinkSocket::setOnMsgInCallback(int (*callback)(struct nl_msg*, void*), in setOnMsgInCallback() argument 69 Result NetlinkSocket::setOnMsgOutCallback(int (*callback)(struct nl_msg*, in setOnMsgOutCallback() argument 78 Result NetlinkSocket::setOnSeqCheckCallback(int (*callback)(struct nl_msg*, in setOnSeqCheckCallback() argument 88 Result NetlinkSocket::setOnAckCallback(int (*callback)(struct nl_msg*, void*), in setOnAckCallback() argument
|
D | local_connection.cpp | 39 static uint32_t getSeqNum(struct nl_msg* msg) { in getSeqNum() 43 static int onSent(struct nl_msg* , void*) { in onSent() argument 47 static int onSeqCheck(struct nl_msg* msg, void*) { in onSeqCheck() 239 int LocalConnection::staticOnMessage(struct nl_msg* msg, void* context) { in staticOnMessage() 247 int LocalConnection::staticOnAck(struct nl_msg* msg, void* context) { in staticOnAck() 265 int LocalConnection::onMessage(struct nl_msg* msg) { in onMessage() 276 int LocalConnection::onFrame(struct nl_msg* msg) { in onFrame() 329 int LocalConnection::onAck(struct nl_msg* msg) { in onAck()
|
D | netlink_message.h | 51 struct nl_msg* get() { return mMessage; } in get() 57 struct nl_msg* mMessage = nullptr;
|
/device/linaro/poplar/wifi/wifi_hal/ |
D | cpp_bindings.h | 28 struct nl_msg *mMsg; 33 WifiEvent(nl_msg *msg) { in WifiEvent() 155 struct nl_msg *mMsg; 181 nl_msg *getMessage() { in getMessage() 349 static int response_handler(struct nl_msg *msg, void *arg); 351 static int event_handler(struct nl_msg *msg, void *arg); 354 static int valid_handler(struct nl_msg *msg, void *arg); 356 static int ack_handler(struct nl_msg *msg, void *arg); 358 static int finish_handler(struct nl_msg *msg, void *arg);
|
D | cpp_bindings.cpp | 595 static int no_seq_check(struct nl_msg *msg, void *arg) in no_seq_check() 693 int WifiCommand::response_handler(struct nl_msg *msg, void *arg) { in response_handler() 707 int WifiCommand::event_handler(struct nl_msg *msg, void *arg) { in event_handler() 723 int WifiCommand::valid_handler(struct nl_msg *msg, void *arg) { in valid_handler() 730 int WifiCommand::ack_handler(struct nl_msg *msg, void *arg) { in ack_handler() 737 int WifiCommand::finish_handler(struct nl_msg *msg, void *arg) { in finish_handler()
|
D | wifi_hal.cpp | 74 static int internal_no_seq_check(nl_msg *msg, void *arg); 75 static int internal_valid_message_handler(nl_msg *msg, void *arg); 515 static int internal_no_seq_check(struct nl_msg *msg, void *arg) in internal_no_seq_check() 520 static int internal_valid_message_handler(nl_msg *msg, void *arg) in internal_valid_message_handler()
|
/device/generic/goldfish/wifi/mac80211_create_radios/ |
D | main.cpp | 69 void operator()(struct nl_msg* x) const { nlmsg_free(x); } in operator ()() 91 std::unique_ptr<struct nl_msg, nl_msg_deleter> createNlMessage( in createNlMessage() 94 std::unique_ptr<struct nl_msg, nl_msg_deleter> msg(nlmsg_alloc()); in createNlMessage() 104 std::unique_ptr<struct nl_msg, nl_msg_deleter> 106 std::unique_ptr<struct nl_msg, nl_msg_deleter> msg = in buildCreateRadioMessage() 130 std::unique_ptr<struct nl_msg, nl_msg_deleter> msg = in createRadios()
|