Home
last modified time | relevance | path

Searched full:wrote (Results 1 – 25 of 493) sorted by relevance

12345678910>>...20

/freebsd/contrib/dialog/
H A Dprogressbox.c39 } WROTE; typedef
51 WROTE *wrote; member
61 while (obj->wrote) { in free_obj()
62 WROTE *wrote = obj->wrote; in free_obj() local
63 obj->wrote = wrote->link; in free_obj()
64 free(wrote->text); in free_obj()
65 free(wrote); in free_obj()
202 WROTE *wrote = dlg_calloc(WROTE, 1); in get_line() local
204 if (wrote != 0) { in get_line()
205 wrote->text = dlg_strclone(obj->line); in get_line()
[all …]
/freebsd/sys/contrib/openzfs/tests/zfs-tests/cmd/file/
H A Dfile_append.c174 int wrote = write(fd, buf, blocksize); in main() local
176 if (wrote != blocksize) { in main()
177 if (wrote < 0) { in main()
181 "%s: unexpected short write, wrote %d " in main()
182 "byte, expected %d\n", execname, wrote, in main()
/freebsd/contrib/libpcap/
H A Dpcap-savefile.manfile.in59 read by a host with the same byte order as the host that wrote the file,
61 opposite byte order as the host that wrote the file, will have the value
63 the byte order of the host that wrote the file is the same as the byte
70 wrote the file and as 0x4d3cb2a1 by a host with the opposite byte order
71 as the host that wrote the file, the file format is the same as for
H A Dpcap-util.c45 * the byte order of the host that wrote the file to this host's byte
108 * that wrote the packet, and Linux cooked capture packets with a protocol
111 * acceptance field in the byte order of the host that wrote the packet.
114 * packets and, if the byte order host that wrote the packet, as
185 * wrote the file to this host's byte order.
240 * need to convert it from the byte order of the host that wrote the
390 * length values from the byte order of the host that wrote the file
/freebsd/sbin/nos-tun/
H A Dnos-tun.84 .\" <phk@FreeBSD.org> wrote this file. As long as you retain this notice you
89 wrote the program,
91 wrote the man-page.
/freebsd/sbin/dump/
H A Dtape.c760 int nextworker, size, wrote, eot_count; in worker() local
807 wrote = 0; in worker()
811 wrote = rmtwrite(wp->tblock[0]+size, in worker()
815 wrote = write(tapefd, wp->tblock[0]+size, in worker()
818 printf("worker %d wrote %d\n", worker_number, wrote); in worker()
820 if (wrote < 0) in worker()
822 if (wrote == 0) in worker()
824 size += wrote; in worker()
829 printf("worker %d only wrote %d out of %d bytes and gave up.\n", in worker()
836 if (wrote < 0 && errno == ENOSPC) { in worker()
[all …]
/freebsd/sbin/natd/
H A Dicmp.c45 int wrote; in SendNeedFragIcmp() local
111 wrote = sendto (sock, in SendNeedFragIcmp()
118 if (wrote != icmpLen) in SendNeedFragIcmp()
/freebsd/bin/nproc/
H A Dnproc.158 wrote the program and
60 wrote this page.
/freebsd/contrib/netbsd-tests/dev/raidframe/
H A Dt_raid.sh115 # check if we we get what we wrote
203 # check if we we get what we wrote
254 # check if we we get what we wrote
304 # check if we we get what we wrote
/freebsd/contrib/libpcap/doc/
H A DREADME.hpux21 wrote:
52 Harald Skotnes <harald@cc.uit.no> wrote:
81 Rick Jones wrote:
131 Dave Barr (barr@cis.ohio-state.edu) wrote:
/freebsd/contrib/libarchive/libarchive/test/
H A Dtest_write_filter_lzop.c149 failure("compression-level=9 wrote %d bytes, default wrote %d bytes", in DEFINE_TEST()
204 failure("Compression-level=1 wrote %d bytes; default wrote %d bytes", in DEFINE_TEST()
H A Dtest_write_filter_xz.c149 failure("compression-level=9 wrote %d bytes, default wrote %d bytes", in DEFINE_TEST()
207 failure("Compression-level=0 wrote %d bytes; default wrote %d bytes", in DEFINE_TEST()
H A Dtest_write_filter_bzip2.c151 failure("compression-level=9 wrote %d bytes, default wrote %d bytes", in DEFINE_TEST()
204 failure("Compression-level=0 wrote %d bytes; default wrote %d bytes", in DEFINE_TEST()
H A Dtest_write_filter_gzip.c182 failure("compression-level=9 wrote %d bytes, default wrote %d bytes", in DEFINE_TEST()
238 failure("Compression-level=1 wrote %d bytes; default wrote %d bytes", in DEFINE_TEST()
H A Dtest_write_filter_lz4.c157 failure("compression-level=9 wrote %d bytes, default wrote %d bytes", in DEFINE_TEST()
212 failure("Compression-level=1 wrote %d bytes; default wrote %d bytes", in DEFINE_TEST()
/freebsd/crypto/heimdal/doc/
H A Dack.texi7 Eric Young wrote ``libdes''. Heimdal used to use libdes, without it
18 The University of California at Berkeley initially wrote @code{telnet},
/freebsd/share/man/man9/
H A Drandom.9185 wrote
188 wrote
/freebsd/sys/contrib/zlib/
H A Dzlib.384 Mark Nelson wrote an article about
123 claim that you wrote the original software. If you use this software
/freebsd/usr.sbin/powerd/
H A Dpowerd.8154 first wrote
162 added features, and wrote this manual page.
/freebsd/usr.sbin/ppp/
H A Dchat.c501 int wrote; in chat_Write() local
525 wrote = physical_Write(c->physical, c->argptr, c->arglen); in chat_Write()
526 result = wrote > 0 ? 1 : 0; in chat_Write()
527 if (wrote == -1) { in chat_Write()
536 } else if (wrote < 2 && physical_IsSync(c->physical)) { in chat_Write()
541 c->argptr += wrote; in chat_Write()
542 c->arglen -= wrote; in chat_Write()
/freebsd/sys/contrib/openzfs/tests/zfs-tests/cmd/
H A Dmanipulate_user_buffer.c175 ssize_t wrote = 0; in write_thread() local
179 wrote = pwrite(fd, buf, blocksize, offset); in write_thread()
180 if (wrote != blocksize) { in write_thread()
/freebsd/usr.bin/bluetooth/rfcomm_sppd/
H A Drfcomm_sppd.c413 int n, wrote; in sppd_write() local
415 for (wrote = 0; size > 0; ) { in sppd_write()
428 wrote += n; in sppd_write()
435 return (wrote); in sppd_write()
/freebsd/sys/dev/ipmi/
H A Dipmi_kcs.c329 device_printf(sc->ipmi_dev, "KCS: Wrote address: %02x\n", req->ir_addr); in kcs_polled_request()
339 device_printf(sc->ipmi_dev, "KCS: Wrote command: %02x\n", in kcs_polled_request()
349 device_printf(sc->ipmi_dev, "KCS: Wrote command: %02x\n", in kcs_polled_request()
362 device_printf(sc->ipmi_dev, "KCS: Wrote data: %02x\n", in kcs_polled_request()
373 device_printf(sc->ipmi_dev, "KCS: Wrote last data: %02x\n", in kcs_polled_request()
/freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleThreadPlanStepThroughObjCTrampoline.h75 /// is the address we wrote the selector string
78 std::string m_sel_str; /// This is the string we wrote to memory - we
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DContinuationRecordBuilder.cpp104 // We need to inject some bytes before the member we just wrote but after in writeMemberType()
105 // the previous member. Save off the length of the member we just wrote so in writeMemberType()
112 // just wrote should now constitute the entirety of the current "new" in writeMemberType()

12345678910>>...20