Home | History | Annotate | Download | only in callgrind

Lines Matching defs:out_file

39 static Char* out_file = 0;
68 return out_file;
1297 i = VG_(sprintf)(filename, "%s", out_file);
1308 VG_(sprintf)(filename, "%s", out_file);
1667 * Set up file names for dump output: <out_directory>, <out_file>.
1668 * <out_file> is derived from the output format string, which defaults
1673 * <out_file> always starts with a full absolute path.
1689 CLG_ASSERT(out_file != 0);
1698 if (out_file) {
1699 VG_(free)(out_file);
1706 out_file =
1710 CLG_ASSERT(out_file[0] == '/');
1713 while(out_file[i]) {
1714 if (out_file[i] == '/') lastSlash = i;
1719 VG_(strncpy)(out_directory, out_file, i);
1724 VG_(strlen)(out_file)+32);
1733 VG_(strcpy)(filename, out_file);