Home
last modified time | relevance | path

Searched refs:values_names (Results 1 – 6 of 6) sorted by relevance

/dports/net-mgmt/collectd5/collectd-5.12.0/src/
H A Dcollectd-nagios.c126 char ***values_names) { in filter_ds() argument
178 free((*values_names)[i]); in filter_ds()
179 free(*values_names); in filter_ds()
182 *values_names = new_names; in filter_ds()
330 char **values_names) { in do_check_con_none() argument
420 printf(" %s=%f;;;;", values_names[i], values[i]); in do_check_con_average()
427 char **values_names) { in do_check_con_sum() argument
523 char **values_names; in do_check() local
565 if (values_names != NULL) in do_check()
567 free(values_names[i]); in do_check()
[all …]
/dports/textproc/mifluz/mifluz-0.26.0/mifluz/
H A DWordMonitor.cc27 char* WordMonitor::values_names[WORD_MONITOR_VALUES_SIZE] = { member in WordMonitor
109 if(!values_names[i]) break; in Report()
110 if(values_names[i][0]) { in Report()
112 output << values_names[i] << ": " << values[i]; in Report()
143 if(!values_names[i]) break; in Start()
144 if(values_names[i][0]) in Start()
145 fprintf(output, "%s:", values_names[i]); in Start()
H A DWordMonitor.h124 static char* values_names[WORD_MONITOR_VALUES_SIZE]; variable
/dports/textproc/htdig/htdig-3.2.0b6/htword/
H A DWordMonitor.cc32 char* WordMonitor::values_names[WORD_MONITOR_VALUES_SIZE] = { member in WordMonitor
122 if(!values_names[i]) break; in Report()
123 if(values_names[i][0]) { in Report()
125 output << values_names[i] << ": " << values[i]; in Report()
187 if(!values_names[i]) break; in TimerStart()
188 if(values_names[i][0]) in TimerStart()
189 fprintf(output, "%s:", values_names[i]); in TimerStart()
H A DWordMonitor.h130 static char* values_names[WORD_MONITOR_VALUES_SIZE]; variable
/dports/net-mgmt/collectd5/collectd-5.12.0/src/libcollectdclient/
H A Dclient.c609 char **values_names = NULL; in lcc_getval() local
648 if (values_names != NULL) { \ in lcc_getval()
650 free(values_names[i]); \ in lcc_getval()
653 free(values_names); \ in lcc_getval()
674 values_names = calloc(values_num, sizeof(*values_names)); in lcc_getval()
675 if (values_names == NULL) in lcc_getval()
701 if (values_names != NULL) { in lcc_getval()
702 values_names[i] = strdup(key); in lcc_getval()
703 if (values_names[i] == NULL) in lcc_getval()
713 *ret_values_names = values_names; in lcc_getval()