Change statistical information 74/230574/1 submit/tizen/20200413.053702
authorhyunuk.tak <hyunuk.tak@samsung.com>
Sun, 12 Apr 2020 23:47:17 +0000 (08:47 +0900)
committerhyunuk.tak <hyunuk.tak@samsung.com>
Sun, 12 Apr 2020 23:47:19 +0000 (08:47 +0900)
Change-Id: I4d3e7d9d3467e2e25f0ae40c848939baf530e980
Signed-off-by: hyunuk.tak <hyunuk.tak@samsung.com>
include/stc.h

index a6e1c612280dc611f131bfe645cff732b071a8a8..1cd5e75f15a47789cb2cd9ab17a7b9fe48e74a9b 100755 (executable)
@@ -66,13 +66,13 @@ typedef void *stc_h;
 typedef void *stc_stats_rule_h;
 
 /**
- * @brief The statistics information handle.
+ * @brief The handle of statistical information about network traffic.
  * @since_tizen 4.0
  */
 typedef void *stc_stats_info_h;
 
 /**
- * @brief All statistics information handle.
+ * @brief The handle of all statistical information about network traffic.
  * @since_tizen 5.5
  */
 typedef void *stc_all_stats_info_h;
@@ -218,7 +218,7 @@ typedef enum {
  */
 
 /**
- * @brief Called for each available statistics information.
+ * @brief Called whenever there is available statistical information.
  * @details One of the following errors is delivered as a result.
  *   #STC_ERROR_NONE                Successful \n
  *   #STC_ERROR_INVALID_OPERATION   No reply \n
@@ -246,7 +246,7 @@ typedef stc_callback_ret_e (*stc_stats_info_cb)(
                stc_error_e result, stc_stats_info_h info, void *user_data);
 
 /**
- * @brief Called when gathering statistics is completed.
+ * @brief Called when getting all statistical information is finished.
  * @details One of the following errors is delivered as a result.
  *   #STC_ERROR_NONE                Successful \n
  *   #STC_ERROR_INVALID_OPERATION   No reply \n
@@ -256,7 +256,7 @@ typedef stc_callback_ret_e (*stc_stats_info_cb)(
  * @remarks @a info will be released by the platform after the callback exits.
  *
  * @param[in] result        The result of statistics gathering completion
- * @param[in] info          All statistics information handle
+ * @param[in] info          The handle of all statistical information
  * @param[in] user_data     The user data passed from the statistics provider function
  *
  * @pre stc_get_all_stats() will invoke this callback.
@@ -421,7 +421,7 @@ int stc_foreach_stats(stc_h stc, stc_stats_rule_h rule,
                stc_stats_info_cb info_cb, void *user_data) TIZEN_DEPRECATED_API;
 
 /**
- * @brief Gets all statistics information according to the given rule, asynchronously.
+ * @brief Starts to get statistical information based on the rules asynchronously.
  *
  * @since_tizen 5.5
  * @privlevel public
@@ -461,7 +461,7 @@ int stc_get_all_stats(stc_h stc, stc_stats_rule_h rule,
                stc_get_all_stats_finished_cb finished_cb, void *user_data);
 
 /**
- * @brief Iterates over the results of getting all statistics information.
+ * @brief Gets all statistical information.
  *
  * @since_tizen 5.5
  *