Lines Matching refs:list
44 static struct latency_entry* read_global_stats(struct latency_entry* list, int erase);
45 static struct latency_entry* read_process_stats(struct latency_entry* list, int erase, int pid);
46 static struct latency_entry* read_thread_stats(struct latency_entry* list, int erase, int pid,
52 static struct latency_entry* read_latency_file(FILE* f, struct latency_entry* list);
174 static struct latency_entry* read_global_stats(struct latency_entry* list, int erase) { in read_global_stats() argument
194 e = read_latency_file(f, list); in read_global_stats()
201 static struct latency_entry* read_process_stats(struct latency_entry* list, int erase, int pid) { in read_process_stats() argument
216 e = list; in read_process_stats()
230 static struct latency_entry* read_thread_stats(struct latency_entry* list, int erase, int pid, in read_thread_stats() argument
246 return list; in read_thread_stats()
260 return list; in read_thread_stats()
264 e = read_latency_file(f, list); in read_thread_stats()
315 static struct latency_entry* read_latency_file(FILE* f, struct latency_entry* list) { in read_latency_file() argument
321 head = list; in read_latency_file()