Lines Matching full:time
224 u8_t time; in send_attention_status() local
226 time = k_delayed_work_remaining_get(&srv->attn_timer) / 1000; in send_attention_status()
227 BT_DBG("%u second%s", time, (time == 1) ? "" : "s"); in send_attention_status()
231 net_buf_simple_add_u8(msg, time); in send_attention_status()
253 u8_t time; in attention_set_unrel() local
255 time = net_buf_simple_pull_u8(buf); in attention_set_unrel()
257 BT_DBG("%u second%s", time, (time == 1) ? "" : "s"); in attention_set_unrel()
259 bt_mesh_attention(model, time); in attention_set_unrel()
411 void bt_mesh_attention(struct bt_mesh_model *model, u8_t time) in bt_mesh_attention() argument
428 if (time) { in bt_mesh_attention()
433 k_delayed_work_submit(&srv->attn_timer, time * 1000); in bt_mesh_attention()