Home | History | Annotate | Download | only in src

Lines Matching refs:offset

350    storing an offset to the corresponding executable portion at the
353 dlmmap_locked (void *start, size_t length, int prot, int flags, off_t offset)
366 offset = execsize;
368 if (ftruncate (execfd, offset + length))
375 flags, execfd, offset);
378 if (!offset)
383 ftruncate (execfd, offset);
386 else if (!offset
390 start = mmap (start, length, prot, flags, execfd, offset);
395 ftruncate (execfd, offset);
410 int flags, int fd, off_t offset)
417 && fd == -1 && offset == 0);
425 ptr = mmap (start, length, prot | PROT_EXEC, flags, fd, offset);
439 ptr = dlmmap_locked (start, length, prot, flags, offset);
445 return dlmmap_locked (start, length, prot, flags, offset);