Searched refs:frag (Results 1 – 6 of 6) sorted by relevance
/AliOS-Things-master/components/ble_host/bt_host/port/core/ |
A D | buf.c | 502 for (frag = buf; (frag->flags & NET_BUF_FRAGS); frag = frag->frags) { in net_buf_get_debug() 511 frag->frags = NULL; in net_buf_get_debug() 567 for (frag = buf; (frag->flags & NET_BUF_FRAGS); frag = frag->frags) { in net_buf_slist_get() 579 frag->frags = NULL; in net_buf_slist_get() 779 frag->frags = NULL; in net_buf_frag_del_debug() 784 net_buf_unref(frag); in net_buf_frag_del_debug() 799 frag = src; in net_buf_linearize() 802 while (frag && offset >= frag->len) { in net_buf_linearize() 804 frag = frag->frags; in net_buf_linearize() 817 frag = frag->frags; in net_buf_linearize() [all …]
|
/AliOS-Things-master/components/ble_host/bt_host/host/ |
A D | l2cap.c | 1757 frag = *buf; in l2cap_chan_le_send_sdu() 1758 if (!frag->len && frag->frags) { in l2cap_chan_le_send_sdu() 1759 frag = frag->frags; in l2cap_chan_le_send_sdu() 1770 *buf = frag; in l2cap_chan_le_send_sdu() 1779 if (!frag->len) { in l2cap_chan_le_send_sdu() 1780 frag = net_buf_frag_del(NULL, frag); in l2cap_chan_le_send_sdu() 1789 *buf = frag; in l2cap_chan_le_send_sdu() 1797 net_buf_unref(frag); in l2cap_chan_le_send_sdu() 2063 if (!frag) { in l2cap_alloc_frag() 2067 BT_DBG("frag %p tailroom %zu", frag, net_buf_tailroom(frag)); in l2cap_alloc_frag() [all …]
|
A D | att.c | 724 struct net_buf *frag; in find_type_cb() local 752 net_buf_tailroom(frag)); in find_type_cb() 757 if (!frag) { in find_type_cb() 934 struct net_buf *frag; in att_chan_read() local 941 frag = net_buf_frag_last(buf); in att_chan_read() 948 net_buf_tailroom(frag)); in att_chan_read() 953 if (!frag) { in att_chan_read() 957 net_buf_frag_add(buf, frag); in att_chan_read() 960 net_buf_tailroom(frag)); in att_chan_read() 963 read = attr->read(conn, attr, frag->data + frag->len, len, in att_chan_read() [all …]
|
A D | conn.c | 1454 struct net_buf *frag; in create_frag() local 1457 frag = bt_conn_create_frag(0); in create_frag() 1460 net_buf_unref(frag); in create_frag() 1465 tx_data(frag)->tx = NULL; in create_frag() 1469 net_buf_add_mem(frag, buf->data, frag_len); in create_frag() 1472 return frag; in create_frag() 1477 struct net_buf *frag; in send_buf() local 1487 frag = create_frag(conn, buf); in send_buf() 1488 if (!frag) { in send_buf() 1501 frag = create_frag(conn, buf); in send_buf() [all …]
|
/AliOS-Things-master/components/ble_host/include/net/ |
A D | buf.h | 1841 void net_buf_frag_insert(struct net_buf *parent, struct net_buf *frag); 1857 struct net_buf *net_buf_frag_add(struct net_buf *head, struct net_buf *frag); 1870 struct net_buf *frag, 1875 struct net_buf *net_buf_frag_del(struct net_buf *parent, struct net_buf *frag);
|
/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/common/drivers/wlan/realtek/src/osdep/ |
A D | wireless.h | 1008 struct iw_param frag; /* Fragmentation threshold */ member
|
Completed in 23 milliseconds