Lines Matching defs:file
3 This file is part of Red Hat elfutils.
25 those well defined interfaces identified in the file named EXCEPTION
36 covered by this exception. If you modify this file, you may extend this
37 exception to your version of the file, but you are not obligated to do
40 this file solely under the GPL without exception.
130 proc_maps_report (Dwfl *dwfl, FILE *f, GElf_Addr sysinfo_ehdr, pid_t pid)
191 char *file = line + nread + strspn (line + nread, " \t");
192 if (file[0] == '\0' || (ino == 0 && dmajor == 0 && dminor == 0))
193 /* This line doesn't indicate a file mapping. */
199 /* This is another portion of the same file's mapping. */
200 assert (!strcmp (last_file, file));
205 /* This is a different file mapping. Report the last one. */
210 last_file = strdup (file);
227 dwfl_linux_proc_maps_report (Dwfl *dwfl, FILE *f)
249 FILE *f = fopen (fname, "r");