Home
last modified time | relevance | path

Searched refs:cmd_set (Results 1 – 4 of 4) sorted by relevance

/hal_espressif-latest/components/bt/host/bluedroid/api/
Desp_avrc_api.c313 …t esp_avrc_tg_get_psth_cmd_filter(esp_avrc_psth_filter_t filter, esp_avrc_psth_bit_mask_t *cmd_set) in esp_avrc_tg_get_psth_cmd_filter() argument
320 cmd_set == NULL) { in esp_avrc_tg_get_psth_cmd_filter()
326 memcpy(cmd_set, allowed_cmd_set, sizeof(esp_avrc_psth_bit_mask_t)); in esp_avrc_tg_get_psth_cmd_filter()
329 memcpy(cmd_set, supported_cmd_set, sizeof(esp_avrc_psth_bit_mask_t)); in esp_avrc_tg_get_psth_cmd_filter()
336 …avrc_tg_set_psth_cmd_filter(esp_avrc_psth_filter_t filter, const esp_avrc_psth_bit_mask_t *cmd_set) in esp_avrc_tg_set_psth_cmd_filter() argument
342 cmd_set == NULL) { in esp_avrc_tg_set_psth_cmd_filter()
349 bool allowed = btc_avrc_tg_check_supported_command(cmd_set->bits); in esp_avrc_tg_set_psth_cmd_filter()
360 arg.set_psth_cmd = (uint16_t *)cmd_set->bits; in esp_avrc_tg_set_psth_cmd_filter()
/hal_espressif-latest/components/bt/host/bluedroid/api/include/api/
Desp_avrc_api.h613 … esp_avrc_tg_get_psth_cmd_filter(esp_avrc_psth_filter_t filter, esp_avrc_psth_bit_mask_t *cmd_set);
638 …vrc_tg_set_psth_cmd_filter(esp_avrc_psth_filter_t filter, const esp_avrc_psth_bit_mask_t *cmd_set);
/hal_espressif-latest/components/bt/host/bluedroid/btc/profile/std/include/
Dbtc_avrc.h175 bool btc_avrc_tg_check_supported_command(const uint16_t *cmd_set);
/hal_espressif-latest/components/bt/host/bluedroid/btc/profile/std/avrc/
Dbtc_avrc.c108 bool btc_avrc_tg_check_supported_command(const uint16_t *cmd_set) in btc_avrc_tg_check_supported_command() argument
110 if (cmd_set == NULL) { in btc_avrc_tg_check_supported_command()
117 if (cs_psth_allowed_cmd[i] != (cmd_set[i] | cs_psth_allowed_cmd[i])) { in btc_avrc_tg_check_supported_command()
224 static bool btc_avrc_tg_set_supported_command(const uint16_t *cmd_set) in btc_avrc_tg_set_supported_command() argument
230 if (!btc_avrc_tg_check_supported_command(cmd_set)) { in btc_avrc_tg_set_supported_command()
233 memcpy(s_psth_supported_cmd, cmd_set, sizeof(s_psth_supported_cmd)); in btc_avrc_tg_set_supported_command()