Home
last modified time | relevance | path

Searched refs:_conn (Results 1 – 8 of 8) sorted by relevance

/Zephyr-latest/subsys/net/ip/
Dtcp_private.h24 #define tcp_slist(_conn, _slist, _op, _type, _link) \ argument
26 k_mutex_lock(&_conn->lock, K_FOREVER); \
32 k_mutex_unlock(&_conn->lock); \
61 #define tcp_pkt_alloc(_conn, _len) \ argument
67 (_conn)->iface, \
69 net_context_get_family((_conn)->context), \
81 #define tcp_rx_pkt_alloc(_conn, _len) \ argument
87 (_conn)->iface, \
89 net_context_get_family((_conn)->context), \
120 #define conn_seq(_conn, _req) \ argument
[all …]
/Zephyr-latest/tests/bluetooth/controller/common/include/
Dhelper_util.h19 #define lt_tx(_opcode, _conn, _param) lt_tx_real(__FILE__, __LINE__, _opcode, _conn, _param) argument
20 #define lt_tx_no_encode(_pdu, _conn, _param) \ argument
21 lt_tx_real_no_encode(__FILE__, __LINE__, _pdu, _conn, _param)
22 #define lt_rx(_opcode, _conn, _tx_ref, _param) \ argument
23 lt_rx_real(__FILE__, __LINE__, _opcode, _conn, _tx_ref, _param)
24 #define lt_rx_q_is_empty(_conn) lt_rx_q_is_empty_real(__FILE__, __LINE__, _conn) argument
/Zephyr-latest/tests/bluetooth/audio/mocks/include/
Dgatt_expects.h15 #define expect_bt_gatt_notify_cb_called_once(_conn, _uuid, _attr, _data, _len) \ argument
20 IF_NOT_EMPTY(_conn, ( \
21 zassert_equal_ptr(_conn, mock_bt_gatt_notify_cb_fake.arg0_val, \
/Zephyr-latest/tests/bluetooth/controller/ctrl_collision/src/
Dmain.c120 #define CHECK_PREF_PHY_STATE(_conn, _tx, _rx) \ argument
122 zassert_equal(_conn.phy_pref_rx, _rx, \
124 _conn.phy_pref_rx, _rx); \
125 zassert_equal(_conn.phy_pref_tx, _tx, \
127 _conn.phy_pref_tx, _tx); \
130 #define CHECK_CURRENT_PHY_STATE(_conn, _tx, _flags, _rx) \ argument
132 zassert_equal(_conn.lll.phy_rx, _rx, \
134 _conn.lll.phy_rx, _rx); \
135 zassert_equal(_conn.lll.phy_tx, _tx, \
137 _conn.lll.phy_tx, _tx); \
[all …]
/Zephyr-latest/tests/bluetooth/audio/ascs/include/
Dbap_unicast_server_expects.h15 #define expect_bt_bap_unicast_server_cb_config_called_once(_conn, _ep, _dir, _codec) \ argument
21 IF_NOT_EMPTY(_conn, ( \
22 zassert_equal_ptr(_conn, mock_bap_unicast_server_cb_config_fake.arg0_val, \
/Zephyr-latest/tests/bluetooth/controller/ctrl_phy_update/src/
Dmain.c82 #define CHECK_PREF_PHY_STATE(_conn, _tx, _rx) \ argument
84 zassert_equal(_conn.phy_pref_rx, _rx, \
86 _conn.phy_pref_rx, _rx); \
87 zassert_equal(_conn.phy_pref_tx, _tx, \
89 _conn.phy_pref_tx, _tx); \
92 #define CHECK_CURRENT_PHY_STATE(_conn, _tx, _flags, _rx) \ argument
94 zassert_equal(_conn.lll.phy_rx, _rx, \
96 _conn.lll.phy_rx, _rx); \
97 zassert_equal(_conn.lll.phy_tx, _tx, \
99 _conn.lll.phy_tx, _tx); \
[all …]
/Zephyr-latest/tests/bluetooth/controller/ctrl_encrypt/src/
Dmain.c61 #define CHECK_RX_PE_STATE(_conn, _pause, _enc) \ argument
63 zassert_equal(_conn.pause_rx_data, _pause, "Rx Data pause state is wrong.");\
64 zassert_equal(_conn.lll.enc_rx, _enc, "Rx Encryption state is wrong."); \
68 #define CHECK_TX_PE_STATE(_conn, _pause, _enc) \ argument
70 zassert_equal(_conn.tx_q.pause_data, _pause, "Tx Data pause state is wrong.");\
71 zassert_equal(_conn.lll.enc_tx, _enc, "Tx Encryption state is wrong."); \
79 #define CHECK_RX_CCM_STATE(_conn, _sk_be, _iv, _cnt, _dir) \ argument
81 zassert_mem_equal(_conn.lll.ccm_rx.key, _sk_be, sizeof(_sk_be), \
83 zassert_mem_equal(_conn.lll.ccm_rx.iv, _iv, sizeof(_iv), \
85 zassert_equal(_conn.lll.ccm_rx.counter, _cnt, "CCM Rx Counter is wrong"); \
[all …]
/Zephyr-latest/doc/releases/
Drelease-notes-2.1.rst532 * :github:`20660` - Bluetooth: host: bt\_conn\_create\_le sometimes fails to stop pre-scan before c…