Home | History | Annotate | Download | only in callgrind

Lines Matching refs:info_file

48 static Char* info_file = 0;
98 info_file = (char*) CLG_MALLOC("cl.command.sc.5",
100 CLG_ASSERT(info_file != 0);
101 VG_(sprintf)(info_file, "%s.%d", DEFAULT_INFONAME, thisPID);
107 CLG_DEBUG(1, " info file: '%s'\n", info_file);
110 res = VG_(open)(info_file, VKI_O_WRONLY|VKI_O_TRUNC, 0);
112 res = VG_(open)(info_file, VKI_O_CREAT|VKI_O_WRONLY,
116 "warning: can't write info file '%s'\n", info_file);
117 info_file = 0;
161 if (info_file) VG_(unlink)(info_file);