Home
last modified time | relevance | path

Searched refs:writesize (Results 1 – 11 of 11) sorted by relevance

/netbsd/src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
Dremote.exp96 proc gdb_load_timed {executable class writesize} { argument
98 set test "timed download `[file tail $executable]' - $class, $writesize"
100 if {$writesize != ""} {
101 gdb_test "set remote memory-write-packet-size $writesize" \
102 "The memory-write-packet-size on future remote targets is set to \"$writesize\"." \
/netbsd/src/external/bsd/libarchive/dist/libarchive/test/
Dtest_tar_large.c206 size_t writesize; in DEFINE_TEST() local
240 writesize = filedatasize; in DEFINE_TEST()
241 if ((int64_t)writesize > filesize) in DEFINE_TEST()
242 writesize = (size_t)filesize; in DEFINE_TEST()
243 assertA((int)writesize in DEFINE_TEST()
244 == archive_write_data(a, filedata, writesize)); in DEFINE_TEST()
245 filesize -= writesize; in DEFINE_TEST()
Dtest_write_format_zip_large.c341 size_t writesize, buffsize, s; in DEFINE_TEST() local
381 writesize = nullsize; in DEFINE_TEST()
382 if ((int64_t)writesize > filesize) in DEFINE_TEST()
383 writesize = (size_t)filesize; in DEFINE_TEST()
384 assertEqualIntA(a, (int)writesize, in DEFINE_TEST()
385 (int)archive_write_data(a, nulldata, writesize)); in DEFINE_TEST()
386 filesize -= writesize; in DEFINE_TEST()
/netbsd/src/sbin/dump/
Dtape.c60 int writesize; /* size of malloc()ed buffer for tape */ variable
125 writesize = ntrec * TP_BSIZE; in alloctape()
134 tenths = writesize / density + in alloctape()
143 xmalloc((unsigned)(reqsiz + writesize + pgoff + TP_BSIZE)); in alloctape()
305 if (got < writesize) { in flushtape()
376 if (got != writesize) { in trewind()
557 if (got != writesize) { in rollforward()
869 while (eot_count < 10 && size < writesize) { in doworker()
873 writesize-size); in doworker()
877 writesize-size); in doworker()
[all …]
/netbsd/src/sys/dev/flash/
Dflash.c175 pbuf[1], sc->flash_if->writesize); in flash_attach()
183 sc->flash_if->writesize); in flash_attach()
337 KASSERT(flash_if->writesize != 0); in flashstrategy()
Dflash.h109 uint32_t writesize; member
/netbsd/src/libexec/ftpd/
Dconf.c117 curclass.writesize = 0; in init_curclass()
383 curclass.writesize = 0; in parse_conf()
384 CONF_LL(writesize, arg, 0, SSIZE_MAX); in parse_conf()
Dextern.h292 LLT writesize; /* data write size */ member
Dftpd.c2120 if (curclass.writesize) { in write_data()
2121 if (curclass.writesize < c) in write_data()
2122 c = curclass.writesize; in write_data()
2230 (LLT)winsize, (LLT)curclass.writesize); in send_data_with_mmap()
2805 if (curclass.writesize) in statcmd()
2806 reply(0, "Write size: " LLF, (LLT)curclass.writesize); in statcmd()
/netbsd/src/sys/dev/nor/
Dnor.c159 sc->sc_flash_if.writesize = chip->nc_page_size; in nor_attach()
/netbsd/src/sys/dev/nand/
Dnand.c151 nand_flash_if.writesize = chip->nc_page_size; in nand_attach()