Home
last modified time | relevance | path

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

/external/linux-tools-perf/src/tools/perf/util/
Dutil.c63 FILE *from_fp = fopen(from, "r"), *to_fp; in slow_copyfile() local
68 to_fp = fopen(to, "w"); in slow_copyfile()
69 if (to_fp == NULL) in slow_copyfile()
73 if (fputs(line, to_fp) == EOF) in slow_copyfile()
77 fclose(to_fp); in slow_copyfile()