Home | History | Annotate | Download | only in libelf

Lines Matching defs:buffer

121   void *buffer;
126 buffer = rawchunk;
132 buffer = malloc (size);
133 if (unlikely (buffer == NULL))
138 memcpy (buffer, rawchunk, size);
144 buffer = rawchunk;
147 buffer = malloc (size);
148 if (unlikely (buffer == NULL))
154 (*__elf_xfctstom[elf->class - 1][type])(buffer, rawchunk, size, 0);
157 /* Allocate the dummy container to point at this buffer. */
162 free (buffer);
169 chunk->data.d.d_buf = buffer;