| /Zephyr-latest/tests/bsim/bluetooth/host/privacy/central/src/ | 
| D | main.c | 17 		.test_id = "central", 22 		.test_id = "central_connect_short_rpa_timeout", 27 		.test_id = "central_connect_fails_with_short_rpa_timeout", 33 		.test_id = "peripheral", 39 		.test_id = "periph_delayed_start_of_conn_adv",
  | 
| /Zephyr-latest/boards/native/nrf_bsim/common/ | 
| D | bstests_entry.c | 42 		if (test_def[idx].test_id != NULL) {  in bst_add_tests() 51 	while (test_def[idx].test_id != NULL) {  in bst_add_tests() 63 					  char *test_id)  in bst_test_find()  argument 68 		if (!strcmp(top->test_instance->test_id, test_id)) {  in bst_test_find() 111 			     top->test_instance->test_id,  in bst_print_testslist() 120 void bst_set_testapp_mode(char *test_id)  in bst_set_testapp_mode()  argument 128 	current_test = bst_test_find(test_list_top, test_id);  in bst_set_testapp_mode() 130 		bs_trace_error_line("test id %s doesn't exist\n", test_id);  in bst_set_testapp_mode() 179 	} else if (current_test->test_id) {  in bst_tick() 182 				    current_test->test_id);  in bst_tick()
  | 
| /Zephyr-latest/subsys/bluetooth/mesh/ | 
| D | health_cli.c | 34 	uint8_t   *test_id;  member 45 	uint8_t test_id;  in health_fault_status()  local 51 	test_id = net_buf_simple_pull_u8(buf);  in health_fault_status() 58 		    (test_id != *param->expect_test_id)) {  in health_fault_status() 66 		if (param->test_id) {  in health_fault_status() 67 			*param->test_id = test_id;  in health_fault_status() 85 		cli->fault_status(cli, ctx->addr, test_id, cid,  in health_fault_status() 97 	uint8_t test_id;  in health_current_status()  local 103 	test_id = net_buf_simple_pull_u8(buf);  in health_current_status() 106 	LOG_DBG("Test ID 0x%02x Company ID 0x%04x Fault Count %u", test_id, cid, buf->len);  in health_current_status() [all …] 
 | 
| D | health_srv.c | 38 	uint8_t *test_id;  in health_get_registered()  local 44 	test_id = net_buf_simple_add(msg, 1);  in health_get_registered() 51 		err = srv->cb->fault_get_reg(mod, company_id, test_id,  in health_get_registered() 56 			*test_id = HEALTH_TEST_STANDARD;  in health_get_registered() 62 		*test_id = HEALTH_TEST_STANDARD;  in health_get_registered() 71 	uint8_t *test_id, *company_ptr;  in health_get_current()  local 77 	test_id = net_buf_simple_add(msg, 1);  in health_get_current() 85 		err = srv->cb->fault_get_cur(mod, test_id, &company_id,  in health_get_current() 91 			*test_id = HEALTH_TEST_STANDARD;  in health_get_current() 100 		*test_id = HEALTH_TEST_STANDARD;  in health_get_current() [all …] 
 | 
| /Zephyr-latest/tests/bsim/bluetooth/host/security/security_changed_callback/src/ | 
| D | main.c | 16 		.test_id = "central", 20 		.test_id = "peripheral_unpair_in_sec_cb", 24 		.test_id = "peripheral_disconnect_in_sec_cb",
  | 
| /Zephyr-latest/tests/bsim/bluetooth/host/security/ccc_update/src/ | 
| D | main.c | 33 		.test_id = "central", 38 		.test_id = "bad_central", 43 		.test_id = "peripheral",
  | 
| /Zephyr-latest/include/zephyr/bluetooth/mesh/ | 
| D | health_cli.h | 80 			     uint8_t test_id, uint16_t cid, uint8_t *faults, 99 			       uint8_t test_id, uint16_t cid, uint8_t *faults, 154 				 uint16_t cid, uint8_t *test_id, uint8_t *faults, 180 				   uint16_t cid, uint8_t *test_id, uint8_t *faults, 217 				  uint16_t cid, uint8_t test_id, uint8_t *faults, 231 					uint16_t cid, uint8_t test_id);
  | 
| D | health_srv.h | 56 	int (*fault_get_cur)(const struct bt_mesh_model *model, uint8_t *test_id, 83 			     uint8_t *test_id, uint8_t *faults, 111 	int (*fault_test)(const struct bt_mesh_model *model, uint8_t test_id,
  | 
| /Zephyr-latest/tests/bsim/bluetooth/ll/multiple_id/src/ | 
| D | main.c | 182 		.test_id = "central", 189 		.test_id = "peripheral", 196 		.test_id = "central_multiple", 203 		.test_id = "peripheral_single", 210 		.test_id = "central_single", 217 		.test_id = "peripheral_multilink",
  | 
| /Zephyr-latest/subsys/bluetooth/mesh/shell/ | 
| D | health.c | 18 static void show_faults(const struct shell *sh, uint8_t test_id, uint16_t cid, uint8_t *faults,  in show_faults()  argument 24 		shell_print(sh, "Health Test ID 0x%02x Company ID 0x%04x: no faults\n", test_id,  in show_faults() 29 	shell_print(sh, "Health Test ID 0x%02x Company ID 0x%04x Fault Count %zu:\n", test_id, cid,  in show_faults() 48 	uint8_t test_id;  in cmd_fault_get()  local 60 	err = bt_mesh_health_cli_fault_get(cli, ctx.addr ? &ctx : NULL, cid, &test_id, faults,  in cmd_fault_get() 65 		show_faults(sh, test_id, cid, faults, fault_count);  in cmd_fault_get() 80 	uint8_t test_id;  in fault_clear()  local 94 		err = bt_mesh_health_cli_fault_clear(cli, ctx.addr ? &ctx : NULL, cid, &test_id,  in fault_clear() 99 			show_faults(sh, test_id, cid, faults, fault_count);  in fault_clear() 132 	uint8_t test_id;  in fault_test()  local [all …] 
 | 
| /Zephyr-latest/tests/bsim/bluetooth/host/privacy/peripheral/src/ | 
| D | main_rpa_expired.c | 14 		.test_id = "central_rpa_check", 18 		.test_id = "peripheral_rpa_expired",
  | 
| D | main_rpa_rotation.c | 14 		.test_id = "central", 18 		.test_id = "peripheral",
  | 
| /Zephyr-latest/tests/bsim/bluetooth/host/gatt/sc_indicate/src/ | 
| D | main.c | 15 		.test_id = "central", 19 		.test_id = "peripheral",
  | 
| /Zephyr-latest/tests/bsim/bluetooth/host/security/bond_per_connection/src/ | 
| D | main.c | 15 		.test_id = "central", 19 		.test_id = "peripheral",
  | 
| /Zephyr-latest/tests/bsim/bluetooth/host/privacy/legacy/src/ | 
| D | main.c | 14 		.test_id = "central", 18 		.test_id = "peripheral",
  | 
| /Zephyr-latest/tests/bsim/bluetooth/host/security/bond_overwrite_allowed/src/ | 
| D | main.c | 15 		.test_id = "central", 19 		.test_id = "peripheral",
  | 
| /Zephyr-latest/tests/bsim/bluetooth/host/security/bond_overwrite_denied/src/ | 
| D | main.c | 15 		.test_id = "central", 19 		.test_id = "peripheral",
  | 
| /Zephyr-latest/tests/bsim/bluetooth/host/id/settings/src/ | 
| D | main.c | 19 		.test_id = "dut1", 24 		.test_id = "dut2",
  | 
| /Zephyr-latest/tests/bluetooth/mesh/basic/src/ | 
| D | main.c | 18 static int fault_get_cur(const struct bt_mesh_model *model, uint8_t *test_id,  in fault_get_cur()  argument 25 	*test_id = 0x00;  in fault_get_cur() 34 			 uint8_t *test_id, uint8_t *faults, uint8_t *fault_count)  in fault_get_reg()  argument 42 	*test_id = 0x00;  in fault_get_reg() 67 static int fault_test(const struct bt_mesh_model *model, uint8_t test_id,  in fault_test()  argument
  | 
| /Zephyr-latest/tests/bsim/bluetooth/host/att/eatt/src/ | 
| D | main_lowres.c | 44 		.test_id = "peripheral_lowres", 49 		.test_id = "central_lowres",
  | 
| /Zephyr-latest/tests/bsim/bluetooth/host/l2cap/multilink_peripheral/src/ | 
| D | main.c | 27 		.test_id = "dut", 32 		.test_id = "central",
  | 
| /Zephyr-latest/tests/bsim/bluetooth/host/gatt/device_name/src/ | 
| D | main.c | 27 		.test_id = "server", 32 		.test_id = "client",
  | 
| /Zephyr-latest/tests/bsim/bluetooth/host/gatt/settings_clear/src/ | 
| D | main.c | 27 		.test_id = "server", 32 		.test_id = "client",
  | 
| /Zephyr-latest/tests/bsim/bluetooth/host/l2cap/einprogress/src/ | 
| D | main.c | 23 		.test_id = "l2cap/einprogress/dut", 28 		.test_id = "l2cap/einprogress/tester",
  | 
| /Zephyr-latest/tests/bsim/bluetooth/host/adv/encrypted/css_sample_data/src/ | 
| D | main.c | 16 		.test_id = "central", 22 		.test_id = "peripheral",
  |