From ff74df632f27203593c9d67afeed4e42da5cb347 Mon Sep 17 00:00:00 2001 From: Kyungwook Tak Date: Tue, 7 Jun 2016 17:08:00 +0900 Subject: [PATCH] [CAPI description changed] The @a -> @a Change-Id: Ie7664b6d92fb5774b7aae2ea186b11a117777756 Signed-off-by: Kyungwook Tak --- src/include/csr/csr-content-screening-types.h | 2 +- src/include/csr/csr-content-screening.h | 24 ++++++++++++------------ src/include/csr/csr-engine-manager.h | 10 +++++----- src/include/csr/csr-web-protection.h | 6 +++--- 4 files changed, 21 insertions(+), 21 deletions(-) diff --git a/src/include/csr/csr-content-screening-types.h b/src/include/csr/csr-content-screening-types.h index a64f148..a834fee 100644 --- a/src/include/csr/csr-content-screening-types.h +++ b/src/include/csr/csr-content-screening-types.h @@ -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. diff --git a/src/include/csr/csr-content-screening.h b/src/include/csr/csr-content-screening.h index 6ea33c6..593d451 100644 --- a/src/include/csr/csr-content-screening.h +++ b/src/include/csr/csr-content-screening.h @@ -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 diff --git a/src/include/csr/csr-engine-manager.h b/src/include/csr/csr-engine-manager.h index 12490a1..2b6a994 100644 --- a/src/include/csr/csr-engine-manager.h +++ b/src/include/csr/csr-engine-manager.h @@ -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. diff --git a/src/include/csr/csr-web-protection.h b/src/include/csr/csr-web-protection.h index fa46982..7b98bc5 100644 --- a/src/include/csr/csr-web-protection.h +++ b/src/include/csr/csr-web-protection.h @@ -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 -- 2.7.4