[CAPI description changed] The @a -> @a 26/73226/1
authorKyungwook Tak <k.tak@samsung.com>
Tue, 7 Jun 2016 08:08:00 +0000 (17:08 +0900)
committerKyungwook Tak <k.tak@samsung.com>
Tue, 7 Jun 2016 08:08:00 +0000 (17:08 +0900)
Change-Id: Ie7664b6d92fb5774b7aae2ea186b11a117777756
Signed-off-by: Kyungwook Tak <k.tak@samsung.com>
src/include/csr/csr-content-screening-types.h
src/include/csr/csr-content-screening.h
src/include/csr/csr-engine-manager.h
src/include/csr/csr-web-protection.h

index a64f148..a834fee 100644 (file)
@@ -144,7 +144,7 @@ typedef void (*csr_cs_file_scanned_cb)(const char *file_path, void *user_data);
  *
  * @remarks Only for asynchronous scan functions.
  * @remarks Called for each file or application which is detected malware.
- * @remarks The @a malware will be released when a context is released using
+ * @remarks @a malware will be released when a context is released using
  *          csr_cs_context_destroy().
  *
  * @param[in] malware    The detected malware handle.
index 6ea33c6..593d451 100644 (file)
@@ -47,7 +47,7 @@ extern "C" {
  *
  * @since_tizen 3.0
  *
- * @remarks The @a handle should be released using csr_cs_context_destroy().
+ * @remarks @a handle should be released using csr_cs_context_destroy().
  * @remarks Multiple handles can be obtained.
  *
  * @param[out] handle A pointer of CSR CS context handle.
@@ -199,7 +199,7 @@ int csr_cs_set_scan_on_cloud(csr_cs_context_h handle, bool scan_on_cloud);
  * @privilege %http://tizen.org/privilege/antivirus.scan
  *
  * @remarks Scan data synchronously.
- * @remarks The @a malware will be released when @a handle is released using
+ * @remarks @a malware will be released when @a handle is released using
  *          csr_cs_context_destroy().
  * @remarks If multiple malwares exists in @a data,
  *          the malware with the highest severity will be returned.
@@ -241,7 +241,7 @@ int csr_cs_scan_data(csr_cs_context_h handle, const unsigned char *data, size_t
  * @privilege %http://tizen.org/privilege/antivirus.scan
  *
  * @remarks  Scan file synchronously.
- * @remarks  The @a malware will be released when @a handle is released using
+ * @remarks  @a malware will be released when @a handle is released using
  *           csr_cs_context_destroy().
  * @remarks  If multiple malwares exists in a file,
  *           the malware with the highest severity will be returned.
@@ -644,7 +644,7 @@ int csr_cs_malware_get_severity(csr_cs_malware_h malware,
  *
  * @since_tizen 3.0
  *
- * @remarks  The @a name must be released using free().
+ * @remarks  @a name must be released using free().
  *
  * @param[in]  malware  A detected malware handle.
  * @param[out] name     A pointer of the name of a detected malware.
@@ -665,7 +665,7 @@ int csr_cs_malware_get_name(csr_cs_malware_h malware, char **name);
  *
  * @since_tizen 3.0
  *
- * @remarks  The @a detailed_url must be released using free().
+ * @remarks  @a detailed_url must be released using free().
  *
  * @param[in]  malware       A detected malware handle.
  * @param[out] detailed_url  A pointer of an url that contains detailed information on
@@ -708,7 +708,7 @@ int csr_cs_malware_get_timestamp(csr_cs_malware_h malware, time_t *timestamp);
  *
  * @since_tizen 3.0
  *
- * @remarks The @a file_name must be released using free().
+ * @remarks @a file_name must be released using free().
  *
  * @param[in]  malware    A detected malware handle.
  * @param[out] file_name  A pointer of the file name where a malware is detected. The
@@ -767,7 +767,7 @@ int csr_cs_malware_is_app(csr_cs_malware_h malware, bool *is_app);
  *
  * @since_tizen 3.0
  *
- * @remarks  The @a pkg_id must be released using free().
+ * @remarks  @a pkg_id must be released using free().
  *
  * @param[in]  malware  A detected malware handle.
  * @param[out] pkg_id   A pointer of the package id where a malware is detected.
@@ -828,7 +828,7 @@ int csr_cs_judge_detected_malware(csr_cs_context_h handle, csr_cs_malware_h malw
  * @privlevel partner
  * @privilege %http://tizen.org/privilege/antivirus.scan
  *
- * @remarks The @a malware will be released when @a handle is destroyed.
+ * @remarks @a malware will be released when @a handle is destroyed.
  * @remarks @a file_path will be null if it's result of csr_cs_scan_data().
  *
  * @param[in]  handle     CSR CS context handle returned by csr_cs_context_create().
@@ -864,7 +864,7 @@ int csr_cs_get_detected_malware(csr_cs_context_h handle, const char *file_path,
  * @privlevel partner
  * @privilege %http://tizen.org/privilege/antivirus.scan
  *
- * @remarks  The @a list will be released when @a handle is destroyed.
+ * @remarks  @a list will be released when @a handle is destroyed.
  *
  * @param[in]  handle     CSR CS context handle returned by csr_cs_context_create().
  * @param[in]  dir_paths  A directory path where detected malware files exists.
@@ -899,7 +899,7 @@ int csr_cs_get_detected_malwares(csr_cs_context_h handle, const char *dir_paths[
  * @privlevel partner
  * @privilege %http://tizen.org/privilege/antivirus.scan
  *
- * @remarks  The @a malware will be released when @a handle is destroyed.
+ * @remarks  @a malware will be released when @a handle is destroyed.
  *
  * @param[in]  handle     CSR CS context handle returned by csr_cs_context_create().
  * @param[in]  file_path  A path of a ignored malware file.
@@ -930,7 +930,7 @@ int csr_cs_get_ignored_malware(csr_cs_context_h handle, const char *file_path,
  * @privlevel partner
  * @privilege %http://tizen.org/privilege/antivirus.scan
  *
- * @remarks  The @a list will be released when @a handle is destroyed.
+ * @remarks  @a list will be released when @a handle is destroyed.
  *
  * @param[in]  handle     CSR CS context handle returned by csr_cs_context_create().
  * @param[in]  dir_paths  A directory path where ignored malware files exists.
@@ -963,7 +963,7 @@ int csr_cs_get_ignored_malwares(csr_cs_context_h handle, const char *dir_paths[]
  *
  * @since_tizen 3.0
  *
- * @remarks The @a malware will be released when a context is released using
+ * @remarks @a malware will be released when a context is released using
  *          csr_cs_context_destroy().
  *
  * @param[in]  list     A detected malware list handle returned by
index 12490a1..2b6a994 100644 (file)
@@ -77,7 +77,7 @@ typedef enum {
  *
  * @since_tizen 3.0
  *
- * @remarks The @a engine should be released using csr_engine_destroy().
+ * @remarks @a engine should be released using csr_engine_destroy().
  *
  * @param[in]  id       Engine identifier to get handle.
  * @param[out] engine   A pointer of the engine information handle.
@@ -103,7 +103,7 @@ int csr_get_current_engine(csr_engine_id_e id, csr_engine_h *engine);
  * @privlevel platform
  * @privilege %http://tizen.org/privilege/antivirus.admin
  *
- * @remarks  The @a vendor must be released using free().
+ * @remarks  @a vendor must be released using free().
  *
  * @param[in]  engine   The engine information handle.
  * @param[out] vendor   A pointer of the engine's vendor name.
@@ -129,7 +129,7 @@ int csr_engine_get_vendor(csr_engine_h engine, char **vendor);
  * @privlevel platform
  * @privilege %http://tizen.org/privilege/antivirus.admin
  *
- * @remarks  The @a name must be released using free().
+ * @remarks  @a name must be released using free().
  *
  * @param[in]  engine  The engine information handle.
  * @param[out] name    A pointer of the engine's name.
@@ -155,7 +155,7 @@ int csr_engine_get_name(csr_engine_h engine, char **name);
  * @privlevel platform
  * @privilege %http://tizen.org/privilege/antivirus.admin
  *
- * @remarks  The @a version must be released using free().
+ * @remarks  @a version must be released using free().
  *
  * @param[in]  engine    An engine information handle.
  * @param[out] version   A pointer of the engine's version.
@@ -181,7 +181,7 @@ int csr_engine_get_version(csr_engine_h engine, char **version);
  * @privlevel platform
  * @privilege %http://tizen.org/privilege/antivirus.admin
  *
- * @remarks  The @a version must be released using free().
+ * @remarks  @a version must be released using free().
  *
  * @param[in]  engine    The engine information handle.
  * @param[out] version   A pointer of the data version. It can be null.
index fa46982..7b98bc5 100644 (file)
@@ -44,7 +44,7 @@ extern "C" {
  *
  * @since_tizen 3.0
  *
- * @remarks The @a handle should be released using csr_wp_context_destroy().
+ * @remarks @a handle should be released using csr_wp_context_destroy().
  * @remarks Multiple handles can be obtained.
  *
  * @param[out] handle A pointer of CSR WP context handle.
@@ -145,7 +145,7 @@ int csr_wp_set_popup_message(csr_wp_context_h handle, const char *message);
  * @privlevel partner
  * @privilege %http://tizen.org/privilege/antivirus.webprotect
  *
- * @remarks The @a result will be released when @a handle is released using
+ * @remarks @a result will be released when @a handle is released using
  *          csr_wp_context_destroy().
  *
  * @param[in]  handle   CSR WP context handle returned by csr_wp_context_create().
@@ -203,7 +203,7 @@ int csr_wp_result_get_risk_level(csr_wp_check_result_h result, csr_wp_risk_level
  *
  * @since_tizen 3.0
  *
- * @remarks  The @a detailed_url must be released using free().
+ * @remarks  @a detailed_url must be released using free().
  *
  * @param[in]  result        A result handle returned by csr_wp_check_url().
  * @param[out] detailed_url  A pointer of an url that contains detailed information about