/openbsd/gnu/llvm/compiler-rt/include/sanitizer/ |
H A D | netbsd_syscall_hooks.h | 196 #define __sanitizer_syscall_pre_getpeername(fdes, asa, alen) \ argument 198 (long long)(fdes), (long long)(asa), (long long)(alen)) 199 #define __sanitizer_syscall_post_getpeername(res, fdes, asa, alen) \ argument 201 res, (long long)(fdes), (long long)(asa), (long long)(alen)) 202 #define __sanitizer_syscall_pre_getsockname(fdes, asa, alen) \ argument 204 (long long)(fdes), (long long)(asa), (long long)(alen)) 207 res, (long long)(fdes), (long long)(asa), (long long)(alen)) 745 (long long)(fdes), (long long)(asa), (long long)(alen)) 748 res, (long long)(fdes), (long long)(asa), (long long)(alen)) 3399 void __sanitizer_syscall_pre_impl_compat_43_ogetpeername(long long fdes, [all …]
|
/openbsd/gnu/llvm/lld/ELF/ |
H A D | Relocations.cpp | 403 fdes = eh->fdes; in OffsetGetter() 405 j = fdes.begin(); in OffsetGetter() 416 while (j != fdes.end() && j->inputOff <= off) in get() 419 if (j == fdes.begin() || j[-1].inputOff + j[-1].size <= off) { in get() 434 ArrayRef<EhSectionPiece> cies, fdes; member in __anon1583ab810111::OffsetGetter
|
H A D | MapFile.cpp | 135 for (const EhSectionPiece *fde : rec->fdes) in printEhFrame()
|
H A D | MarkLive.cpp | 149 for (const EhSectionPiece &fde : eh.fdes) { in scanEhFrameSection()
|
H A D | SyntheticSections.cpp | 411 for (EhSectionPiece &fde : sec->fdes) { in addRecords() 419 rec->fdes.push_back(&fde); in addRecords() 444 for (EhSectionPiece &fde : sec.fdes) { in iterateFDEWithLSDAAux() 505 for (EhSectionPiece *fde : rec->fdes) { in finalizeContents() 530 for (EhSectionPiece *fde : rec->fdes) { in getFdeData() 595 for (EhSectionPiece *fde : rec->fdes) { in writeTo() 2997 SmallVector<FdeData, 0> fdes = getPartition().ehFrame->getFdeData(); in write() local 3005 write32(buf + 8, fdes.size()); in write() 3008 for (FdeData &fde : fdes) { in write()
|
H A D | InputSection.cpp | 1200 (id == 0 ? cies : fdes).emplace_back(off, this, size, firstRel); in split() 1211 fdes, [=](EhSectionPiece p) { return p.inputOff <= offset; }); in getParentOffset() 1212 if (it == fdes.begin() || it[-1].inputOff + it[-1].size <= offset) { in getParentOffset()
|
H A D | InputSection.h | 343 SmallVector<EhSectionPiece, 0> cies, fdes; variable
|
H A D | SyntheticSections.h | 40 SmallVector<EhSectionPiece *, 0> fdes; member
|
/openbsd/gnu/llvm/lld/MachO/ |
H A D | UnwindInfoSection.cpp | 231 FDE &fde = cast<ObjFile>(d->getFile())->fdes[d->unwindEntry]; in prepare() 364 const FDE &fde = cast<ObjFile>(d->getFile())->fdes[d->unwindEntry]; in relocateCompactUnwind()
|
H A D | InputFiles.h | 179 llvm::DenseMap<ConcatInputSection *, FDE> fdes; variable
|
H A D | InputFiles.cpp | 1495 fdes[isec] = {funcLength, cie.personalitySymbol, lsdaIsec}; in registerEhFrames()
|
/openbsd/gnu/usr.bin/perl/ |
H A D | syscall_emulator.c | 218 int fdes = (int)va_arg(args, long); in syscall_emulator() local 221 ret = getpeername(fdes, asa, alen); in syscall_emulator() 225 int fdes = (int)va_arg(args, long); in syscall_emulator() local 228 ret = getsockname(fdes, asa, alen); in syscall_emulator()
|
/openbsd/sys/kern/ |
H A D | uipc_syscalls.c | 1290 if ((error = getsock(p, SCARG(uap, fdes), &fp)) != 0) in sys_getsockname() 1337 if ((error = getsock(p, SCARG(uap, fdes), &fp)) != 0) in sys_getpeername() 1408 getsock(struct proc *p, int fdes, struct file **fpp) in getsock() argument 1412 fp = fd_getfile(p->p_fd, fdes); in getsock()
|
/openbsd/sys/sys/ |
H A D | syscallargs.h | 163 syscallarg(int) fdes; 169 syscallarg(int) fdes;
|