| /freebsd/contrib/dialog/ |
| H A D | progressbox.c | 39 } 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 D | file_append.c | 174 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 D | pcap-savefile.manfile.in | 59 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 D | pcap-util.c | 45 * 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 D | nos-tun.8 | 4 .\" <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 D | tape.c | 760 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 D | icmp.c | 45 int wrote; in SendNeedFragIcmp() local 111 wrote = sendto (sock, in SendNeedFragIcmp() 118 if (wrote != icmpLen) in SendNeedFragIcmp()
|
| /freebsd/bin/nproc/ |
| H A D | nproc.1 | 58 wrote the program and 60 wrote this page.
|
| /freebsd/contrib/netbsd-tests/dev/raidframe/ |
| H A D | t_raid.sh | 115 # 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 D | README.hpux | 21 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 D | test_write_filter_lzop.c | 149 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 D | test_write_filter_xz.c | 149 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 D | test_write_filter_bzip2.c | 151 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 D | test_write_filter_gzip.c | 182 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 D | test_write_filter_lz4.c | 157 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 D | ack.texi | 7 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 D | random.9 | 185 wrote 188 wrote
|
| /freebsd/sys/contrib/zlib/ |
| H A D | zlib.3 | 84 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 D | powerd.8 | 154 first wrote 162 added features, and wrote this manual page.
|
| /freebsd/usr.sbin/ppp/ |
| H A D | chat.c | 501 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 D | manipulate_user_buffer.c | 175 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 D | rfcomm_sppd.c | 413 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 D | ipmi_kcs.c | 329 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 D | AppleThreadPlanStepThroughObjCTrampoline.h | 75 /// 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 D | ContinuationRecordBuilder.cpp | 104 // 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()
|