| /freebsd/tools/test/stress2/misc/ |
| H A D | overlap.sh | 85 int fdes, count; 89 if ((fdes = open(file, O_RDWR|O_CREAT, 0664)) == -1) 95 while ((nwrite = pwrite(fdes, buf, siz, 0)) != -1) { 107 int fdes, count; 111 if ((fdes = open(file, O_RDWR|O_CREAT, 0664)) == -1) 116 while ((nread = pread(fdes, buf, siz, 0)) == 0) 128 } while ((nread = pread(fdes, buf, siz, 0)) != -1);
|
| /freebsd/include/ssp/ |
| H A D | socket.h | 51 (int fdes, struct sockaddr *__restrict name, socklen_t *__restrict namelen)) 58 return (__ssp_real(getpeername)(fdes, name, namelen)); 62 (int fdes, struct sockaddr *__restrict name, 70 return (__ssp_real(getsockname)(fdes, name, namelen));
|
| /freebsd/libexec/ftpd/ |
| H A D | popen.c | |
| /freebsd/crypto/heimdal/appl/ftp/ftpd/ |
| H A D | popen.c | 211 int fdes, status; in ftpd_pclose() local 219 if (pids == 0 || pids[fdes = fileno(iop)] == 0) in ftpd_pclose() 227 while ((pid = waitpid(pids[fdes], &status, 0)) < 0 && errno == EINTR) in ftpd_pclose() 230 pids[fdes] = 0; in ftpd_pclose()
|
| /freebsd/usr.sbin/cron/cron/ |
| H A D | popen.c | 220 int fdes; in cron_pclose() local 229 if (pids == 0 || pids[fdes = fileno(iop)] == 0) in cron_pclose() 233 while ((pid = wait(&stat_loc)) != pids[fdes] && pid != -1) in cron_pclose() 236 pids[fdes] = 0; in cron_pclose()
|
| /freebsd/usr.bin/at/ |
| H A D | at.c | 214 int fdes, lockdes, fd2; in writefile() local 283 if ((fdes = creat(atfile, O_WRONLY)) == -1) in writefile() 286 if ((fd2 = dup(fdes)) <0) in writefile() 312 if((fp = fdopen(fdes, "w")) == NULL) in writefile()
|
| /freebsd/sys/kern/ |
| H A D | uipc_syscalls.c | 1338 user_getsockname(struct thread *td, int fdes, struct sockaddr *asa, in user_getsockname() argument 1349 error = kern_getsockname(td, fdes, (struct sockaddr *)&ss); in user_getsockname() 1390 return (user_getsockname(td, uap->fdes, uap->asa, uap->alen, false)); in sys_getsockname() 1397 return (user_getsockname(td, uap->fdes, uap->asa, uap->alen, true)); in ogetsockname() 1402 user_getpeername(struct thread *td, int fdes, struct sockaddr *asa, in user_getpeername() argument 1413 error = kern_getpeername(td, fdes, (struct sockaddr *)&ss); in user_getpeername() 1461 return (user_getpeername(td, uap->fdes, uap->asa, uap->alen, false)); in sys_getpeername() 1468 return (user_getpeername(td, uap->fdes, uap->asa, uap->alen, true)); in ogetpeername()
|
| H A D | systrace_args.c | 221 iarg[a++] = p->fdes; /* int */ in systrace_args() 230 iarg[a++] = p->fdes; /* int */ in systrace_args()
|
| /freebsd/contrib/llvm-project/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)) 205 #define __sanitizer_syscall_post_getsockname(res, fdes, asa, alen) \ argument 207 res, (long long)(fdes), (long long)(asa), (long long)(alen)) 743 #define __sanitizer_syscall_pre_compat_43_ogetpeername(fdes, asa, alen) \ argument 745 (long long)(fdes), (long long)(asa), (long long)(alen)) [all …]
|
| /freebsd/contrib/llvm-project/lld/MachO/ |
| H A D | UnwindInfoSection.cpp | 216 FDE &fde = cast<ObjFile>(d->getFile())->fdes[d->unwindEntry()]; in prepare() 374 const FDE &fde = cast<ObjFile>(d->getFile())->fdes[d->unwindEntry()]; in relocateCompactUnwind()
|
| H A D | InputFiles.h | 186 llvm::DenseMap<ConcatInputSection *, FDE> fdes; 179 llvm::DenseMap<ConcatInputSection *, FDE> fdes; global() variable
|
| H A D | InputFiles.cpp | 1510 fdes[isec] = {funcLength, cie.personalitySymbol, lsdaIsec}; in registerEhFrames()
|
| /freebsd/contrib/llvm-project/lld/ELF/ |
| H A D | Relocations.cpp | 423 fdes = eh->fdes; in OffsetGetter() 425 j = fdes.begin(); in OffsetGetter() 436 while (j != fdes.end() && j->inputOff <= off) in get() 439 if (j == fdes.begin() || j[-1].inputOff + j[-1].size <= off) { in get() 454 ArrayRef<EhSectionPiece> cies, fdes; member in __anon400d48340111::OffsetGetter
|
| H A D | MapFile.cpp | 135 for (const EhSectionPiece *fde : rec->fdes) in printEhFrame()
|
| H A D | MarkLive.cpp | 155 for (const EhSectionPiece &fde : eh.fdes) { in scanEhFrameSection()
|
| H A D | InputSection.cpp | 1330 (id == 0 ? cies : fdes).emplace_back(off, this, size, firstRel); in split() 1341 fdes, [=](EhSectionPiece p) { return p.inputOff <= offset; }); in getParentOffset() 1342 if (it == fdes.begin() || it[-1].inputOff + it[-1].size <= offset) { in getParentOffset()
|
| H A D | SyntheticSections.cpp | 441 for (EhSectionPiece &fde : sec->fdes) { in addRecords() 449 rec->fdes.push_back(&fde); in addRecords() 475 for (EhSectionPiece &fde : sec.fdes) { in iterateFDEWithLSDAAux() 537 for (EhSectionPiece *fde : rec->fdes) { in finalizeContents() 562 for (EhSectionPiece *fde : rec->fdes) { in getFdeData() 630 for (EhSectionPiece *fde : rec->fdes) { in writeTo() 3636 SmallVector<FdeData, 0> fdes = getPartition().ehFrame->getFdeData(); in write() local 3644 write32(buf + 8, fdes.size()); in write() 3647 for (FdeData &fde : fdes) { in write()
|
| H A D | InputSection.h | 387 SmallVector<EhSectionPiece, 0> cies, fdes; variable
|
| H A D | SyntheticSections.h | 47 SmallVector<EhSectionPiece *, 0> fdes; member
|
| /freebsd/lib/libsys/ |
| H A D | _libsys.h | 503 int __sys_getpeername(int fdes, struct sockaddr * asa, __socklen_t * alen); 504 int __sys_getsockname(int fdes, struct sockaddr * asa, __socklen_t * alen);
|
| /freebsd/sys/sys/ |
| H A D | sysproto.h | 143 char fdes_l_[PADL_(int)]; int fdes; char fdes_r_[PADR_(int)]; member 148 char fdes_l_[PADL_(int)]; int fdes; char fdes_r_[PADR_(int)]; member 2457 char fdes_l_[PADL_(int)]; int fdes; char fdes_r_[PADR_(int)]; member 2477 char fdes_l_[PADL_(int)]; int fdes; char fdes_r_[PADR_(int)]; member
|
| /freebsd/sys/compat/linux/ |
| H A D | linux_file.c | 318 return (kern_lseek(td, args->fdes, args->off, args->whence)); in linux_lseek()
|
| /freebsd/sys/compat/freebsd32/ |
| H A D | freebsd32_systrace_args.c | 224 iarg[a++] = p->fdes; /* int */ in systrace_args() 233 iarg[a++] = p->fdes; /* int */ in systrace_args()
|
| /freebsd/sys/arm64/linux/ |
| H A D | linux_systrace_args.c | 487 iarg[a++] = p->fdes; /* l_uint */ in systrace_args()
|
| H A D | linux_proto.h | 271 char fdes_l_[PADL_(l_uint)]; l_uint fdes; char fdes_r_[PADR_(l_uint)]; member
|