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;
*/
/**
- * @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
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
* @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.
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
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
*