| /Zephyr-latest/tests/bluetooth/hci/src/ | 
| D | main.c | 20 	zassert_mem_equal(bt_hci_err_to_str(BT_HCI_ERR_CONN_TIMEOUT),  in ZTEST()22 	zassert_mem_equal(bt_hci_err_to_str(BT_HCI_ERR_REMOTE_USER_TERM_CONN),  in ZTEST()
 25 	zassert_mem_equal(bt_hci_err_to_str(BT_HCI_ERR_TOO_EARLY),  in ZTEST()
 29 	zassert_mem_equal(bt_hci_err_to_str(0x2b),  in ZTEST()
 31 	zassert_mem_equal(bt_hci_err_to_str(0xFF),  in ZTEST()
 35 		zassert_not_null(bt_hci_err_to_str(i), ": %d", i);  in ZTEST()
 
 | 
| /Zephyr-latest/include/zephyr/bluetooth/ | 
| D | hci.h | 38 const char *bt_hci_err_to_str(uint8_t hci_err);40 static inline const char *bt_hci_err_to_str(uint8_t hci_err)
 
 | 
| /Zephyr-latest/samples/subsys/mgmt/mcumgr/smp_svr/src/ | 
| D | bluetooth.c | 45 		LOG_ERR("Connection failed, err 0x%02x %s", err, bt_hci_err_to_str(err));  in connected()54 	LOG_INF("Disconnected, reason 0x%02x %s", reason, bt_hci_err_to_str(reason));  in disconnected()
 
 | 
| /Zephyr-latest/samples/bluetooth/peripheral_dis/src/ | 
| D | main.c | 36 		printk("Connection failed, err 0x%02x %s\n", err, bt_hci_err_to_str(err));  in connected()44 	printk("Disconnected, reason 0x%02x %s\n", reason, bt_hci_err_to_str(reason));  in disconnected()
 
 | 
| /Zephyr-latest/samples/bluetooth/peripheral_ht/src/ | 
| D | main.c | 41 		printk("Connection failed, err 0x%02x %s\n", err, bt_hci_err_to_str(err));  in connected()49 	printk("Disconnected, reason 0x%02x %s\n", reason, bt_hci_err_to_str(reason));  in disconnected()
 
 | 
| /Zephyr-latest/samples/subsys/logging/ble_backend/src/ | 
| D | main.c | 41 		LOG_ERR("Connection failed, err 0x%02x %s", err, bt_hci_err_to_str(err));  in connected()49 	LOG_INF("Disconnected, reason 0x%02x %s", reason, bt_hci_err_to_str(reason));  in disconnected()
 
 | 
| /Zephyr-latest/samples/bluetooth/direction_finding_peripheral/src/ | 
| D | main.c | 79 		printk("Connection failed err 0x%02x %s\n", err, bt_hci_err_to_str(err));  in connected()89 	printk("Disconnected, reason 0x%02x %s\n", reason, bt_hci_err_to_str(reason));  in disconnected()
 
 | 
| /Zephyr-latest/samples/bluetooth/central/src/ | 
| D | main.c | 83 		printk("Failed to connect to %s %u %s\n", addr, err, bt_hci_err_to_str(err));  in connected()111 	printk("Disconnected: %s, reason 0x%02x %s\n", addr, reason, bt_hci_err_to_str(reason));  in disconnected()
 
 | 
| /Zephyr-latest/samples/bluetooth/peripheral_hids/src/ | 
| D | main.c | 46 		       err, bt_hci_err_to_str(err));  in connected()64 	       reason, bt_hci_err_to_str(reason));  in disconnected()
 
 | 
| /Zephyr-latest/samples/bluetooth/peripheral_sc_only/src/ | 
| D | main.c | 50 		printk("Failed to connect to %s %u %s\n", addr, err, bt_hci_err_to_str(err));  in connected()68 	       reason, bt_hci_err_to_str(reason));  in disconnected()
 
 | 
| /Zephyr-latest/samples/bluetooth/direct_adv/src/ | 
| D | main.c | 85 		printk("Connection failed err 0x%02x %s\n", err, bt_hci_err_to_str(err));  in connected()93 	printk("Disconnected, reason 0x%02x %s\n", reason, bt_hci_err_to_str(reason));  in disconnected()
 
 | 
| /Zephyr-latest/samples/bluetooth/iso_peripheral/src/ | 
| D | main.c | 36 		printk("Failed to connect to %s %u %s\n", addr, err, bt_hci_err_to_str(err));  in connected()50 	       reason, bt_hci_err_to_str(reason));  in disconnected()
 
 | 
| /Zephyr-latest/samples/bluetooth/peripheral_accept_list/src/ | 
| D | main.c | 85 		printk("Connection failed, err 0x%02x %s\n", err, bt_hci_err_to_str(err));  in connected()93 	printk("Disconnected, reason 0x%02x %s\n", reason, bt_hci_err_to_str(reason));  in disconnected()
 
 | 
| /Zephyr-latest/samples/bluetooth/iso_central/src/ | 
| D | main.c | 185 		printk("Failed to connect to %s %u %s\n", addr, err, bt_hci_err_to_str(err));  in connected()221 	printk("Disconnected: %s, reason 0x%02x %s\n", addr, reason, bt_hci_err_to_str(reason));  in disconnected()
 
 | 
| /Zephyr-latest/samples/bluetooth/mtu_update/central/src/ | 
| D | central_mtu_update.c | 197 		printk("Failed to connect to %s %u %s\n", addr, err, bt_hci_err_to_str(err));  in connected()236 	printk("Disconnected: %s, reason 0x%02x %s\n", addr, reason, bt_hci_err_to_str(reason));  in disconnected()
 
 | 
| /Zephyr-latest/samples/bluetooth/peripheral_hr/src/ | 
| D | main.c | 49 		printk("Connection failed, err 0x%02x %s\n", err, bt_hci_err_to_str(err));  in connected()59 	printk("Disconnected, reason 0x%02x %s\n", reason, bt_hci_err_to_str(reason));  in disconnected()
 
 | 
| /Zephyr-latest/samples/bluetooth/tmap_central/src/ | 
| D | main.c | 92 		printk("Failed to connect to %s %u %s\n", addr, err, bt_hci_err_to_str(err));  in connected()119 	printk("Disconnected: %s, reason 0x%02x %s\n", addr, reason, bt_hci_err_to_str(reason));  in disconnected()
 
 | 
| D | vcp_vol_ctlr.c | 89 		printk("Connection failed, err %d %s\n", err, bt_hci_err_to_str(err));  in connected()
 | 
| /Zephyr-latest/samples/bluetooth/tmap_peripheral/src/ | 
| D | main.c | 109 		printk("Failed to connect to %s %u %s\n", addr, err, bt_hci_err_to_str(err));  in connected()130 	printk("Disconnected: %s, reason 0x%02x %s\n", addr, reason, bt_hci_err_to_str(reason));  in disconnected()
 
 | 
| /Zephyr-latest/samples/bluetooth/periodic_sync_rsp/src/ | 
| D | main.c | 179 	printk("Connected, err 0x%02X %s\n", err, bt_hci_err_to_str(err));  in connected()195 	printk("Disconnected, reason 0x%02X %s\n", reason, bt_hci_err_to_str(reason));  in disconnected()
 
 | 
| /Zephyr-latest/samples/bluetooth/hci_pwr_ctrl/src/ | 
| D | main.c | 153 		printk("Connection failed, err 0x%02x %s\n", err, bt_hci_err_to_str(err));  in connected()184 	printk("Disconnected, reason 0x%02x %s\n", reason, bt_hci_err_to_str(reason));  in disconnected()
 
 | 
| /Zephyr-latest/samples/bluetooth/central_past/src/ | 
| D | main.c | 149 		printk("Failed to connect to %s %u %s\n", addr, err, bt_hci_err_to_str(err));  in connected()184 	printk("Disconnected: %s, reason 0x%02x %s\n", addr, reason, bt_hci_err_to_str(reason));  in disconnected()
 
 | 
| /Zephyr-latest/samples/bluetooth/encrypted_advertising/peripheral/src/ | 
| D | peripheral_ead.c | 191 		LOG_ERR("Failed to connect to %s %u %s", addr, err, bt_hci_err_to_str(err));  in connected()206 	LOG_DBG("Disconnected from %s, reason 0x%02x %s", addr, reason, bt_hci_err_to_str(reason));  in disconnected()
 
 | 
| /Zephyr-latest/samples/bluetooth/peripheral_identity/src/ | 
| D | peripheral_identity.c | 83 		printk("Connection failed, err 0x%02x %s\n", err, bt_hci_err_to_str(err));  in connected()103 	printk("Disconnected %s, reason %s(0x%02x)\n", addr, bt_hci_err_to_str(reason), reason);  in disconnected()
 
 | 
| /Zephyr-latest/samples/bluetooth/extended_adv/advertiser/src/ | 
| D | main.c | 55 	printk("Disconnected, reason 0x%02X %s\n", reason, bt_hci_err_to_str(reason));  in disconnected_cb()
 |