Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/zbxeval/query.c')
-rw-r--r--src/libs/zbxeval/query.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/libs/zbxeval/query.c b/src/libs/zbxeval/query.c
index 928f7b05de8..a4d223adbb3 100644
--- a/src/libs/zbxeval/query.c
+++ b/src/libs/zbxeval/query.c
@@ -29,8 +29,6 @@
/******************************************************************************
* *
- * Function: zbx_eval_parse_query *
- * *
* Purpose: parse item query /host/key?[filter] into host, key and filter *
* components *
* *
@@ -67,8 +65,6 @@ size_t zbx_eval_parse_query(const char *str, size_t len, zbx_item_query_t *query
/******************************************************************************
* *
- * Function: zbx_eval_clear_filter *
- * *
* Purpose: frees resources allocated by item reference *
* *
******************************************************************************/
@@ -81,8 +77,6 @@ void zbx_eval_clear_query(zbx_item_query_t *query)
/******************************************************************************
* *
- * Function: zbx_eval_prepare_filter *
- * *
* Purpose: prepare filter expression by converting property comparisons *
* prop =/<> "value" to prop("value")/not prop("value") function *
* calls. *
@@ -136,8 +130,6 @@ void zbx_eval_prepare_filter(zbx_eval_context_t *ctx)
/******************************************************************************
* *
- * Function: eval_filter_apply_op2 *
- * *
* Purpose: apply binary operation to stack *
* *
* Parameters: token - [IN] the operation token *
@@ -185,8 +177,6 @@ static void eval_filter_apply_op2(zbx_eval_token_t *token, zbx_vector_eval_token
/******************************************************************************
* *
- * Function: eval_filter_apply_op1 *
- * *
* Purpose: apply unary operation to stack *
* *
* Parameters: token - [IN] the operation token *
@@ -209,8 +199,6 @@ static void eval_filter_apply_op1(zbx_eval_token_t *token, zbx_vector_eval_token
/******************************************************************************
* *
- * Function: eval_filter_apply_func *
- * *
* Purpose: apply function to stack *
* *
* Parameters: ctx - [IN] the evaluation context *
@@ -240,8 +228,6 @@ static void eval_filter_apply_func(zbx_eval_context_t *ctx, zbx_eval_token_t *to
/******************************************************************************
* *
- * Function: eval_op_str *
- * *
* Purpose: get operator in text format *
* *
* Parameters: op - [IN] the operator type *
@@ -275,8 +261,6 @@ static const char *eval_op_str(zbx_token_type_t op)
/******************************************************************************
* *
- * Function: eval_unquote_str *
- * *
* Purpose: unquote string *
* *
* Parameters: str - [IN] the string to unquote *
@@ -315,8 +299,6 @@ static char *eval_unquote_str(char *str)
/******************************************************************************
* *
- * Function: eval_generate_filter *
- * *
* Purpose: generate filter expression from the specified stack *
* *
* Parameters: ctx - [IN] the evaluation context *
@@ -418,8 +400,6 @@ out:
/******************************************************************************
* *
- * Function: zbx_eval_get_group_filter *
- * *
* Purpose: generate group SQL filter expression from item filter *
* *
* Parameters: ctx - [IN] the filter expression evaluation context *