Lines Matching refs:tracelist
727 struct tracelist { struct
728 struct tracelist *next; argument
732 static struct tracelist *traces_list(char *dir_name, int *len) in traces_list() argument
735 struct tracelist *traces = NULL; in traces_list()
743 struct tracelist *tl; in traces_list()
753 tl = calloc(1, sizeof(struct tracelist) + (sizeof(char) * (n + 1))); in traces_list()
773 static void traces_free(struct tracelist *traces) in traces_free()
776 struct tracelist *tl = traces; in traces_free()
782 static int dump_traces(struct tracelist *traces, int count, char *dumpfile) in dump_traces()
784 struct tracelist *tl; in dump_traces()
862 struct tracelist *traces = traces_list(filename, &count); in find_trace_file()
878 struct tracelist trace = {0 ,NULL}; in find_trace_file()