Lines Matching defs:filename
255 static struct symtab* build_symtab_internal(int fd, const char *filename, bool try_debuginfo);
280 char *filename, *s;
282 filename = malloc(strlen (debug_file_directory) + (sizeof "/.build-id/" - 1) + 1
284 s = filename + sprintf (filename, "%s/.build-id/", debug_file_directory);
296 return filename;
308 unsigned char *filename
311 fd = pathmap_open(filename);
316 free(filename);
323 static struct symtab* build_symtab_internal(int fd, const char *filename, bool try_debuginfo) {
464 symtab = build_symtab_from_debug_link(filename, fd, &ehdr, shbuf,
491 struct symtab* build_symtab(int fd, const char *filename) {
492 return build_symtab_internal(fd, filename, /* try_debuginfo */ true);