Lines Matching refs:company_id

34 				  uint16_t company_id,  in health_get_registered()  argument
40 LOG_DBG("Company ID 0x%04x", company_id); in health_get_registered()
45 net_buf_simple_add_le16(msg, company_id); in health_get_registered()
51 err = srv->cb->fault_get_reg(mod, company_id, test_id, in health_get_registered()
72 uint16_t company_id; in health_get_current() local
78 company_ptr = net_buf_simple_add(msg, sizeof(company_id)); in health_get_current()
85 err = srv->cb->fault_get_cur(mod, test_id, &company_id, in health_get_current()
94 sys_put_le16(company_id, company_ptr); in health_get_current()
112 uint16_t company_id; in health_fault_get() local
114 company_id = net_buf_simple_pull_le16(buf); in health_fault_get()
116 LOG_DBG("company_id 0x%04x", company_id); in health_fault_get()
118 health_get_registered(model, company_id, &sdu); in health_fault_get()
132 uint16_t company_id; in health_fault_clear_unrel() local
134 company_id = net_buf_simple_pull_le16(buf); in health_fault_clear_unrel()
136 LOG_DBG("company_id 0x%04x", company_id); in health_fault_clear_unrel()
139 return srv->cb->fault_clear(model, company_id); in health_fault_clear_unrel()
151 uint16_t company_id; in health_fault_clear() local
153 company_id = net_buf_simple_pull_le16(buf); in health_fault_clear()
155 LOG_DBG("company_id 0x%04x", company_id); in health_fault_clear()
160 err = srv->cb->fault_clear(model, company_id); in health_fault_clear()
166 health_get_registered(model, company_id, &sdu); in health_fault_clear()
180 uint16_t company_id; in health_fault_test_unrel() local
184 company_id = net_buf_simple_pull_le16(buf); in health_fault_test_unrel()
186 LOG_DBG("test 0x%02x company 0x%04x", test_id, company_id); in health_fault_test_unrel()
189 return srv->cb->fault_test(model, test_id, company_id); in health_fault_test_unrel()
201 uint16_t company_id; in health_fault_test() local
207 company_id = net_buf_simple_pull_le16(buf); in health_fault_test()
209 LOG_DBG("test 0x%02x company 0x%04x", test_id, company_id); in health_fault_test()
214 err = srv->cb->fault_test(model, test_id, company_id); in health_fault_test()
221 health_get_registered(model, company_id, &sdu); in health_fault_test()