Searched refs:fstat (Results 126 - 150 of 427) sorted by relevance

1234567891011>>

/freebsd-11-stable/sbin/ggate/shared/
H A Dggate.c139 if (fstat(fd, &sb) == -1)
140 g_gate_xlog("fstat(): %s.", strerror(errno));
160 if (fstat(fd, &sb) == -1)
161 g_gate_xlog("fstat(): %s.", strerror(errno));
/freebsd-11-stable/usr.bin/diff/
H A Ddiff.c300 fstat(STDIN_FILENO, &stb1);
305 fstat(STDIN_FILENO, &stb2);
/freebsd-11-stable/contrib/unbound/compat/
H A Dgetentropy_solaris.c200 if (fstat(fd, &st) == -1 || !S_ISCHR(st.st_mode) ||
389 HX((e = fstat(0, &st)) == -1, st);
H A Dgetentropy_linux.c240 if (fstat(fd, &st) == -1 || !S_ISCHR(st.st_mode)) {
469 HX((e = fstat(0, &st)) == -1, st);
H A Dgetentropy_osx.c172 if (fstat(fd, &st) == -1 || !S_ISCHR(st.st_mode)) {
365 HX((e = fstat(0, &st)) == -1, st);
/freebsd-11-stable/contrib/gdb/gdb/
H A Di386-tdep.c65 "fctrl", "fstat", "ftag", "fiseg",
1233 ULONGEST fstat;
1257 regcache_raw_read_unsigned (regcache, I387_FSTAT_REGNUM, &fstat);
1258 fstat |= (7 << 11);
1259 regcache_raw_write_unsigned (regcache, I387_FSTAT_REGNUM, fstat);
1394 ULONGEST fstat;
1402 regcache_raw_read_unsigned (regcache, I387_FSTAT_REGNUM, &fstat);
1403 tos = (fstat >> 11) & 0x7;
1225 ULONGEST fstat; local
1384 ULONGEST fstat; local
H A Dstandalone.c191 fstat (int desc, struct stat *statbuf)
189 fstat (int desc, struct stat *statbuf) function
/freebsd-11-stable/crypto/openssh/
H A Dloginrec.c1102 if (fstat(fd, &buf) == 0)
1196 if (fstat(fd, &st) != 0) {
1275 if (fstat(fd, &buf) == 0)
1361 if (fstat(fd, &st) != 0) {
1680 if (fstat(fd, &fst) < 0) {
1681 logit("%s: fstat of %s failed: %s", __func__, _PATH_BTMP,
H A Dauthfile.c105 if (fstat(fd, &st) < 0)
186 if (fstat(fd, &st) < 0)
/freebsd-11-stable/contrib/groff/src/libs/libbib/
H A Dindex.cpp153 if (fstat(fd, &sb) < 0) {
154 error("can't fstat `%1': %2", name, strerror(errno));
369 if (fstat(fd, &sb) < 0) {
370 error("can't fstat: %1", strerror(errno));
393 if (fstat(fileno(fp), &sb) < 0) {
/freebsd-11-stable/usr.sbin/ctm/mkCTM/
H A Dmkctm.c167 fstat(fd1, &s1);
173 fstat(fd2, &s2);
327 fstat(fd1, &st);
/freebsd-11-stable/usr.sbin/config/
H A Dmain.c607 if (!changed && fstat(from_fd, &from_sb) < 0)
608 err(EX_OSERR, "moveifchanged fstat(%s)", from_name);
610 if (!changed && fstat(to_fd, &to_sb) < 0)
611 err(EX_OSERR, "moveifchanged fstat(%s)", to_name);
730 error = fstat(r, &st);
732 err(EXIT_FAILURE, "fstat() failed");
/freebsd-11-stable/sys/dev/nsp/
H A Dnsp.c958 register u_int8_t stat, fstat; local
980 fstat = bus_read_1(sc->port_res, nsp_fifosr);
981 if ((fstat & FIFOSR_FULLEMP) != 0)
1036 register u_int8_t stat, fstat; local
1056 fstat = bus_read_1(sc->port_res, nsp_fifosr);
1057 if ((fstat & FIFOSR_FULLEMP) != 0)
/freebsd-11-stable/contrib/gcc/
H A Dgcov-io.c109 if (fstat (fd, &st) < 0)
532 if (fstat (fileno (gcov_var.file), &status))
/freebsd-11-stable/contrib/diff/src/
H A Dcmp.c293 if (file_desc[f1] < 0 || fstat (file_desc[f1], stat_buf + f1) != 0)
318 if (fstat (STDOUT_FILENO, &outstat) == 0
/freebsd-11-stable/libexec/atrun/
H A Datrun.c206 if (fstat(fd_in, &buf) == -1)
207 perr("error in fstat of input file descriptor");
210 perr("error in fstat of input file");
264 fstat(fd_out, &buf);
/freebsd-11-stable/tools/regression/sockets/sendfile/
H A Dsendfile.c284 if (fstat(file_fd, &st) < 0)
285 FAIL_ERR("fstat")
325 if (fstat(file_fd, &sb) == 0)
/freebsd-11-stable/sys/sys/
H A Dsyscall.mk123 fstat.o \
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DRegisterInfos_i386.h232 DEFINE_FPR(fstat, fstat, LLDB_INVALID_REGNUM, dwarf_fstat_i386,
/freebsd-11-stable/contrib/binutils/bfd/
H A Dcache.c356 sts = fstat (fileno (f), sb);
/freebsd-11-stable/contrib/libreadline/examples/rlfe/
H A Dpty.c229 if (fstat(f, &buf) < 0)
/freebsd-11-stable/contrib/libstdc++/config/io/
H A Dbasic_file_stdio.cc372 const int __err = fstat(this->fd(), &__buffer);
/freebsd-11-stable/contrib/gcclibs/libmudflap/
H A Dmf-runtime.h174 #pragma redefine_extname fstat __mfwrap_fstat
/freebsd-11-stable/bin/sh/
H A Dredir.c200 if (fstat(f, &sb) != -1 && S_ISREG(sb.st_mode)) {
/freebsd-11-stable/contrib/tcp_wrappers/
H A Dtli.c203 if (fstat(fd, &from_client) != 0) {
204 tcpd_warn("fstat(fd %d): %m", fd);

Completed in 173 milliseconds

1234567891011>>