Searched defs:assoc (Results 1 - 12 of 12) sorted by relevance

/net/bluetooth/
H A Damp.h24 __u8 *assoc; member in struct:amp_ctrl
H A Da2mp.c391 BT_DBG("id %d status 0x%2.2x assoc len %zu", rsp->id, rsp->status,
400 u8 *assoc; local
402 assoc = kmemdup(rsp->amp_assoc, assoc_len, GFP_KERNEL);
403 if (!assoc) {
408 ctrl->assoc = assoc;
474 u8 *assoc; local
476 assoc = kmemdup(req->amp_assoc, assoc_len, GFP_KERNEL);
477 if (!assoc) {
482 ctrl->assoc
[all...]
H A Dhci_event.c789 struct amp_assoc *assoc = &hdev->loc_assoc; local
803 memcpy(assoc->data + assoc->offset, rp->frag, frag_len);
804 assoc->offset += frag_len;
812 memcpy(assoc->data + assoc->offset, rp->frag, rem_len);
813 assoc->len = assoc->offset + rem_len;
814 assoc->offset = 0;
/net/mac80211/
H A Daes_ccm.c25 struct scatterlist assoc, pt, ct[2]; local
35 sg_init_one(&assoc, &aad[2], be16_to_cpup((__be16 *)aad));
41 aead_request_set_assoc(aead_req, &assoc, assoc.length);
50 struct scatterlist assoc, pt, ct[2]; local
62 sg_init_one(&assoc, &aad[2], be16_to_cpup((__be16 *)aad));
68 aead_request_set_assoc(aead_req, &assoc, assoc.length);
H A Dtx.c277 bool assoc = false; local
309 assoc = test_sta_flag(tx->sta, WLAN_STA_ASSOC);
312 if (unlikely(!assoc &&
662 bool assoc = false; local
713 assoc = test_sta_flag(tx->sta, WLAN_STA_ASSOC);
719 if (WARN(test_bit(SCAN_SW_SCANNING, &tx->local->scanning) && assoc &&
H A Dmlme.c566 * than theirs, so restrict what we advertise in the assoc request.
1799 bss_conf->assoc = 1;
1881 sdata->vif.bss_conf.assoc = false;
1887 /* on the next assoc, re-program HT/VHT parameters */
2247 bool assoc)
2253 if (!assoc) {
2554 bool assoc)
2560 if (!assoc) {
2787 /* set AID and assoc capability,
3052 /* continue assoc proces
2246 ieee80211_destroy_auth_data(struct ieee80211_sub_if_data *sdata, bool assoc) argument
2553 ieee80211_destroy_assoc_data(struct ieee80211_sub_if_data *sdata, bool assoc) argument
3986 ieee80211_prep_connection(struct ieee80211_sub_if_data *sdata, struct cfg80211_bss *cbss, bool assoc) argument
[all...]
/net/sctp/
H A Dobjcnt.c49 SCTP_DBG_OBJCNT(assoc); variable
64 SCTP_DBG_OBJCNT_ENTRY(assoc),
H A Dproc.c157 static void sctp_seq_dump_remote_addrs(struct seq_file *seq, struct sctp_association *assoc) argument
163 primary = &assoc->peer.primary_addr;
165 list_for_each_entry_rcu(transport, &assoc->peer.transport_addr_list,
321 struct sctp_association *assoc; local
332 assoc = sctp_assoc(epb);
339 assoc, sk, sctp_sk(sk)->type, sk->sk_state,
340 assoc->state, hash,
341 assoc->assoc_id,
342 assoc->sndbuf_used,
343 atomic_read(&assoc
441 struct sctp_association *assoc; local
[all...]
H A Doutqueue.c1100 static void sctp_sack_update_unack_data(struct sctp_association *assoc, argument
1107 unack_data = assoc->next_tsn - assoc->ctsn_ack_point - 1;
1115 assoc->unack_data = unack_data;
1232 /* Update unack_data field in the assoc. */
1266 pr_debug("%s: cumulative tsn ack of assoc:%p is 0x%x, "
H A Dassociola.c309 SCTP_DBG_OBJCNT_INC(assoc);
426 SCTP_DBG_OBJCNT_DEC(assoc);
1060 void sctp_assoc_migrate(struct sctp_association *assoc, struct sock *newsk) argument
1063 struct sock *oldsk = assoc->base.sk;
1068 list_del_init(&assoc->asocs);
1075 sctp_endpoint_put(assoc->ep);
1076 sock_put(assoc->base.sk);
1079 assoc->ep = newsp->ep;
1080 sctp_endpoint_hold(assoc->ep);
1083 assoc
[all...]
H A Dsocket.c204 /* If this is not a UDP-style socket, assoc id should be ignored. */
234 /* Look up the transport from an address and an assoc id. If both address and
1887 * it with a default ttl from the assoc here.
5856 /* User must provide at least the assoc id */
7204 /* Populate the fields of the newsk from the oldsk and migrate the assoc
7208 struct sctp_association *assoc,
7262 if (event->asoc == assoc) {
7276 atomic_set(&sctp_sk(newsk)->pd_mode, assoc->ulpq.pd_mode);
7282 if (assoc->ulpq.pd_mode) {
7292 if (event->asoc == assoc) {
7207 sctp_sock_migrate(struct sock *oldsk, struct sock *newsk, struct sctp_association *assoc, sctp_socket_type_t type) argument
[all...]
/net/mac802154/
H A Dllsec.c665 struct scatterlist src, assoc[2], dst[2]; local
675 sg_init_table(assoc, 2);
676 sg_set_buf(&assoc[0], skb_mac_header(skb), skb->mac_len);
683 sg_set_buf(&assoc[1], data, 0);
685 sg_set_buf(&assoc[1], data, datalen);
697 aead_request_set_assoc(req, assoc, assoclen);
876 struct scatterlist src, assoc[2]; local
886 sg_init_table(assoc, 2);
887 sg_set_buf(&assoc[0], skb_mac_header(skb), skb->mac_len);
894 sg_set_buf(&assoc[
[all...]

Completed in 233 milliseconds