Fix native api reference warnings 58/89258/1 accepted/tizen/common/20160923.160938 accepted/tizen/ivi/20160927.020213 accepted/tizen/mobile/20160927.020110 accepted/tizen/tv/20160927.020148 accepted/tizen/wearable/20160927.020135 submit/tizen/20160923.081806
authorDoHyun Pyun <dh79.pyun@samsung.com>
Fri, 23 Sep 2016 01:44:49 +0000 (10:44 +0900)
committerDoHyun Pyun <dh79.pyun@samsung.com>
Fri, 23 Sep 2016 01:44:49 +0000 (10:44 +0900)
Change-Id: If9db28716017fec0154f439bb5b110e7f297f8c3
Signed-off-by: DoHyun Pyun <dh79.pyun@samsung.com>
include/mobile/bluetooth.h
include/tv/bluetooth.h
include/wearable/bluetooth.h

index 85b2c15..7ca417c 100644 (file)
@@ -3266,6 +3266,7 @@ int bt_avrcp_control_deinitialize(void);
  * @since_tizen 3.0
  * @privlevel public
  * @privilege %http://tizen.org/privilege/bluetooth
+ * @param[in] remote_address  The remote address
  * @return 0 on success, otherwise a negative error value.
  * @retval #BT_ERROR_NONE  Successful
  * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
@@ -3281,6 +3282,7 @@ int bt_avrcp_control_connect(const char *remote_address);
  * @since_tizen 3.0
  * @privlevel public
  * @privilege %http://tizen.org/privilege/bluetooth
+ * @param[in] remote_address  The remote address
  * @return 0 on success, otherwise a negative error value.
  * @retval #BT_ERROR_NONE  Successful
  * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
@@ -4815,7 +4817,7 @@ int bt_gatt_descriptor_destroy(bt_gatt_h gatt_handle);
  * @brief  Gets the permissions which a characteristic's GATT handle has.
  * @since_tizen 3.0
  *
- * @remarks The @a permissions can be one or more values of #bt_gatt_permissions_e, combined with bitwise 'or'.
+ * @remarks The @a permissions can be one or more values of #bt_gatt_permission_e, combined with bitwise 'or'.
  *
  * @param[in] gatt_handle The handle of a characteristic
  * @param[out] permissions The permissions which a characteristic's GATT handle has
