/Zephyr-Core-2.7.6/include/bluetooth/mesh/ |
D | health_cli.h | 46 size_t fault_count); 86 size_t *fault_count); 103 size_t *fault_count); 118 size_t *fault_count);
|
D | health_srv.h | 55 uint8_t *fault_count); 81 uint8_t *fault_count);
|
/Zephyr-Core-2.7.6/subsys/bluetooth/mesh/ |
D | health_cli.c | 35 size_t *fault_count; member 71 if (buf->len > *param->fault_count) { in health_fault_status() 74 *param->fault_count = buf->len; in health_fault_status() 77 memcpy(param->faults, buf->data, *param->fault_count); in health_fault_status() 330 size_t *fault_count) in bt_mesh_health_fault_test() argument 342 .fault_count = fault_count, in bt_mesh_health_fault_test() 377 size_t *fault_count) in bt_mesh_health_fault_clear() argument 389 .fault_count = fault_count, in bt_mesh_health_fault_clear() 423 size_t *fault_count) in bt_mesh_health_fault_get() argument 435 .fault_count = fault_count, in bt_mesh_health_fault_get()
|
D | health_srv.c | 49 uint8_t fault_count = net_buf_simple_tailroom(msg) - 4; in health_get_registered() local 54 &fault_count); in health_get_registered() 59 net_buf_simple_add(msg, fault_count); in health_get_registered() 74 uint8_t fault_count; in health_get_current() local 83 fault_count = net_buf_simple_tailroom(msg); in health_get_current() 88 &fault_count); in health_get_current() 93 fault_count = 0U; in health_get_current() 96 net_buf_simple_add(msg, fault_count); in health_get_current() 102 fault_count = 0U; in health_get_current() 105 return fault_count; in health_get_current()
|
D | shell.c | 65 uint16_t *company_id, uint8_t *faults, uint8_t *fault_count) in fault_get_cur() argument 72 get_faults(cur_faults, sizeof(cur_faults), faults, fault_count); in fault_get_cur() 78 uint8_t *test_id, uint8_t *faults, uint8_t *fault_count) in fault_get_reg() argument 90 get_faults(reg_faults, sizeof(reg_faults), faults, fault_count); in fault_get_reg() 136 static void show_faults(uint8_t test_id, uint16_t cid, uint8_t *faults, size_t fault_count) in show_faults() argument 140 if (!fault_count) { in show_faults() 147 "Count %zu:", test_id, cid, fault_count); in show_faults() 149 for (i = 0; i < fault_count; i++) { in show_faults() 156 size_t fault_count) in health_current_status() argument 159 show_faults(test_id, cid, faults, fault_count); in health_current_status() [all …]
|
/Zephyr-Core-2.7.6/tests/bluetooth/mesh/src/ |
D | main.c | 21 uint16_t *company_id, uint8_t *faults, uint8_t *fault_count) in fault_get_cur() argument 30 *fault_count = sizeof(reg_faults); in fault_get_cur() 36 uint8_t *test_id, uint8_t *faults, uint8_t *fault_count) in fault_get_reg() argument 50 *fault_count = sizeof(reg_faults); in fault_get_reg() 52 *fault_count = 0U; in fault_get_reg()
|
/Zephyr-Core-2.7.6/samples/bluetooth/mesh_provisioner/src/ |
D | main.c | 28 size_t fault_count) in health_current_status() argument 34 if (!fault_count) { in health_current_status() 41 test_id, cid, fault_count); in health_current_status() 43 for (i = 0; i < fault_count; i++) { in health_current_status()
|
/Zephyr-Core-2.7.6/tests/bluetooth/tester/src/ |
D | mesh.c | 174 uint16_t *company_id, uint8_t *faults, uint8_t *fault_count) in fault_get_cur() argument 181 get_faults(cur_faults, sizeof(cur_faults), faults, fault_count); in fault_get_cur() 187 uint8_t *test_id, uint8_t *faults, uint8_t *fault_count) in fault_get_reg() argument 197 get_faults(reg_faults, sizeof(reg_faults), faults, fault_count); in fault_get_reg() 243 static void show_faults(uint8_t test_id, uint16_t cid, uint8_t *faults, size_t fault_count) in show_faults() argument 247 if (!fault_count) { in show_faults() 254 test_id, cid, fault_count); in show_faults() 256 for (i = 0; i < fault_count; i++) { in show_faults() 263 size_t fault_count) in health_current_status() argument 266 show_faults(test_id, cid, faults, fault_count); in health_current_status() [all …]
|