Fix some doxygen errors about missing modules 81/146381/2
authorSungbae Yoo <sungbae.yoo@samsung.com>
Mon, 28 Aug 2017 08:06:52 +0000 (17:06 +0900)
committerSungbae Yoo <sungbae.yoo@samsung.com>
Wed, 30 Aug 2017 07:42:02 +0000 (16:42 +0900)
Signed-off-by: Sungbae Yoo <sungbae.yoo@samsung.com>
Change-Id: I33c059ebcd8bd21d400f0c0df9cab25740c2f5dc

lib/audit-trail/audit-trail.h
lib/audit-trail/common.h
lib/audit-trail/dac.h
lib/audit-trail/mac.h
lib/audit-trail/syscall.h

index 11fd73745895921f0b8e2583d85121ec75c9a8b0..12bcf21b1dc86cd948c2cc8776cc478d8cabebc9 100644 (file)
 extern "C" {
 #endif
 
+/**
+ * @addtogroup  Common
+ * @{
+ */
+
 /**
  * @brief       The audit-trail handle
  * @details     The audit-trail  handle is an abstraction of the logical
index 726ac183b5df8d789064a82b95be3297ca0c396e..33b26b99cfb9b073b0c981bb2dca324460005394 100644 (file)
@@ -20,8 +20,8 @@
 #include <tizen.h>
 
 /**
- * @file ode.h
- * @brief This file defines common data types required to ode APIs.
+ * @file common.h
+ * @brief This file defines common data types required to audit-trail APIs.
  */
 
 #ifndef AUDIT_TRAIL_API
@@ -41,7 +41,7 @@ extern "C" {
 #endif
 
 /**
- * @addtogroup  CAPI_AUDIT_TRAIL_MODULE
+ * @addtogroup  Common
  * @{
  */
 
@@ -61,17 +61,6 @@ typedef enum {
        AUDIT_TRAIL_ERROR_NO_DATA              = TIZEN_ERROR_NO_DATA               /**< No Data */
 } audit_trail_error_type_e;
 
-/**
- * @brief       Called to get all strings in an array
- * @since_tizen 5.0
- * @param[in]   log Each string in an array
- * @param[in]   user_data The user data passed from the function
- * @see         audit_trail_add_log_cb
- * @see         audit_trail_remove_log_cb
- * @see         audit_trail_foreach_smack
- */
-typedef void (*audit_trail_string_cb)(const char* log, void* user_data);
-
 /**
  * @}
  */
index 3bbb85a303004e7a0c17b07bbdfac39981ebc295..3870f99f59d133990a363522b3c9ab578da846ea 100644 (file)
 extern "C" {
 #endif
 
+/**
+ * @addtogroup  DAC Discretionary Access Control
+ * @{
+ */
+
 /**
  * @brief       The audit-trail DAC log handle
  * @details     The audit-trail DAC log handle is an abstraction of the DAC log
@@ -56,7 +61,7 @@ typedef void (*audit_trail_dac_cb)(audit_trail_dac_h handle, void* user_data);
 
 /**
  * @brief       Retrieves all DAC logs that occured in system.
- * @details     This API calls audit_trail_string_cb() once for each DAC
+ * @details     This API calls audit_trail_dac_cb() once for each DAC
  *              (Discretionary Access Control) logs collected by audit-trail
  *              when DAC auditing is enabled.
  * @since_tizen 5.0
index b27aeb4614faffb8a1f5018a04606add205813f9..0c09e8d43dadf40b25551626d5b7f3c46039b9f9 100644 (file)
 extern "C" {
 #endif
 
+/**
+ * @addtogroup  MAC Mandatory Access Control
+ * @{
+ */
+
 /**
  * @brief       The audit-trail MAC log handle
  * @details     The audit-trail MAC log handle is an abstraction of the MAC log
@@ -55,7 +60,7 @@ typedef void (*audit_trail_mac_cb)(audit_trail_mac_h handle, void* user_data);
 
 /**
  * @brief       Retrieves all MAC logs that occured in system.
- * @details     This API calls audit_trail_string_cb() once for each MAC
+ * @details     This API calls audit_trail_mac_cb() once for each MAC
  *              (Mandatory Access Control) logs collected by audit-trail
  *              when MAC auditing is enabled.
  * @since_tizen 5.0
index ac2d4325b3efa752bc3c9185ca7ddbe26babda0a..0f246f161b44ee7fdfa5aaf5b0c325de57b33fb9 100644 (file)
 extern "C" {
 #endif
 
+/**
+ * @addtogroup  System-call
+ * @{
+ */
+
 /**
  * @brief       The audit-trail system call log handle
  * @details     The audit-trail system call log handle is an abstraction of the system call log
@@ -56,8 +61,9 @@ typedef void (*audit_trail_syscall_cb)(audit_trail_syscall_h handle, void* user_
 
 /**
  * @brief       Retrieves all system call logs that occured in system.
- * @details     This API calls audit_trail_strimg_cb() once for each system call
- *              logs collected by audit-trail when system call auditing is enabled.
+ * @details     This API calls audit_trail_syscall_cb() once for each system
+ *              call logs collected by audit-trail when system call auditing
+ *              is enabled.
  * @since_tizen 5.0
  * @param[in]   handle The audit-trail handle
  * @param[in]   callback The iteration callback function