Home | History | Annotate | Download | only in traceevent

Lines Matching refs:fsym

691 static void free_flag_sym(struct print_flag_sym *fsym)
695 while (fsym) {
696 next = fsym->next;
697 free(fsym->value);
698 free(fsym->str);
699 free(fsym);
700 fsym = next;