#include "bt-dpm.h"
#ifdef TIZEN_DPM_VCONF_ENABLE
-BT_EXPORT_API int bluetooth_dpm_is_bluetooth_mode_allowed(void)
+BT_EXPORT_API int bluetooth_dpm_is_mode_allowed(void)
{
int value;
/* check VCONFKEY_BT_STATUS */
{
bt_dpm_allow_t mode;
- bluetooth_dpm_get_allow_bluetooth_mode(&mode);
+ bluetooth_dpm_get_allow_mode(&mode);
return (mode == BLUETOOTH_DPM_BT_RESTRICTED) ? BT_DPM_RESTRICTED : BT_DPM_ALLOWED;
}
{
bt_dpm_allow_t mode;
- bluetooth_dpm_get_allow_bluetooth_mode(&mode);
+ bluetooth_dpm_get_allow_mode(&mode);
return (mode == BLUETOOTH_DPM_HANDSFREE_ONLY ? BT_DPM_RESTRICTED : BT_DPM_ALLOWED);
}
{
bt_dpm_status_t dpm_status = BLUETOOTH_DPM_ALLOWED;
- bluetooth_dpm_get_bluetooth_pairing_state(&dpm_status);
+ bluetooth_dpm_get_pairing_state(&dpm_status);
return (dpm_status == BLUETOOTH_DPM_RESTRICTED ? BT_DPM_RESTRICTED : BT_DPM_ALLOWED);
}
{
bt_dpm_status_t dpm_status = BLUETOOTH_DPM_ALLOWED;
- bluetooth_dpm_get_bluetooth_desktop_connectivity_state(&dpm_status);
+ bluetooth_dpm_get_desktop_connectivity_state(&dpm_status);
return (dpm_status == BLUETOOTH_DPM_RESTRICTED ? BT_DPM_RESTRICTED : BT_DPM_ALLOWED);
}
{
bt_dpm_status_t dpm_status = BLUETOOTH_DPM_ALLOWED;
- bluetooth_dpm_get_bluetooth_desktop_connectivity_state(&dpm_status);
+ bluetooth_dpm_get_desktop_connectivity_state(&dpm_status);
return (dpm_status == BLUETOOTH_DPM_RESTRICTED ? BT_DPM_RESTRICTED : BT_DPM_ALLOWED);
}
{
bt_dpm_status_t dpm_status = BLUETOOTH_DPM_ALLOWED;
- bluetooth_dpm_get_bluetooth_limited_discoverable_state(&dpm_status);
+ bluetooth_dpm_get_limited_discoverable_state(&dpm_status);
return (dpm_status == BLUETOOTH_DPM_RESTRICTED ? BT_DPM_RESTRICTED : BT_DPM_ALLOWED);
}
_bt_convert_addr_type_to_string(device_address,
(unsigned char *)address->addr);
- ret = bluetooth_dpm_get_bluetooth_devices_from_blacklist(&dev_list);
+ ret = bluetooth_dpm_get_devices_from_blacklist(&dev_list);
if (ret == BLUETOOTH_DPM_RESULT_SUCCESS) {
int i = 0;
for (i = 0; i < dev_list.count; i++) {
int ret = BLUETOOTH_DPM_RESULT_SUCCESS;
retv_if(!uuid, bt_dpm_status);
- ret = bluetooth_dpm_get_bluetooth_uuids_from_blacklist(&uuid_list);
+ ret = bluetooth_dpm_get_uuids_from_blacklist(&uuid_list);
if (ret == BLUETOOTH_DPM_RESULT_SUCCESS) {
int i = 0;
for (i = 0; i < uuid_list.count; i++) {
if (g_strcmp0(BT_OPP_UUID, uuid) == 0) {
bt_dpm_status_t dpm_status = BLUETOOTH_DPM_ALLOWED;
- bluetooth_dpm_get_bluetooth_data_transfer_state(&dpm_status);
+ bluetooth_dpm_get_data_transfer_state(&dpm_status);
return (dpm_status == BLUETOOTH_DPM_RESTRICTED ? BT_DPM_RESTRICTED : BT_DPM_ALLOWED);
}
dpm_profile = BLUETOOTH_DPM_POLICY_PBAP_PROFILE_STATE;
if (dpm_profile != BLUETOOTH_DPM_PROFILE_NONE) {
- ret = bluetooth_dpm_get_bluetooth_profile_state(dpm_profile, &dpm_status);
+ ret = bluetooth_dpm_get_profile_state(dpm_profile, &dpm_status);
return (dpm_status == BLUETOOTH_DPM_RESTRICTED ? BT_DPM_RESTRICTED : BT_DPM_ALLOWED);
}
/* -- check DPM profile restriction -- */
return dpm_status;
}
- bluetooth_dpm_get_bluetooth_data_transfer_state(&dpm_value);
+ bluetooth_dpm_get_data_transfer_state(&dpm_value);
return (dpm_value == BLUETOOTH_DPM_RESTRICTED ? BT_DPM_RESTRICTED : BT_DPM_ALLOWED);
}
return status;
}
-BT_EXPORT_API int bluetooth_dpm_set_allow_bluetooth_mode(bt_dpm_allow_t value)
+BT_EXPORT_API int bluetooth_dpm_set_allow_mode(bt_dpm_allow_t value)
{
int result = BLUETOOTH_DPM_RESULT_SUCCESS;
#ifdef TIZEN_DPM_VCONF_ENABLE
}
-BT_EXPORT_API int bluetooth_dpm_get_allow_bluetooth_mode(bt_dpm_allow_t *value)
+BT_EXPORT_API int bluetooth_dpm_get_allow_mode(bt_dpm_allow_t *value)
{
int result;
#ifdef TIZEN_DPM_VCONF_ENABLE
- *value = bluetooth_dpm_is_bluetooth_mode_allowed();
+ *value = bluetooth_dpm_is_mode_allowed();
return BLUETOOTH_DPM_RESULT_SUCCESS;
#else
BT_CHECK_ENABLED_ANY(return);
}
-BT_EXPORT_API int bluetooth_dpm_activate_bluetooth_device_restriction(bt_dpm_status_t value)
+BT_EXPORT_API int bluetooth_dpm_activate_device_restriction(bt_dpm_status_t value)
{
int result;
}
-BT_EXPORT_API int bluetooth_dpm_is_bluetooth_device_restriction_active(bt_dpm_status_t *value)
+BT_EXPORT_API int bluetooth_dpm_is_device_restriction_active(bt_dpm_status_t *value)
{
int result;
}
-BT_EXPORT_API int bluetooth_dpm_activate_bluetoooth_uuid_restriction(bt_dpm_status_t value)
+BT_EXPORT_API int bluetooth_dpm_activate_uuid_restriction(bt_dpm_status_t value)
{
int result;
}
-BT_EXPORT_API int bluetooth_dpm_is_bluetooth_uuid_restriction_active(bt_dpm_status_t *value)
+BT_EXPORT_API int bluetooth_dpm_is_uuid_restriction_active(bt_dpm_status_t *value)
{
int result;
}
-BT_EXPORT_API int bluetooth_dpm_add_bluetooth_devices_to_blacklist(const bluetooth_device_address_t *device_address)
+BT_EXPORT_API int bluetooth_dpm_add_devices_to_blacklist(const bluetooth_device_address_t *device_address)
{
int result;
}
-BT_EXPORT_API int bluetooth_dpm_add_bluetooth_devices_to_whitelist(const bluetooth_device_address_t *device_address)
+BT_EXPORT_API int bluetooth_dpm_add_devices_to_whitelist(const bluetooth_device_address_t *device_address)
{
int result;
}
-BT_EXPORT_API int bluetooth_dpm_add_bluetooth_uuids_to_blacklist(const char *service_uuid)
+BT_EXPORT_API int bluetooth_dpm_add_uuids_to_blacklist(const char *service_uuid)
{
int result;
char uuid[BLUETOOTH_UUID_STRING_MAX];
}
-BT_EXPORT_API int bluetooth_dpm_add_bluetooth_uuids_to_whitelist(const char *service_uuid)
+BT_EXPORT_API int bluetooth_dpm_add_uuids_to_whitelist(const char *service_uuid)
{
int result;
char uuid[BLUETOOTH_UUID_STRING_MAX];
}
-BT_EXPORT_API int bluetooth_dpm_clear_bluetooth_devices_from_blacklist(void)
+BT_EXPORT_API int bluetooth_dpm_clear_devices_from_blacklist(void)
{
int result;
}
-BT_EXPORT_API int bluetooth_dpm_clear_bluetooth_devices_from_whitelist(void)
+BT_EXPORT_API int bluetooth_dpm_clear_devices_from_whitelist(void)
{
int result;
}
-BT_EXPORT_API int bluetooth_dpm_clear_bluetooth_uuids_from_blacklist(void)
+BT_EXPORT_API int bluetooth_dpm_clear_uuids_from_blacklist(void)
{
int result;
}
-BT_EXPORT_API int bluetooth_dpm_clear_bluetooth_uuids_from_whitelist(void)
+BT_EXPORT_API int bluetooth_dpm_clear_uuids_from_whitelist(void)
{
int result;
}
}
-BT_EXPORT_API int bluetooth_dpm_get_bluetooth_devices_from_blacklist(bt_dpm_device_list_t *device_list)
+BT_EXPORT_API int bluetooth_dpm_get_devices_from_blacklist(bt_dpm_device_list_t *device_list)
{
int result;
bt_dpm_device_list_t *devices = NULL;
return result;
}
-BT_EXPORT_API int bluetooth_dpm_get_bluetooth_devices_from_whitelist(bt_dpm_device_list_t *device_list)
+BT_EXPORT_API int bluetooth_dpm_get_devices_from_whitelist(bt_dpm_device_list_t *device_list)
{
int result;
bt_dpm_device_list_t *devices = NULL;
return result;
}
-BT_EXPORT_API int bluetooth_dpm_get_bluetooth_uuids_from_blacklist(bt_dpm_uuids_list_t *uuid_list)
+BT_EXPORT_API int bluetooth_dpm_get_uuids_from_blacklist(bt_dpm_uuids_list_t *uuid_list)
{
int result;
bt_dpm_uuids_list_t *uuids;
return result;
}
-BT_EXPORT_API int bluetooth_dpm_get_bluetooth_uuids_from_whitelist(bt_dpm_uuids_list_t *uuid_list)
+BT_EXPORT_API int bluetooth_dpm_get_uuids_from_whitelist(bt_dpm_uuids_list_t *uuid_list)
{
int result;
bt_dpm_uuids_list_t *uuids;
return result;
}
-BT_EXPORT_API int bluetooth_dpm_remove_bluetooth_device_from_whitelist(const bluetooth_device_address_t *device_address)
+BT_EXPORT_API int bluetooth_dpm_remove_device_from_whitelist(const bluetooth_device_address_t *device_address)
{
int result;
return result;
}
-BT_EXPORT_API int bluetooth_dpm_remove_bluetooth_device_from_blacklist(const bluetooth_device_address_t *device_address)
+BT_EXPORT_API int bluetooth_dpm_remove_device_from_blacklist(const bluetooth_device_address_t *device_address)
{
int result;
return result;
}
-BT_EXPORT_API int bluetooth_dpm_remove_bluetooth_uuid_from_whitelist(const char *service_uuid)
+BT_EXPORT_API int bluetooth_dpm_remove_uuid_from_whitelist(const char *service_uuid)
{
int result;
char uuid[BLUETOOTH_UUID_STRING_MAX];
return result;
}
-BT_EXPORT_API int bluetooth_dpm_remove_bluetooth_uuid_from_blacklist(const char *service_uuid)
+BT_EXPORT_API int bluetooth_dpm_remove_uuid_from_blacklist(const char *service_uuid)
{
int result;
char uuid[BLUETOOTH_UUID_STRING_MAX];
}
-BT_EXPORT_API int bluetooth_dpm_set_allow_bluetooth_outgoing_call(bt_dpm_status_t value)
+BT_EXPORT_API int bluetooth_dpm_set_allow_outgoing_call(bt_dpm_status_t value)
{
int result;
return result;
}
-BT_EXPORT_API int bluetooth_dpm_get_allow_bluetooth_outgoing_call(bt_dpm_status_t *value)
+BT_EXPORT_API int bluetooth_dpm_get_allow_outgoing_call(bt_dpm_status_t *value)
{
int result;
return result;
}
-BT_EXPORT_API int bluetooth_dpm_set_bluetooth_pairing_state(bt_dpm_status_t value)
+BT_EXPORT_API int bluetooth_dpm_set_pairing_state(bt_dpm_status_t value)
{
int result;
return result;
}
-BT_EXPORT_API int bluetooth_dpm_get_bluetooth_pairing_state(bt_dpm_status_t *value)
+BT_EXPORT_API int bluetooth_dpm_get_pairing_state(bt_dpm_status_t *value)
{
int result;
return result;
}
-BT_EXPORT_API int bluetooth_dpm_set_bluetooth_profile_state(bt_dpm_profile_t profile, bt_dpm_status_t value)
+BT_EXPORT_API int bluetooth_dpm_set_profile_state(bt_dpm_profile_t profile, bt_dpm_status_t value)
{
int result;
return result;
}
-BT_EXPORT_API int bluetooth_dpm_get_bluetooth_profile_state(bt_dpm_profile_t profile, bt_dpm_status_t *value)
+BT_EXPORT_API int bluetooth_dpm_get_profile_state(bt_dpm_profile_t profile, bt_dpm_status_t *value)
{
int result;
return result;
}
-BT_EXPORT_API int bluetooth_dpm_set_bluetooth_desktop_connectivity_state(bt_dpm_status_t value)
+BT_EXPORT_API int bluetooth_dpm_set_desktop_connectivity_state(bt_dpm_status_t value)
{
int result;
return result;
}
-BT_EXPORT_API int bluetooth_dpm_get_bluetooth_desktop_connectivity_state(bt_dpm_status_t *value)
+BT_EXPORT_API int bluetooth_dpm_get_desktop_connectivity_state(bt_dpm_status_t *value)
{
int result;
return result;
}
-BT_EXPORT_API int bluetooth_dpm_set_bluetooth_discoverable_state(bt_dpm_status_t value)
+BT_EXPORT_API int bluetooth_dpm_set_discoverable_state(bt_dpm_status_t value)
{
int result;
return result;
}
-BT_EXPORT_API int bluetooth_dpm_get_bluetooth_discoverable_state(bt_dpm_status_t *value)
+BT_EXPORT_API int bluetooth_dpm_get_discoverable_state(bt_dpm_status_t *value)
{
int result;
return result;
}
-BT_EXPORT_API int bluetooth_dpm_set_bluetooth_limited_discoverable_state(bt_dpm_status_t value)
+BT_EXPORT_API int bluetooth_dpm_set_limited_discoverable_state(bt_dpm_status_t value)
{
int result;
return result;
}
-BT_EXPORT_API int bluetooth_dpm_get_bluetooth_limited_discoverable_state(bt_dpm_status_t *value)
+BT_EXPORT_API int bluetooth_dpm_get_limited_discoverable_state(bt_dpm_status_t *value)
{
int result;
return result;
}
-BT_EXPORT_API int bluetooth_dpm_set_bluetooth_data_transfer_state(bt_dpm_status_t value)
+BT_EXPORT_API int bluetooth_dpm_set_data_transfer_state(bt_dpm_status_t value)
{
int result;
return result;
}
-BT_EXPORT_API int bluetooth_dpm_get_bluetooth_data_transfer_state(bt_dpm_status_t *value)
+BT_EXPORT_API int bluetooth_dpm_get_data_transfer_state(bt_dpm_status_t *value)
{
int result;
#ifdef TIZEN_DPM_VCONF_ENABLE
/**
- * @fn int bluetooth_dpm_is_bluetooth_mode_allowed(void);
+ * @fn int bluetooth_dpm_is_mode_allowed(void);
*
* @brief Checks Restriction for BT mode(BT allowed or not)
*
*
* @remark None
*/
-int bluetooth_dpm_is_bluetooth_mode_allowed(void);
+int bluetooth_dpm_is_mode_allowed(void);
#endif
/**
- * @fn int bluetooth_dpm_set_allow_bluetooth_mode(bt_dpm_allow_t value);
+ * @fn int bluetooth_dpm_set_allow_mode(bt_dpm_allow_t value);
*
* @brief Sets Restriction for BT mode(BT allowed or not)
*
*
* @remark None
*/
-int bluetooth_dpm_set_allow_bluetooth_mode(bt_dpm_allow_t value);
+int bluetooth_dpm_set_allow_mode(bt_dpm_allow_t value);
/**
- * @fn int bluetooth_dpm_get_allow_bluetooth_mode(bt_dpm_allow_t value);
+ * @fn int bluetooth_dpm_get_allow_mode(bt_dpm_allow_t value);
*
* @brief Reads the Restriction for BT mode(BT allowed or not)
*
*
* @remark None
*/
-int bluetooth_dpm_get_allow_bluetooth_mode(bt_dpm_allow_t *value);
+int bluetooth_dpm_get_allow_mode(bt_dpm_allow_t *value);
/**
- * @fn int bluetooth_dpm_activate_bluetooth_device_restriction(bt_dpm_status_t value);
+ * @fn int bluetooth_dpm_activate_device_restriction(bt_dpm_status_t value);
*
* @brief Sets the Restriction for device.
*
*
* @remark None
*/
-int bluetooth_dpm_activate_bluetooth_device_restriction(bt_dpm_status_t value);
+int bluetooth_dpm_activate_device_restriction(bt_dpm_status_t value);
/**
- * @fn int bluetooth_dpm_is_bluetooth_device_restriction_active(bt_dpm_status_t *value);
+ * @fn int bluetooth_dpm_is_device_restriction_active(bt_dpm_status_t *value);
*
* @brief Reads the Restriction for device.
*
*
* @remark None
*/
-int bluetooth_dpm_is_bluetooth_device_restriction_active(bt_dpm_status_t *value);
+int bluetooth_dpm_is_device_restriction_active(bt_dpm_status_t *value);
/**
* @fn int bluetooth_dpm_activate_bluetoooth_uuid_restriction(bt_dpm_status_t value);
*
* @remark None
*/
-int bluetooth_dpm_activate_bluetoooth_uuid_restriction(bt_dpm_status_t value);
+int bluetooth_dpm_activate_uuid_restriction(bt_dpm_status_t value);
/**
- * @fn int bluetooth_dpm_is_bluetooth_uuid_restriction_active(bt_dpm_status_t *value);
+ * @fn int bluetooth_dpm_is_uuid_restriction_active(bt_dpm_status_t *value);
*
* @brief Reads the Restriction for uuid.
*
*
* @remark None
*/
-int bluetooth_dpm_is_bluetooth_uuid_restriction_active(bt_dpm_status_t *value);
+int bluetooth_dpm_is_uuid_restriction_active(bt_dpm_status_t *value);
/**
- * @fn int bluetooth_dpm_add_bluetooth_devices_to_blacklist(const bluetooth_device_address_t *device_address);
+ * @fn int bluetooth_dpm_add_devices_to_blacklist(const bluetooth_device_address_t *device_address);
*
* @brief Adds the device to blacklist.
*
*
* @remark None
*/
-int bluetooth_dpm_add_bluetooth_devices_to_blacklist(const bluetooth_device_address_t *device_address);
+int bluetooth_dpm_add_devices_to_blacklist(const bluetooth_device_address_t *device_address);
/**
- * @fn int bluetooth_dpm_add_bluetooth_devices_to_whitelist(const bluetooth_device_address_t *device_address);
+ * @fn int bluetooth_dpm_add_devices_to_whitelist(const bluetooth_device_address_t *device_address);
*
* @brief Adds the device to whitelist.
*
*
* @remark None
*/
-int bluetooth_dpm_add_bluetooth_devices_to_whitelist(const bluetooth_device_address_t *device_address);
+int bluetooth_dpm_add_devices_to_whitelist(const bluetooth_device_address_t *device_address);
/**
- * @fn int bluetooth_dpm_add_bluetooth_uuids_to_blacklist(const char *service_uuid);
+ * @fn int bluetooth_dpm_add_uuids_to_blacklist(const char *service_uuid);
*
* @brief Adds the Service UUIDS to blacklist.
*
*
* @remark None
*/
-int bluetooth_dpm_add_bluetooth_uuids_to_blacklist(const char *service_uuid);
+int bluetooth_dpm_add_uuids_to_blacklist(const char *service_uuid);
/**
- * @fn int bluetooth_dpm_add_bluetooth_uuids_to_whitelist(const char *service_uuid);
+ * @fn int bluetooth_dpm_add_uuids_to_whitelist(const char *service_uuid);
*
* @brief Adds the Service UUIDS to whitelist.
*
*
* @remark None
*/
-int bluetooth_dpm_add_bluetooth_uuids_to_whitelist(const char *service_uuid);
+int bluetooth_dpm_add_uuids_to_whitelist(const char *service_uuid);
/**
- * @fn int bluetooth_dpm_clear_bluetooth_devices_from_blacklist();
+ * @fn int bluetooth_dpm_clear_devices_from_blacklist();
*
* @brief Clears the devices from blacklist.
*
*
* @remark None
*/
-int bluetooth_dpm_clear_bluetooth_devices_from_blacklist(void);
+int bluetooth_dpm_clear_devices_from_blacklist(void);
/**
- * @fn int bluetooth_dpm_clear_bluetooth_devices_from_whitelist();
+ * @fn int bluetooth_dpm_clear_devices_from_whitelist();
*
* @brief Clears the devices from whitelist.
*
*
* @remark None
*/
-int bluetooth_dpm_clear_bluetooth_devices_from_whitelist(void);
+int bluetooth_dpm_clear_devices_from_whitelist(void);
/**
- * @fn int bluetooth_dpm_clear_bluetooth_uuids_from_blacklist();
+ * @fn int bluetooth_dpm_clear_uuids_from_blacklist();
*
* @brief Clears the uuids from blacklist.
*
*
* @remark None
*/
-int bluetooth_dpm_clear_bluetooth_uuids_from_blacklist(void);
+int bluetooth_dpm_clear_uuids_from_blacklist(void);
/**
- * @fn int bluetooth_dpm_clear_bluetooth_uuids_from_whitelist();
+ * @fn int bluetooth_dpm_clear_uuids_from_whitelist();
*
* @brief Clears the uuids from whitelist.
*
*
* @remark None
*/
-int bluetooth_dpm_clear_bluetooth_uuids_from_whitelist(void);
+int bluetooth_dpm_clear_uuids_from_whitelist(void);
/**
- * @fn int bluetooth_dpm_get_bluetooth_devices_from_blacklist(bt_dpm_device_list_t *device_list);
+ * @fn int bluetooth_dpm_get_devices_from_blacklist(bt_dpm_device_list_t *device_list);
*
* @brief reads the devices from blacklist.
*
*
* @remark None
*/
-int bluetooth_dpm_get_bluetooth_devices_from_blacklist(bt_dpm_device_list_t *device_list);
+int bluetooth_dpm_get_devices_from_blacklist(bt_dpm_device_list_t *device_list);
/**
- * @fn int bluetooth_dpm_get_bluetooth_devices_from_whitelist(bt_dpm_device_list_t *device_list);
+ * @fn int bluetooth_dpm_get_devices_from_whitelist(bt_dpm_device_list_t *device_list);
*
* @brief reads the devices from whitelist.
*
*
* @remark None
*/
-int bluetooth_dpm_get_bluetooth_devices_from_whitelist(bt_dpm_device_list_t *device_list);
+int bluetooth_dpm_get_devices_from_whitelist(bt_dpm_device_list_t *device_list);
/**
- * @fn int bluetooth_dpm_get_bluetooth_uuids_from_blacklist(bt_dpm_uuids_list_t *uuid_list);
+ * @fn int bluetooth_dpm_get_uuids_from_blacklist(bt_dpm_uuids_list_t *uuid_list);
*
* @brief reads the uuids from blacklist.
*
*
* @remark None
*/
-int bluetooth_dpm_get_bluetooth_uuids_from_blacklist(bt_dpm_uuids_list_t *uuid_list);
+int bluetooth_dpm_get_uuids_from_blacklist(bt_dpm_uuids_list_t *uuid_list);
/**
- * @fn int bluetooth_dpm_get_bluetooth_uuids_from_whitelist(bt_dpm_uuids_list_t *uuid_list);
+ * @fn int bluetooth_dpm_get_uuids_from_whitelist(bt_dpm_uuids_list_t *uuid_list);
*
* @brief reads the uuids from whitelist.
*
*
* @remark None
*/
-int bluetooth_dpm_get_bluetooth_uuids_from_whitelist(bt_dpm_uuids_list_t *uuid_list);
+int bluetooth_dpm_get_uuids_from_whitelist(bt_dpm_uuids_list_t *uuid_list);
/**
- * @fn int bluetooth_dpm_remove_bluetooth_device_from_whitelist(const bluetooth_device_address_t *device_address);
+ * @fn int bluetooth_dpm_remove_device_from_whitelist(const bluetooth_device_address_t *device_address);
*
* @brief Removes the device from whitelist.
*
*
* @remark None
*/
-int bluetooth_dpm_remove_bluetooth_device_from_whitelist(const bluetooth_device_address_t *device_address);
+int bluetooth_dpm_remove_device_from_whitelist(const bluetooth_device_address_t *device_address);
/**
- * @fn int bluetooth_dpm_remove_bluetooth_device_from_blacklist(const bluetooth_device_address_t *device_address);
+ * @fn int bluetooth_dpm_remove_device_from_blacklist(const bluetooth_device_address_t *device_address);
*
* @brief Removes the device from blacklist.
*
*
* @remark None
*/
-int bluetooth_dpm_remove_bluetooth_device_from_blacklist(const bluetooth_device_address_t *device_address);
+int bluetooth_dpm_remove_device_from_blacklist(const bluetooth_device_address_t *device_address);
/**
- * @fn int bluetooth_dpm_remove_bluetooth_uuid_from_whitelist(const char *service_uuid);
+ * @fn int bluetooth_dpm_remove_uuid_from_whitelist(const char *service_uuid);
*
* @brief Removes the Service UUIDS from whitelist.
*
*
* @remark None
*/
-int bluetooth_dpm_remove_bluetooth_uuid_from_whitelist(const char *service_uuid);
+int bluetooth_dpm_remove_uuid_from_whitelist(const char *service_uuid);
/**
- * @fn int bluetooth_dpm_remove_bluetooth_uuid_from_blacklist(const char *service_uuid);
+ * @fn int bluetooth_dpm_remove_uuid_from_blacklist(const char *service_uuid);
*
* @brief Removes the Service UUIDS from blacklist.
*
*
* @remark None
*/
-int bluetooth_dpm_remove_bluetooth_uuid_from_blacklist(const char *service_uuid);
+int bluetooth_dpm_remove_uuid_from_blacklist(const char *service_uuid);
/**
- * @fn int bluetooth_dpm_set_allow_bluetooth_outgoing_call(bt_dpm_status_t value);
+ * @fn int bluetooth_dpm_set_allow_outgoing_call(bt_dpm_status_t value);
*
* @brief Sets the Restriction for outgoing call.
*
*
* @remark None
*/
-int bluetooth_dpm_set_allow_bluetooth_outgoing_call(bt_dpm_status_t value);
+int bluetooth_dpm_set_allow_outgoing_call(bt_dpm_status_t value);
/**
- * @fn int bluetooth_dpm_get_allow_bluetooth_outgoing_call(bt_dpm_status_t *value);
+ * @fn int bluetooth_dpm_get_allow_outgoing_call(bt_dpm_status_t *value);
*
* @brief Reads the Restriction for outgoing call.
*
*
* @remark None
*/
-int bluetooth_dpm_get_allow_bluetooth_outgoing_call(bt_dpm_status_t *value);
+int bluetooth_dpm_get_allow_outgoing_call(bt_dpm_status_t *value);
/**
- * @fn int bluetooth_dpm_set_bluetooth_pairing_state(bt_dpm_status_t value);
+ * @fn int bluetooth_dpm_set_pairing_state(bt_dpm_status_t value);
*
* @brief Sets the Restriction for Pairing.
*
*
* @remark None
*/
-int bluetooth_dpm_set_bluetooth_pairing_state(bt_dpm_status_t value);
+int bluetooth_dpm_set_pairing_state(bt_dpm_status_t value);
/**
- * @fn int bluetooth_dpm_get_bluetooth_pairing_state(bt_dpm_status_t *value);
+ * @fn int bluetooth_dpm_get_pairing_state(bt_dpm_status_t *value);
*
* @brief Reads the Restriction for Pairing
*
*
* @remark None
*/
-int bluetooth_dpm_get_bluetooth_pairing_state(bt_dpm_status_t *value);
+int bluetooth_dpm_get_pairing_state(bt_dpm_status_t *value);
/**
- * @fnint bluetooth_dpm_set_bluetooth_profile_state(bt_dpm_profile_t profile, bt_dpm_status_t value);
+ * @fnint bluetooth_dpm_set_profile_state(bt_dpm_profile_t profile, bt_dpm_status_t value);
*
* @brief Sets the Restriction for using Profiles.
*
*
* @remark None
*/
-int bluetooth_dpm_set_bluetooth_profile_state(bt_dpm_profile_t profile, bt_dpm_status_t value);
+int bluetooth_dpm_set_profile_state(bt_dpm_profile_t profile, bt_dpm_status_t value);
/**
- * @fn int bluetooth_dpm_get_bluetooth_profile_state(bt_dpm_profile_t profile, bt_dpm_status_t *value);
+ * @fn int bluetooth_dpm_get_profile_state(bt_dpm_profile_t profile, bt_dpm_status_t *value);
*
* @brief Reads the Restriction for using Profiles.
*
*
* @remark None
*/
-int bluetooth_dpm_get_bluetooth_profile_state(bt_dpm_profile_t profile, bt_dpm_status_t *value);
+int bluetooth_dpm_get_profile_state(bt_dpm_profile_t profile, bt_dpm_status_t *value);
/**
- * @fn int bluetooth_dpm_set_bluetooth_desktop_connectivity_state(bt_dpm_status_t value);
+ * @fn int bluetooth_dpm_set_desktop_connectivity_state(bt_dpm_status_t value);
*
* @brief Sets the Restriction for Desktop Connectivity.
*
*
* @remark None
*/
-int bluetooth_dpm_set_bluetooth_desktop_connectivity_state(bt_dpm_status_t value);
+int bluetooth_dpm_set_desktop_connectivity_state(bt_dpm_status_t value);
/**
- * @fn int bluetooth_dpm_get_bluetooth_desktop_connectivity_state(bt_dpm_status_t *value);
+ * @fn int bluetooth_dpm_get_desktop_connectivity_state(bt_dpm_status_t *value);
*
* @brief Reads the Restriction for Desktop Connectivity.
*
*
* @remark None
*/
-int bluetooth_dpm_get_bluetooth_desktop_connectivity_state(bt_dpm_status_t *value);
+int bluetooth_dpm_get_desktop_connectivity_state(bt_dpm_status_t *value);
/**
- * @fn int bluetooth_dpm_set_bluetooth_discoverable_state(bt_dpm_status_t value);
+ * @fn int bluetooth_dpm_set_discoverable_state(bt_dpm_status_t value);
*
* @brief Sets the Restriction for Discoverable state.
*
*
* @remark None
*/
-int bluetooth_dpm_set_bluetooth_discoverable_state(bt_dpm_status_t value);
+int bluetooth_dpm_set_discoverable_state(bt_dpm_status_t value);
/**
- * @fn int bluetooth_dpm_get_bluetooth_discoverable_state(bt_dpm_status_t *value);
+ * @fn int bluetooth_dpm_get_discoverable_state(bt_dpm_status_t *value);
*
* @brief Reads the Restriction for Discoverable state.
*
*
* @remark None
*/
-int bluetooth_dpm_get_bluetooth_discoverable_state(bt_dpm_status_t *value);
+int bluetooth_dpm_get_discoverable_state(bt_dpm_status_t *value);
/**
- * @fn int bluetooth_dpm_set_bluetooth_limited_discoverable_state(bt_dpm_status_t value);
+ * @fn int bluetooth_dpm_set_limited_discoverable_state(bt_dpm_status_t value);
*
* @brief Sets the Restriction for linited discoverable state..
*
*
* @remark None
*/
-int bluetooth_dpm_set_bluetooth_limited_discoverable_state(bt_dpm_status_t value);
+int bluetooth_dpm_set_limited_discoverable_state(bt_dpm_status_t value);
/**
- * @fn int bluetooth_dpm_get_bluetooth_limited_discoverable_state(bt_dpm_status_t *value);
+ * @fn int bluetooth_dpm_get_limited_discoverable_state(bt_dpm_status_t *value);
*
* @brief Reads the Restriction for limited discoverable state.
*
*
* @remark None
*/
-int bluetooth_dpm_get_bluetooth_limited_discoverable_state(bt_dpm_status_t *value);
+int bluetooth_dpm_get_limited_discoverable_state(bt_dpm_status_t *value);
/**
- * @fn int bluetooth_dpm_set_bluetooth_data_transfer_state(bt_dpm_status_t value);
+ * @fn int bluetooth_dpm_set_data_transfer_state(bt_dpm_status_t value);
*
* @brief Sets the Restriction for Data trasnfer.
*
*
* @remark None
*/
-int bluetooth_dpm_set_bluetooth_data_transfer_state(bt_dpm_status_t value);
+int bluetooth_dpm_set_data_transfer_state(bt_dpm_status_t value);
/**
- * @fn int bluetooth_dpm_get_bluetooth_data_transfer_state(bt_dpm_status_t *value);
+ * @fn int bluetooth_dpm_get_data_transfer_state(bt_dpm_status_t *value);
*
* @brief Reads the Restriction for Data trasnfer.
*
*
* @remark None
*/
-int bluetooth_dpm_get_bluetooth_data_transfer_state(bt_dpm_status_t *value);
+int bluetooth_dpm_get_data_transfer_state(bt_dpm_status_t *value);
/**
* @}