diff --git a/android/tester-gatt.c b/android/tester-gatt.c
index fed9a3c..eae49d1 100644
--- a/android/tester-gatt.c
+++ b/android/tester-gatt.c
schedule_action_verification(step);
}
-static void gatt_client_get_descriptor(void)
+static void gatt_client_get_descriptor_action(void)
{
struct test_data *data = tester_get_data();
struct step *current_data_step = queue_peek_head(data->steps);
schedule_action_verification(step);
}
-static void gatt_client_get_included(void)
+static void gatt_client_get_included_action(void)
{
struct test_data *data = tester_get_data();
struct step *current_data_step = queue_peek_head(data->steps);
&get_char_data_1),
CALLBACK_GATTC_GET_CHARACTERISTIC_CB(GATT_STATUS_SUCCESS,
CONN1_ID, &service_1, &characteristic_1, 4),
- ACTION_SUCCESS(gatt_client_get_descriptor, &get_desc_data_1),
+ ACTION_SUCCESS(gatt_client_get_descriptor_action,
+ &get_desc_data_1),
CALLBACK_GATTC_GET_DESCRIPTOR(GATT_STATUS_SUCCESS, CONN1_ID,
&service_1, &characteristic_1, &desc_1),
ACTION_SUCCESS(bluetooth_disable_action, NULL),
CALLBACK_GATTC_GET_CHARACTERISTIC_CB(GATT_STATUS_SUCCESS,
CONN1_ID, &service_1,
&characteristic_1, 4),
- ACTION_SUCCESS(gatt_client_get_descriptor, &get_desc_data_1),
+ ACTION_SUCCESS(gatt_client_get_descriptor_action,
+ &get_desc_data_1),
CALLBACK_GATTC_GET_DESCRIPTOR(GATT_STATUS_SUCCESS, CONN1_ID,
&service_1, &characteristic_1,
&desc_1),
- ACTION_SUCCESS(gatt_client_get_descriptor, &get_desc_data_2),
+ ACTION_SUCCESS(gatt_client_get_descriptor_action,
+ &get_desc_data_2),
CALLBACK_GATTC_GET_DESCRIPTOR(GATT_STATUS_SUCCESS, CONN1_ID,
&service_1, &characteristic_1,
&desc_2),
&get_char_data_1),
CALLBACK_GATTC_GET_CHARACTERISTIC_CB(GATT_STATUS_SUCCESS,
CONN1_ID, &service_1, &characteristic_1, 4),
- ACTION_SUCCESS(gatt_client_get_descriptor, &get_desc_data_1),
+ ACTION_SUCCESS(gatt_client_get_descriptor_action,
+ &get_desc_data_1),
CALLBACK_GATTC_GET_DESCRIPTOR(GATT_STATUS_FAILURE, CONN1_ID,
&service_1, &characteristic_1, NULL),
ACTION_SUCCESS(bluetooth_disable_action, NULL),
CONN1_ID, CLIENT1_ID),
ACTION_SUCCESS(gatt_client_search_services, &search_services_1),
CALLBACK_GATTC_SEARCH_COMPLETE(GATT_STATUS_SUCCESS, CONN1_ID),
- ACTION_SUCCESS(gatt_client_get_included, &get_incl_data_1),
+ ACTION_SUCCESS(gatt_client_get_included_action,
+ &get_incl_data_1),
CALLBACK_GATTC_GET_INCLUDED(GATT_STATUS_SUCCESS, CONN1_ID,
&service_1, &included_1),
ACTION_SUCCESS(bluetooth_disable_action, NULL),
CONN1_ID, CLIENT1_ID),
ACTION_SUCCESS(gatt_client_search_services, &search_services_1),
CALLBACK_GATTC_SEARCH_COMPLETE(GATT_STATUS_SUCCESS, CONN1_ID),
- ACTION_SUCCESS(gatt_client_get_included, &get_incl_data_1),
+ ACTION_SUCCESS(gatt_client_get_included_action,
+ &get_incl_data_1),
CALLBACK_GATTC_GET_INCLUDED(GATT_STATUS_SUCCESS, CONN1_ID,
&service_1, &included_2),
ACTION_SUCCESS(bluetooth_disable_action, NULL),
CONN1_ID, CLIENT1_ID),
ACTION_SUCCESS(gatt_client_search_services, &search_services_1),
CALLBACK_GATTC_SEARCH_COMPLETE(GATT_STATUS_SUCCESS, CONN1_ID),
- ACTION_SUCCESS(gatt_client_get_included, &get_incl_data_1),
+ ACTION_SUCCESS(gatt_client_get_included_action,
+ &get_incl_data_1),
CALLBACK_GATTC_GET_INCLUDED(GATT_STATUS_FAILURE, CONN1_ID,
&service_1, NULL),
ACTION_SUCCESS(bluetooth_disable_action, NULL),