Lines Matching refs:into
362 void *into = *buffer; in dwfl_elf_phdr_memory_callback() local
368 into = malloc (*buffer_available); in dwfl_elf_phdr_memory_callback()
369 if (unlikely (into == NULL)) in dwfl_elf_phdr_memory_callback()
376 ssize_t nread = pread_retry (elf->fildes, into, *buffer_available, start); in dwfl_elf_phdr_memory_callback()
379 if (into != *buffer) in dwfl_elf_phdr_memory_callback()
380 free (into); in dwfl_elf_phdr_memory_callback()
388 const void *eos = memchr (into, '\0', nread); in dwfl_elf_phdr_memory_callback()
389 if (unlikely (eos == NULL) || unlikely (eos == into)) in dwfl_elf_phdr_memory_callback()
392 free (into); in dwfl_elf_phdr_memory_callback()
395 nread = eos + 1 - into; in dwfl_elf_phdr_memory_callback()
399 *buffer = into; in dwfl_elf_phdr_memory_callback()