Fix the coding style errors 35/102635/1 accepted/tizen/3.0/common/20161207.195222 accepted/tizen/3.0/ivi/20161207.135106 accepted/tizen/3.0/mobile/20161207.134929 accepted/tizen/3.0/tv/20161207.134850 accepted/tizen/3.0/wearable/20161207.135017 submit/tizen_3.0/20161207.043635
authorDoHyun Pyun <dh79.pyun@samsung.com>
Tue, 6 Dec 2016 08:26:06 +0000 (17:26 +0900)
committerDoHyun Pyun <dh79.pyun@samsung.com>
Tue, 6 Dec 2016 08:26:06 +0000 (17:26 +0900)
Change-Id: Id412beec846ea48fae393f96c923a953672b1523
Signed-off-by: DoHyun Pyun <dh79.pyun@samsung.com>
include/mobile/bluetooth_type_internal.h
include/tv/bluetooth_type_internal.h
include/wearable/bluetooth_type_internal.h
src/bluetooth-proximity.c

index 94cc3c27ab386ea8d6a1a9d3ef17434d67e0ee80..f9c5686d976e2320cb19dba9b087a9eb292d5f8f 100644 (file)
@@ -626,8 +626,8 @@ typedef void (*bt_adapter_authentication_req_cb)(int result, bt_authentication_t
  * @since_tizen 2.3.2
  */
 typedef struct {
-        int app_id;  /**< The application ID */
-        char *message;  /**< Command message */
+       int app_id; /**< The application ID */
+       char *message; /**< Command message */
 } bt_hf_vendor_dep_at_cmd_s;
 
 /**
index d3cfe68d4e73e8459c47c75300589aa2b752119d..a85066742760c36972a3ef88428f54d2249e7be5 100644 (file)
@@ -626,8 +626,8 @@ typedef void (*bt_adapter_authentication_req_cb)(int result, bt_authentication_t
  * @since_tizen 2.3.2
  */
 typedef struct {
-        int app_id;  /**< The application ID */
-        char *message;  /**< Command message */
+       int app_id; /**< The application ID */
+       char *message; /**< Command message */
 } bt_hf_vendor_dep_at_cmd_s;
 
 /**
index 15efec876ae2055b52274fce6cc229443bd55687..2fa330ba5a782ba4bec27676ed097f8f7e41c513 100644 (file)
@@ -638,8 +638,8 @@ typedef void (*bt_adapter_authentication_req_cb)(int result, bt_authentication_t
  * @since_tizen 2.3.2
  */
 typedef struct {
-        int app_id;  /**< The application ID */
-        char *message;  /**< Command message */
+       int app_id; /**< The application ID */
+       char *message; /**< Command message */
 } bt_hf_vendor_dep_at_cmd_s;
 
 /**
index b1bb44c332c9e8e6eacc46a07e055605bf839dde..d4f1700cbd43bf36548bc06c597a280a6798ef1b 100644 (file)
@@ -283,7 +283,7 @@ int bt_proximity_monitor_destroy(bt_proximity_monitor_h monitor)
        BT_CHECK_INIT_STATUS();
        BT_CHECK_INPUT_PARAMETER(monitor); /* LCOV_EXCL_START */
 
-       if(_bt_proximity_minotr_find(monitor_s->remote_address) == NULL)
+       if (_bt_proximity_minotr_find(monitor_s->remote_address) == NULL)
                return BT_ERROR_REMOTE_DEVICE_NOT_CONNECTED;
 
        if (monitor_s->connection_callback) {
@@ -308,7 +308,7 @@ int bt_proximity_monitor_connect(bt_proximity_monitor_h monitor)
        BT_CHECK_INIT_STATUS();
        BT_CHECK_INPUT_PARAMETER(monitor_s);
 
-       if(_bt_proximity_minotr_find(monitor_s->remote_address) == NULL)
+       if (_bt_proximity_minotr_find(monitor_s->remote_address) == NULL)
                return BT_ERROR_REMOTE_DEVICE_NOT_CONNECTED;
 
        error_code = bt_gatt_connect(monitor_s->remote_address, FALSE);
@@ -328,7 +328,7 @@ int bt_proximity_monitor_disconnect(bt_proximity_monitor_h monitor)
        BT_CHECK_INIT_STATUS();
        BT_CHECK_INPUT_PARAMETER(monitor_s);
 
-       if(_bt_proximity_minotr_find(monitor_s->remote_address) == NULL)
+       if (_bt_proximity_minotr_find(monitor_s->remote_address) == NULL)
                return BT_ERROR_REMOTE_DEVICE_NOT_CONNECTED;
 
        error_code = bt_gatt_disconnect(monitor_s->remote_address);
@@ -349,7 +349,7 @@ int bt_proximity_monitor_set_connection_state_changed_cb(bt_proximity_monitor_h
        BT_CHECK_INPUT_PARAMETER(monitor_s);
        BT_CHECK_INPUT_PARAMETER(callback);
 
-       if(_bt_proximity_minotr_find(monitor_s->remote_address) == NULL)
+       if (_bt_proximity_minotr_find(monitor_s->remote_address) == NULL)
                return BT_ERROR_REMOTE_DEVICE_NOT_CONNECTED;
 
        /* register the callback */
@@ -370,7 +370,7 @@ int bt_proximity_monitor_unset_connection_state_changed_cb(bt_proximity_monitor_
        BT_CHECK_INIT_STATUS();
        BT_CHECK_INPUT_PARAMETER(monitor_s);
 
-       if(_bt_proximity_minotr_find(monitor_s->remote_address) == NULL)
+       if (_bt_proximity_minotr_find(monitor_s->remote_address) == NULL)
                return BT_ERROR_REMOTE_DEVICE_NOT_CONNECTED;
 
        /* unregister the callback */
@@ -455,7 +455,7 @@ int bt_proximity_monitor_set_linkloss_alert(bt_proximity_monitor_h monitor, int
        BT_CHECK_INIT_STATUS();
        BT_CHECK_INPUT_PARAMETER(monitor); /* LCOV_EXCL_LINE */
 
-       if(_bt_proximity_minotr_find(monitor_s->remote_address) == NULL)
+       if (_bt_proximity_minotr_find(monitor_s->remote_address) == NULL)
                return BT_ERROR_REMOTE_DEVICE_NOT_CONNECTED;
 
        if (!(pxp_monitor_supported_services & BT_PROXIMITY_LINKLOSS_ALERT))
@@ -481,7 +481,7 @@ int bt_proximity_monitor_set_immediate_alert(bt_proximity_monitor_h monitor, int
        BT_CHECK_INIT_STATUS();
        BT_CHECK_INPUT_PARAMETER(monitor); /* LCOV_EXCL_LINE */
 
-       if(_bt_proximity_minotr_find(monitor_s->remote_address) == NULL)
+       if (_bt_proximity_minotr_find(monitor_s->remote_address) == NULL)
                return BT_ERROR_REMOTE_DEVICE_NOT_CONNECTED;
 
        if (!(pxp_monitor_supported_services & BT_PROXIMITY_IMMEDIATE_ALERT))
@@ -507,7 +507,7 @@ int bt_proximity_monitor_get_linkloss_alert(bt_proximity_monitor_h monitor, int
        BT_CHECK_INIT_STATUS();
        BT_CHECK_INPUT_PARAMETER(monitor); /* LCOV_EXCL_LINE */
 
-       if(_bt_proximity_minotr_find(monitor_s->remote_address) == NULL)
+       if (_bt_proximity_minotr_find(monitor_s->remote_address) == NULL)
                return BT_ERROR_REMOTE_DEVICE_NOT_CONNECTED;
 
        if (!(pxp_monitor_supported_services & BT_PROXIMITY_LINKLOSS_ALERT))
@@ -534,7 +534,7 @@ int bt_proximity_monitor_get_immediate_alert(bt_proximity_monitor_h monitor, int
        BT_CHECK_INIT_STATUS();
        BT_CHECK_INPUT_PARAMETER(monitor); /* LCOV_EXCL_LINE */
 
-       if(_bt_proximity_minotr_find(monitor_s->remote_address) == NULL)
+       if (_bt_proximity_minotr_find(monitor_s->remote_address) == NULL)
                return BT_ERROR_REMOTE_DEVICE_NOT_CONNECTED;
 
        if (!(pxp_monitor_supported_services & BT_PROXIMITY_IMMEDIATE_ALERT))
@@ -561,7 +561,7 @@ int bt_proximity_monitor_get_signal_level(bt_proximity_monitor_h monitor, int *v
        BT_CHECK_INIT_STATUS();
        BT_CHECK_INPUT_PARAMETER(monitor); /* LCOV_EXCL_LINE */
 
-       if(_bt_proximity_minotr_find(monitor_s->remote_address) == NULL)
+       if (_bt_proximity_minotr_find(monitor_s->remote_address) == NULL)
                return BT_ERROR_REMOTE_DEVICE_NOT_CONNECTED;
 
        if (!(pxp_monitor_supported_services & BT_PROXIMITY_TX_POWER))