Lines Matching defs:file
3 This file is part of elfutils.
5 This file is free software; you can redistribute it and/or modify
83 to open and read the "/proc/%d/exe" file.
179 proc_maps_report (Dwfl *dwfl, FILE *f, GElf_Addr sysinfo_ehdr, pid_t pid)
239 char *file = line + nread + strspn (line + nread, " \t");
240 if (file[0] != '/' || (ino == 0 && dmajor == 0 && dminor == 0))
241 /* This line doesn't indicate a file mapping. */
247 /* This is another portion of the same file's mapping. */
248 if (strcmp (last_file, file) != 0)
254 /* This is a different file mapping. Report the last one. */
259 last_file = strdup (file);
276 dwfl_linux_proc_maps_report (Dwfl *dwfl, FILE *f)
298 FILE *f = fopen (fname, "r");