Lines Matching refs:act
2070 struct ieee80211_p2p_send_action *act; in atheros_send_action() local
2073 act = os_zalloc(sizeof(*act) + data_len); in atheros_send_action()
2074 if (act == NULL) in atheros_send_action()
2076 act->freq = freq; in atheros_send_action()
2077 os_memcpy(act->dst_addr, dst, ETH_ALEN); in atheros_send_action()
2078 os_memcpy(act->src_addr, src, ETH_ALEN); in atheros_send_action()
2079 os_memcpy(act->bssid, bssid, ETH_ALEN); in atheros_send_action()
2080 os_memcpy(act + 1, data, data_len); in atheros_send_action()
2083 __func__, act->freq, wait, MAC2STR(act->dst_addr), in atheros_send_action()
2084 MAC2STR(act->src_addr), MAC2STR(act->bssid)); in atheros_send_action()
2085 wpa_hexdump(MSG_MSGDUMP, "athr: act", (u8 *) act, sizeof(*act)); in atheros_send_action()
2089 act, sizeof(*act) + data_len); in atheros_send_action()
2090 os_free(act); in atheros_send_action()