Lines Matching refs:new_buf
910 char *new_buf; in elf_find_debugfile_by_debuglink() local
913 new_buf = elf_readlink (state, filename, error_callback, data, &new_len); in elf_find_debugfile_by_debuglink()
914 if (new_buf == NULL) in elf_find_debugfile_by_debuglink()
917 if (new_buf[0] == '/') in elf_find_debugfile_by_debuglink()
918 filename = new_buf; in elf_find_debugfile_by_debuglink()
923 filename = new_buf; in elf_find_debugfile_by_debuglink()
930 clen = slash - filename + strlen (new_buf) + 1; in elf_find_debugfile_by_debuglink()
936 memcpy (c + (slash - filename), new_buf, strlen (new_buf)); in elf_find_debugfile_by_debuglink()
937 c[slash - filename + strlen (new_buf)] = '\0'; in elf_find_debugfile_by_debuglink()
938 backtrace_free (state, new_buf, new_len, error_callback, data); in elf_find_debugfile_by_debuglink()
940 new_buf = c; in elf_find_debugfile_by_debuglink()
947 alc = new_buf; in elf_find_debugfile_by_debuglink()