Home
last modified time | relevance | path

Searched refs:pub_addr (Results 1 – 5 of 5) sorted by relevance

/Zephyr-latest/subsys/bluetooth/controller/ll_sw/
Dll_addr.c38 static uint8_t pub_addr[BDADDR_SIZE]; variable
66 (void)memcpy(pub_addr, bdaddr, BDADDR_SIZE);
68 (void)memset(pub_addr, 0, BDADDR_SIZE);
85 return pub_addr;
102 (void)memcpy(pub_addr, addr, sizeof(pub_addr));
/Zephyr-latest/tests/bsim/bluetooth/mesh/src/
Dtest_heartbeat.c26 static uint16_t pub_addr = BT_MESH_ADDR_UNASSIGNED; variable
63 ASSERT_EQUAL(pub_addr, sub->dst); in sub_hb_recv_cb()
98 ASSERT_EQUAL(pub_addr, sub->dst); in sub_hb_end_cb()
114 ASSERT_EQUAL(pub_addr, pub->dst); in pub_hb_sent_cb()
141 .dst = pub_addr, in publish_common()
166 pub_addr = SUBSCRIBER_ADDR; in test_publish_unicast()
174 pub_addr = BT_MESH_ADDR_ALL_NODES; in test_publish_all()
183 bt_mesh_hb_sub_set(PUBLISHER_ADDR_START, pub_addr, SUBSCRIBE_PERIOD_SEC); in subscribe_commmon()
188 pub_addr = SUBSCRIBER_ADDR; in test_subscribe_unicast()
194 pub_addr = BT_MESH_ADDR_ALL_NODES; in test_subscribe_all()
/Zephyr-latest/subsys/bluetooth/mesh/
Dcfg_srv.c115 static uint8_t _mod_pub_set(const struct bt_mesh_model *model, uint16_t pub_addr, in _mod_pub_set() argument
131 if (pub_addr == BT_MESH_ADDR_UNASSIGNED) { in _mod_pub_set()
169 model->pub->addr = pub_addr; in _mod_pub_set()
655 uint16_t pub_addr, bool vnd, in send_mod_pub_status() argument
671 net_buf_simple_add_le16(&msg, pub_addr); in send_mod_pub_status()
696 uint16_t elem_addr, pub_addr = 0U; in mod_pub_get() local
736 pub_addr = mod->pub->addr; in mod_pub_get()
740 return send_mod_pub_status(model, ctx, elem_addr, pub_addr, vnd, mod, in mod_pub_get()
749 uint16_t elem_addr, pub_addr, pub_app_idx; in mod_pub_set() local
766 pub_addr = net_buf_simple_pull_le16(buf); in mod_pub_set()
[all …]
/Zephyr-latest/tests/bluetooth/tester/src/btp/
Dbtp_mesh.h273 uint16_t pub_addr; member
/Zephyr-latest/tests/bluetooth/tester/src/
Dbtp_mesh.c2650 pub.addr = sys_le16_to_cpu(cp->pub_addr); in config_mod_pub_set()