@@ -4834,7 +4836,7 @@ int bt_gatt_characteristic_get_permissions(bt_gatt_h gatt_handle, int *permissio
  * @brief  Gets the permissions which a descriptor's GATT handle has.
  * @since_tizen 3.0
  *
- * @remarks The @a permissions can be one or more values of #bt_gatt_permissions_e, combined with bitwise 'or'.
+ * @remarks The @a permissions can be one or more values of #bt_gatt_permission_e, combined with bitwise 'or'.
  *
  * @param[in] gatt_handle The handle of a descriptor
  * @param[out] permissions The permissions which a descriptor's GATT handle has
@@ -4929,14 +4931,14 @@ int bt_gatt_service_get_server(bt_gatt_h service, bt_gatt_server_h *server);
  * @brief  Creates the GATT characteristic.
  * @since_tizen 3.0
  *
- * @remarks The @a permissions can be one or more values of #bt_gatt_permissions_e, combined with bitwise 'or'.
+ * @remarks The @a permissions can be one or more values of #bt_gatt_permission_e, combined with bitwise 'or'.
  * @remarks The @a properties can be one or more values of #bt_gatt_property_e, combined with bitwise 'or'.
  * @remarks The @a characteristic should be destroyed by using bt_gatt_characteristic_destroy().
  *
  * @param[in] uuid The UUID of the characteristic
  * @param[in] permissions the permissions of the characteristic
  * @param[in] properties The properties of the characteristic
- * @param[in] Value The value(byte stream) of the characteristic
+ * @param[in] value The value(byte stream) of the characteristic
  * @param[in] value_length The length of @a value
  * @param[out] characteristic The GATT handle of the created characteristic
  * @return  0 on success, otherwise a negative error value
@@ -4974,7 +4976,7 @@ int bt_gatt_characteristic_add_descriptor(bt_gatt_h characteristic,
  * @brief  Creates the GATT characteristic descriptor.
  * @since_tizen 3.0
  *
- * @remarks The @a permissions can be one or more values of #bt_gatt_permissions_e, combined with bitwise 'or'.
+ * @remarks The @a permissions can be one or more values of #bt_gatt_permission_e, combined with bitwise 'or'.
  * @remarks The @a descriptor should be destroyed by using bt_gatt_descriptor_destroy().
  *
  * @param[in] uuid The UUID of the descriptor
index efe32d6..c37a6ce 100644 (file)
@@ -3268,6 +3268,7 @@ int bt_avrcp_control_deinitialize(void);
  * @since_tizen 3.0
  * @privlevel public
  * @privilege %http://tizen.org/privilege/bluetooth
+ * @param[in] remote_address  The remote address
  * @return 0 on success, otherwise a negative error value.
  * @retval #BT_ERROR_NONE  Successful
  * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
@@ -3283,6 +3284,7 @@ int bt_avrcp_control_connect(const char *remote_address);
  * @since_tizen 3.0
  * @privlevel public
  * @privilege %http://tizen.org/privilege/bluetooth
+ * @param[in] remote_address  The remote address
  * @return 0 on success, otherwise a negative error value.
  * @retval #BT_ERROR_NONE  Successful
  * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
@@ -4818,7 +4820,7 @@ int bt_gatt_descriptor_destroy(bt_gatt_h gatt_handle);
  * @brief  Gets the permissions which a characteristic's GATT handle has.
  * @since_tizen 3.0
  *
- * @remarks The @a permissions can be one or more values of #bt_gatt_permissions_e, combined with bitwise 'or'.
+ * @remarks The @a permissions can be one or more values of #bt_gatt_permission_e, combined with bitwise 'or'.
  *
  * @param[in] gatt_handle The handle of a characteristic
  * @param[out] permissions The permissions which a characteristic's GATT handle has
@@ -4837,7 +4839,7 @@ int bt_gatt_characteristic_get_permissions(bt_gatt_h gatt_handle, int *permissio
  * @brief  Gets the permissions which a descriptor's GATT handle has.
  * @since_tizen 3.0
  *
- * @remarks The @a permissions can be one or more values of #bt_gatt_permissions_e, combined with bitwise 'or'.
+ * @remarks The @a permissions can be one or more values of #bt_gatt_permission_e, combined with bitwise 'or'.
  *
  * @param[in] gatt_handle The handle of a descriptor
  * @param[out] permissions The permissions which a descriptor's GATT handle has
@@ -4932,14 +4934,14 @@ int bt_gatt_service_get_server(bt_gatt_h service, bt_gatt_server_h *server);
  * @brief  Creates the GATT characteristic.
  * @since_tizen 3.0
  *
- * @remarks The @a permissions can be one or more values of #bt_gatt_permissions_e, combined with bitwise 'or'.
+ * @remarks The @a permissions can be one or more values of #bt_gatt_permission_e, combined with bitwise 'or'.
  * @remarks The @a properties can be one or more values of #bt_gatt_property_e, combined with bitwise 'or'.
  * @remarks The @a characteristic should be destroyed by using bt_gatt_characteristic_destroy().
  *
  * @param[in] uuid The UUID of the characteristic
  * @param[in] permissions the permissions of the characteristic
  * @param[in] properties The properties of the characteristic
- * @param[in] Value The value(byte stream) of the characteristic
+ * @param[in] value The value(byte stream) of the characteristic
  * @param[in] value_length The length of @a value
  * @param[out] characteristic The GATT handle of the created characteristic
  * @return  0 on success, otherwise a negative error value
@@ -4977,7 +4979,7 @@ int bt_gatt_characteristic_add_descriptor(bt_gatt_h characteristic,
  * @brief  Creates the GATT characteristic descriptor.
  * @since_tizen 3.0
  *
- * @remarks The @a permissions can be one or more values of #bt_gatt_permissions_e, combined with bitwise 'or'.
+ * @remarks The @a permissions can be one or more values of #bt_gatt_permission_e, combined with bitwise 'or'.
  * @remarks The @a descriptor should be destroyed by using bt_gatt_descriptor_destroy()
  *
  * @param[in] uuid The UUID of the descriptor
index 1b3b29a..a68580e 100644 (file)
@@ -3245,6 +3245,7 @@ int bt_avrcp_control_deinitialize(void);
  * @since_tizen 3.0
  * @privlevel public
  * @privilege %http://tizen.org/privilege/bluetooth
+ * @param[in] remote_address  The remote address
  * @return 0 on success, otherwise a negative error value.
  * @retval #BT_ERROR_NONE  Successful
  * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
@@ -3260,6 +3261,7 @@ int bt_avrcp_control_connect(const char *remote_address);
  * @since_tizen 3.0
  * @privlevel public
  * @privilege %http://tizen.org/privilege/bluetooth
+ * @param[in] remote_address  The remote address
  * @return 0 on success, otherwise a negative error value.
  * @retval #BT_ERROR_NONE  Successful
  * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
@@ -4468,7 +4470,7 @@ int bt_gatt_descriptor_destroy(bt_gatt_h gatt_handle);
  * @brief  Gets the permissions which a characteristic's GATT handle has.
  * @since_tizen 3.0
  *
- * @remarks The @a permissions can be one or more values of #bt_gatt_permissions_e, combined with bitwise 'or'.
+ * @remarks The @a permissions can be one or more values of #bt_gatt_permission_e, combined with bitwise 'or'.
  *
  * @param[in] gatt_handle The handle of a characteristic
  * @param[out] permissions The permissions which a characteristic's GATT handle has
@@ -4487,7 +4489,7 @@ int bt_gatt_characteristic_get_permissions(bt_gatt_h gatt_handle, int *permissio
  * @brief  Gets the permissions which a descriptor's GATT handle has.
  * @since_tizen 3.0
  *
- * @remarks The @a permissions can be one or more values of #bt_gatt_permissions_e, combined with bitwise 'or'.
+ * @remarks The @a permissions can be one or more values of #bt_gatt_permission_e, combined with bitwise 'or'.
  *
  * @param[in] gatt_handle The handle of a descriptor
  * @param[out] permissions The permissions which a descriptor's GATT handle has
@@ -4582,14 +4584,14 @@ int bt_gatt_service_get_server(bt_gatt_h service, bt_gatt_server_h *server);
  * @brief  Creates the GATT characteristic.
  * @since_tizen 3.0
  *
- * @remarks The @a permissions can be one or more values of #bt_gatt_permissions_e, combined with bitwise 'or'.
+ * @remarks The @a permissions can be one or more values of #bt_gatt_permission_e, combined with bitwise 'or'.
  * @remarks The @a properties can be one or more values of #bt_gatt_property_e, combined with bitwise 'or'.
  * @remarks The @a characteristic should be destroyed by using bt_gatt_characteristic_destroy().
  *
  * @param[in] uuid The UUID of the characteristic
  * @param[in] permissions the permissions of the characteristic
  * @param[in] properties The properties of the characteristic
- * @param[in] Value The value(byte stream) of the characteristic
+ * @param[in] value The value(byte stream) of the characteristic
  * @param[in] value_length The length of @a value
  * @param[out] characteristic The GATT handle of the created characteristic
  * @return  0 on success, otherwise a negative error value
@@ -4627,7 +4629,7 @@ int bt_gatt_characteristic_add_descriptor(bt_gatt_h characteristic,
  * @brief  Creates the GATT characteristic descriptor.
  * @since_tizen 3.0
  *
- * @remarks The @a permissions can be one or more values of #bt_gatt_permissions_e, combined with bitwise 'or'.
+ * @remarks The @a permissions can be one or more values of #bt_gatt_permission_e, combined with bitwise 'or'.
  * @remarks The @a descriptor should be destroyed by using bt_gatt_descriptor_destroy().
  *
  * @param[in] uuid The UUID of the descriptor