Lines Matching refs:new_buf
972 char *new_buf; in elf_find_debugfile_by_debuglink() local
975 new_buf = elf_readlink (state, filename, error_callback, data, &new_len); in elf_find_debugfile_by_debuglink()
976 if (new_buf == NULL) in elf_find_debugfile_by_debuglink()
979 if (new_buf[0] == '/') in elf_find_debugfile_by_debuglink()
980 filename = new_buf; in elf_find_debugfile_by_debuglink()
985 filename = new_buf; in elf_find_debugfile_by_debuglink()
992 clen = slash - filename + strlen (new_buf) + 1; in elf_find_debugfile_by_debuglink()
998 memcpy (c + (slash - filename), new_buf, strlen (new_buf)); in elf_find_debugfile_by_debuglink()
999 c[slash - filename + strlen (new_buf)] = '\0'; in elf_find_debugfile_by_debuglink()
1000 backtrace_free (state, new_buf, new_len, error_callback, data); in elf_find_debugfile_by_debuglink()
1002 new_buf = c; in elf_find_debugfile_by_debuglink()
1009 alc = new_buf; in elf_find_debugfile_by_debuglink()