Lines Matching refs:order
558 uint8_t order = media_proxy_sctrl_get_playing_order(); in read_playing_order() local
560 LOG_DBG("Playing order read: %d (0x%02x)", order, order); in read_playing_order()
568 return bt_gatt_attr_read(conn, attr, buf, len, offset, &order, sizeof(order)); in read_playing_order()
576 int8_t order; in write_playing_order() local
581 if (len != sizeof(order)) { in write_playing_order()
585 memcpy(&order, buf, len); in write_playing_order()
587 media_proxy_sctrl_set_playing_order(order); in write_playing_order()
589 LOG_DBG("Playing order write: %d", order); in write_playing_order()
1143 uint8_t order = media_proxy_sctrl_get_playing_order(); in notify_cb() local
1145 LOG_DBG("Notifying playing order: %d", order); in notify_cb()
1146 notify(BT_UUID_MCS_PLAYING_ORDER, &order, sizeof(order)); in notify_cb()
1291 void media_proxy_sctrl_playing_order_cb(uint8_t order) in media_proxy_sctrl_playing_order_cb() argument