Lines Matching refs:dict_opt_c
52 static struct dict *dict_opt_c; variable
125 if (dict_opt_c != NULL) { in show_summary()
126 DICT_EACH(dict_opt_c, const char *, struct opt_c_struct, NULL, in show_summary()
159 if (dict_opt_c == NULL) { in summary_account_call()
160 dict_opt_c = malloc(sizeof(*dict_opt_c)); in summary_account_call()
161 if (dict_opt_c == NULL) { in summary_account_call()
166 free(dict_opt_c); in summary_account_call()
170 DICT_INIT(dict_opt_c, char *, struct opt_c_struct, in summary_account_call()
174 struct opt_c_struct *st = DICT_FIND_REF(dict_opt_c, &libsym->name, in summary_account_call()
180 || DICT_INSERT(dict_opt_c, &na, &new_st) < 0) { in summary_account_call()
182 DICT_DESTROY(dict_opt_c, const char *, in summary_account_call()
187 st = DICT_FIND_REF(dict_opt_c, &libsym->name, in summary_account_call()