Searched refs:fwrite (Results 101 - 125 of 239) sorted by relevance

12345678910

/freebsd-current/contrib/libevent/sample/
H A Dhttp-connect.c67 fwrite(evbuffer_pullup(evbuf, len), len, 1, stdout);
/freebsd-current/usr.bin/sdiff/
H A Dedit.c193 nwritten = fwrite(buf, sizeof(*buf), nread, outfp);
/freebsd-current/usr.bin/sed/
H A Dprocess.c88 fwrite(ps, 1, psl, outfile); \
558 fwrite(appends[idx].s, sizeof(char), appends[idx].len,
573 (void)fwrite(buf, sizeof(char), count, outfile);
631 fwrite(s, 1, clen, outfile);
/freebsd-current/lib/libc/stdio/
H A DMakefile.inc14 fwrite.c getc.c getchar.c getdelim.c getline.c \
65 fread.3 fwrite.3 \
/freebsd-current/sbin/restore/
H A Ddirs.c390 if (fwrite(dirbuf, DIRBLKSIZ, 1, df) != 1)
406 if (fwrite(dirbuf, (int)dirloc, 1, df) != 1)
419 if (mf != NULL && fwrite(buf, size, 1, mf) != 1)
756 if (fwrite((char *)&node, sizeof(struct modeinfo), 1, mf) != 1)
H A Dsymtab.c458 (void) fwrite(ep->e_name, sizeof(char),
485 (void) fwrite((char *)tep, sizeof(struct entry), 1, fd);
496 (void) fwrite((char *)&tentry, sizeof(struct entry *), 1, fd);
505 (void) fwrite((char *)&hdr, sizeof(struct symtableheader), 1, fd);
507 fprintf(stderr, "fwrite: %s\n", strerror(errno));
/freebsd-current/sys/contrib/dev/acpica/common/
H A Dadfile.c246 Actual = fwrite (Buffer, 1, (size_t) Length, File);
/freebsd-current/sys/contrib/dev/acpica/include/
H A Dacclib.h399 fwrite (
/freebsd-current/stand/liblua/
H A Dlstd.c120 fwrite(const void *ptr, size_t size, size_t count, FILE *stream) function
/freebsd-current/contrib/wpa/src/crypto/
H A Drandom.c412 if (fwrite(&opr, 1, 1, f) != 1 ||
413 fwrite(buf, RANDOM_ENTROPY_SIZE, 1, f) != 1)
/freebsd-current/usr.bin/printf/
H A Dprintf.c150 fwrite(start, 1, fmt - start, stdout);
180 fwrite(start, 1, fmt - start, stdout);
/freebsd-current/contrib/libarchive/libarchive/test/
H A Dtest_acl_pax.c265 assertEqualInt(used, (size_t)fwrite(buff, 1, (unsigned int)used, f));
370 assertEqualInt(used, (size_t)fwrite(buff, 1, (unsigned int)used, f));
/freebsd-current/contrib/libdiff/lib/
H A Ddiff_output.c100 wlen = fwrite(buf, 1, nbuf, dest);
109 wlen = fwrite(buf, 1, nbuf, dest);
/freebsd-current/contrib/libpcap/
H A Dsf-pcap.c739 if (fwrite((char *)&hdr, sizeof(hdr), 1, fp) != 1)
764 * Note that if we could guarantee that fwrite() was atomic we
766 * but the standard defines fwrite() as a series of fputc() calls,
769 * http://pubs.opengroup.org/onlinepubs/009695399/functions/fwrite.html
789 if (fwrite(&sf_hdr, sizeof(sf_hdr), 1, f) == 1) {
790 (void)fwrite(sp, h->caplen, 1, f);
/freebsd-current/usr.bin/bsdiff/bsdiff/
H A Dbsdiff.c198 if (fwrite(header, 32, 1, pf) != 1)
199 err(1, "fwrite(%s)", argv[3]);
323 if (fwrite(header, 32, 1, pf) != 1)
324 err(1, "fwrite(%s)", argv[3]);
/freebsd-current/contrib/bearssl/tools/
H A Dfiles.c89 wlen = fwrite(buf, 1, len, f);
/freebsd-current/contrib/nvi/ex/
H A Dex_write.c332 if (fwrite(p, 1, len, fp) != len)
/freebsd-current/sys/contrib/zstd/programs/
H A Ddatagen.c19 #include <stdio.h> /* FILE, fwrite, fprintf */
179 { size_t const unused = fwrite(buff, 1, genBlockSize, stdout); (void)unused; }
/freebsd-current/crypto/openssl/crypto/rand/
H A Drandfile.c252 ret = fwrite(buf, 1, RAND_BUF_SIZE, out);
/freebsd-current/usr.sbin/extattr/
H A Drmextattr.c299 fwrite(buf, ret, 1, stdout);
/freebsd-current/usr.bin/localedef/
H A Dlocaledef.c218 if (fwrite(buf, sz, 1, f) < 1) {
/freebsd-current/usr.sbin/pciconf/
H A Dpciconf.c1157 res = fwrite(db, width, 1, stdout);
1168 res = fwrite(dh, width, 1, stdout);
1179 res = fwrite(dd, width, 1, stdout);
1190 res = fwrite(dx, width, 1, stdout);
/freebsd-current/usr.bin/mkesdb/
H A Dyacc.y204 if (fwrite(serialized, size, 1, fp) != 1)
205 err(EXIT_FAILURE, "fwrite");
/freebsd-current/usr.bin/nl/
H A Dnl.c335 (void)fwrite(buffer, linelen, 1, stdout);
/freebsd-current/usr.sbin/bsdinstall/distfetch/
H A Ddistfetch.c199 if (fwrite(block, 1, chunk, file_out) < chunk)

Completed in 389 milliseconds

12345678910