/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_property/ |
H A D | zfs_written_property_001_pos.ksh | 20 # Verify that "zfs list" gives correct values for written and written@ 26 # 2) Take snapshots, write data and verify written/ written@ properties for 55 log_assert "verify zfs written and written@ property" 62 typeset -l written=0 70 log_note "verify written property statistics for dataset" 77 written=$(get_prop written $TESTPOOL/$TESTFS1) 79 within_percent $written $expected_written 99.5 || \ 80 log_fail "Unexpected written value $written $expected_written" 85 log_note "verify written property statistics for snapshots" 88 written=$(get_prop written $TESTPOOL/$TESTFS1@snap$i) [all …]
|
/freebsd/contrib/libcbor/src/cbor/ |
H A D | serialization.c | 168 size_t written = cbor_serialize(item, *buffer, serialized_size); in cbor_serialize_alloc() local 169 CBOR_ASSERT(written == serialized_size); in cbor_serialize_alloc() 171 return written; in cbor_serialize_alloc() 211 size_t written = cbor_encode_bytestring_start(length, buffer, buffer_size); in cbor_serialize_bytestring() local 212 if (written > 0 && (buffer_size - written >= length)) { in cbor_serialize_bytestring() 213 memcpy(buffer + written, cbor_bytestring_handle(item), length); in cbor_serialize_bytestring() 214 return written + length; in cbor_serialize_bytestring() 220 size_t written = cbor_encode_indef_bytestring_start(buffer, buffer_size); in cbor_serialize_bytestring() local 221 if (written == 0) return 0; in cbor_serialize_bytestring() 226 chunks[i], buffer + written, buffer_size - written); in cbor_serialize_bytestring() [all …]
|
/freebsd/crypto/openssl/test/ |
H A D | wpackettest.c | 41 size_t written; in test_WPACKET_init() local 56 || !TEST_true(WPACKET_get_total_written(&pkt, &written)) in test_WPACKET_init() 57 || !TEST_mem_eq(buf->data, written, simple1, sizeof(simple1))) in test_WPACKET_init() 64 || !TEST_true(WPACKET_get_total_written(&pkt, &written)) in test_WPACKET_init() 65 || !TEST_mem_eq(buf->data, written, simple2, sizeof(simple2))) in test_WPACKET_init() 72 || !TEST_true(WPACKET_get_total_written(&pkt, &written)) in test_WPACKET_init() 73 || !TEST_mem_eq(buf->data, written, simple3, sizeof(simple3))) in test_WPACKET_init() 97 || !TEST_true(WPACKET_get_total_written(&pkt, &written)) in test_WPACKET_init() 98 || !TEST_mem_eq(sbuf, written, fixed, sizeof(sbuf)) in test_WPACKET_init() 106 || !TEST_true(WPACKET_get_total_written(&pkt, &written)) in test_WPACKET_init() [all …]
|
/freebsd/contrib/file/magic/Magdir/ |
H A D | lammps | 18 # written on a little endian machine 25 # written on a big endian machine 33 # written on a little endian machine 40 # written on a big endian machine 49 >8 regex/16 [0-9]+\ [A-Za-z]+\ [0-9]+ written by version %s 51 # Data file written either by LAMMPS, msi2lmp or VMD/TopoTools 53 >0x12 string CGCMM\ style written by TopoTools 54 >0x12 string msi2lmp written by msi2lmp 55 >0x11 string via\ write_data written by LAMMPS 57 # LAMMPS data file written by OVITO [all …]
|
/freebsd/sys/ufs/ffs/ |
H A D | softdep.h | 48 * The ATTACHED flag means that the data is not currently being written 58 * The COMPLETE flag indicates that the item has been written. For example, 59 * a dependency that requires that an inode be written will be marked 60 * COMPLETE after the inode has been written to disk. 71 * data block containing the "." and ".." entries has been written. 73 * count for ".." has been written. When both MKDIR flags have been 77 * the new directory to be written to disk. The RMDIR flag marks a dirrem 113 * written its UNLINKNEXT flags is set. When its predecessor in the 277 * written. The pd_diraddhd list maintains the list of diradd requests 279 * written to disk. Because a directory may have many new entries [all …]
|
/freebsd/share/man/man4/ |
H A D | sa.4 | 91 written, then a file mark will be written before the rewind is requested. 95 If the tape was written to, a file mark will be written. 98 last read, or the written file mark. 102 written, then a file mark will be written before the rewind is requested. 121 written to the tape. 140 Data written by the user is passed to the tape as a succession of 147 In other words, blocks that were written together may be read separately, 162 are larger than may be written to or read from the mounted tape using a single 165 are respected in terms of the block size written to tape. 227 written to the tape, and has not done a read since the last write, [all …]
|
/freebsd/tools/test/stress2/misc/ |
H A D | sendfile4.sh | 71 off_t written, pos; 100 NULL, &written, 0); 105 pos += written; 118 written = 413; 119 if (written > st.st_size - pos) 120 written = st.st_size - pos; 122 written = st.st_size - pos; 123 if (written > 1000) 124 written = 1000; 125 written = arc4random_uniform(written) + 1; [all …]
|
H A D | sendfile5.sh | 96 off_t written, pos; 123 NULL, &written, 0); 128 pos += written; 141 written = 413; 142 if (written > st.st_size - pos) 143 written = st.st_size - pos; 145 written = st.st_size - pos; 146 if (written > 1000) 147 written = 1000; 148 written = arc4random_uniform(written) + 1; [all …]
|
/freebsd/contrib/libpcap/missing/ |
H A D | asprintf.c | 27 * the output is written into an array (specified by argument s) in pcapint_vasprintf() 28 * rather than to a stream. If n is zero, nothing is written, in pcapint_vasprintf() 30 * beyond the n-1st are discarded rather than being written in pcapint_vasprintf() 31 * to the array, and a null character is written at the end in pcapint_vasprintf() 32 * of the characters actually written into the array. in pcapint_vasprintf() 37 * would have been written had n been sufficiently large, not in pcapint_vasprintf() 40 * output has been completely written if and only if the returned in pcapint_vasprintf() 45 * of characters that would have been written had a buffer been in pcapint_vasprintf() 85 * return value should be the number of characters written. in pcapint_vasprintf()
|
/freebsd/lib/libc/tests/nss/ |
H A D | getaddrinfo_test.c | 159 int written, i; in sdump_addrinfo() local 161 written = snprintf(buffer, buflen, "%d %d %d %d %d ", in sdump_addrinfo() 164 buffer += written; in sdump_addrinfo() 165 if (written > (int)buflen) in sdump_addrinfo() 167 buflen -= written; in sdump_addrinfo() 169 written = snprintf(buffer, buflen, "%s ", in sdump_addrinfo() 171 buffer += written; in sdump_addrinfo() 172 if (written > (int)buflen) in sdump_addrinfo() 174 buflen -= written; in sdump_addrinfo() 177 written = snprintf(buffer, buflen, "(null)"); in sdump_addrinfo() [all …]
|
H A D | gethostby_test.c | 405 int written; in sdump_hostent() local 407 written = snprintf(buffer, buflen, "%s %d %d", in sdump_hostent() 409 buffer += written; in sdump_hostent() 410 if (written > (int)buflen) in sdump_hostent() 412 buflen -= written; in sdump_hostent() 417 written = snprintf(buffer, buflen, " %s",*cp); in sdump_hostent() 418 buffer += written; in sdump_hostent() 419 if (written > (int)buflen) in sdump_hostent() 421 buflen -= written; in sdump_hostent() 427 written = snprintf(buffer, buflen, " noaliases"); in sdump_hostent() [all …]
|
/freebsd/contrib/ldns/ |
H A D | buffer.c | 102 int written = 0; in ldns_buffer_printf() local 111 written = vsnprintf((char *) ldns_buffer_current(buffer), remaining, in ldns_buffer_printf() 114 if (written == -1) { in ldns_buffer_printf() 117 } else if ((size_t) written >= remaining) { in ldns_buffer_printf() 118 if (!ldns_buffer_reserve(buffer, (size_t) written + 1)) { in ldns_buffer_printf() 123 written = vsnprintf((char *) ldns_buffer_current(buffer), in ldns_buffer_printf() 126 if (written == -1) { in ldns_buffer_printf() 131 buffer->_position += written; in ldns_buffer_printf() 133 return written; in ldns_buffer_printf()
|
/freebsd/crypto/openssl/doc/man3/ |
H A D | SSL_write.pod | 12 int SSL_write_ex(SSL *s, const void *buf, size_t num, size_t *written); 19 of bytes written in B<*written>. 58 must be written into or retrieved out of the BIO before being able to continue. 61 B<buf> of length B<num> has been written. This default behaviour can be changed 85 all requested application data bytes have been written to the SSL connection or, 87 been written to the SSL connection. Failure means that not all the requested 88 bytes have been written yet (if SSL_MODE_ENABLE_PARTIAL_WRITE is not in use) or 89 no bytes could be written to the SSL connection (if 102 bytes actually written to the TLS/SSL connection. 123 of bytes of the file written to the TLS/SSL connection. The return
|
H A D | EVP_PKEY_encapsulate.pod | 32 is written to the I<*wrappedkeylen> parameter unless I<wrappedkeylen> is NULL 33 and the maximum size of the generated key buffer is written to I<*genkeylen> 36 internally generated key is written to I<genkey> and its size is written to 37 I<*genkeylen>. The encapsulated version of the generated key is written to 38 I<wrappedkey> and its size is written to I<*wrappedkeylen>. Note that if 41 it is large enough to hold the result written to I<wrapped>.
|
H A D | BIO_read.pod | 14 int BIO_write_ex(BIO *b, const void *data, size_t dlen, size_t *written); 29 If successful then the number of bytes written is stored in I<*written> 30 unless I<written> is NULL. 66 Otherwise it returns the number of bytes written. 78 written (if the return value is positive) or that no data was successfully 79 read or written if the result is 0 or -1. If the return value is -2 then 118 I<written> parameter of the function can be NULL since OpenSSL 3.0.
|
/freebsd/contrib/diff/lib/ |
H A D | version-etc.c | 18 /* Written by Jim Meyering. */ 78 vfprintf (stream, _("Written by %s.\n"), authors); in version_etc_va() 82 vfprintf (stream, _("Written by %s and %s.\n"), authors); in version_etc_va() 86 vfprintf (stream, _("Written by %s, %s, and %s.\n"), authors); in version_etc_va() 92 vfprintf (stream, _("Written by %s, %s, %s,\nand %s.\n"), authors); in version_etc_va() 98 vfprintf (stream, _("Written by %s, %s, %s,\n%s, and %s.\n"), authors); in version_etc_va() 104 vfprintf (stream, _("Written by %s, %s, %s,\n%s, %s, and %s.\n"), in version_etc_va() 111 vfprintf (stream, _("Written by %s, %s, %s,\n%s, %s, %s, and %s.\n"), in version_etc_va() 119 Written by %s, %s, %s,\n%s, %s, %s, %s,\nand %s.\n"), in version_etc_va() 127 Written by %s, %s, %s,\n%s, %s, %s, %s,\n%s, and %s.\n"), in version_etc_va() [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | BinaryStreamWriter.h | 48 /// \returns a success error code if the data was successfully written, 56 /// \returns a success error code if the data was successfully written, 78 /// \returns a success error code if the data was successfully written, 85 /// \returns a success error code if the data was successfully written, 94 /// \returns a success error code if the data was successfully written, 102 /// \returns a success error code if the data was successfully written, 110 /// \returns a success error code if the data was successfully written, 118 /// \returns a success error code if the data was successfully written, 126 /// \returns a success error code if the data was successfully written, 142 /// \returns a success error code if the data was successfully written, [all...] |
/freebsd/share/man/man9/ |
H A D | VOP_GETPAGES.9 | 81 contiguous region of the file to be read or written. 87 The number of bytes that should be written from the pages of the array. 96 is set, the pages are to be invalidated after being written. 111 page written by 132 The page was successfully written. 137 The page was scheduled to be written asynchronously. 151 The page could not be written because of an error on the underlying storage 202 This manual page was written by
|
/freebsd/crypto/openssl/crypto/ |
H A D | der_writer.c | 29 * sub-packet and this sub-packet has nothing written to it, the DER length in int_end_context() 30 * will not be written, and the total written size will be unchanged before in int_end_context() 32 * anything was written, and only write our tag if it has. in int_end_context() 181 * sub-packet and this sub-packet has nothing written to it, the DER length in ossl_DER_w_end_sequence() 182 * will not be written, and the total written size will be unchanged before in ossl_DER_w_end_sequence() 184 * anything was written, and only write our tag if it has. in ossl_DER_w_end_sequence() 187 * we reproduce this flag if the written length was unchanged, or we will in ossl_DER_w_end_sequence()
|
H A D | packet.c | 21 pkt->written += len; in WPACKET_allocate_bytes() 49 if (pkt->maxsize - pkt->written < len) in WPACKET_reserve_bytes() 52 if (pkt->buf != NULL && (pkt->buf->length - pkt->written < len)) { in WPACKET_reserve_bytes() 105 pkt->written = 0; in wpacket_intern_init_len() 237 size_t packlen = pkt->written - sub->pwritten; in wpacket_intern_close() 251 pkt->written -= sub->lenbytes; in wpacket_intern_close() 361 sub->pwritten = pkt->written + lenbytes; in WPACKET_start_sub_packet_len__() 369 sub->packet_len = pkt->written; in WPACKET_start_sub_packet_len__() 412 if (maxmaxsize(lenbytes) < maxsize || maxsize < pkt->written) in WPACKET_set_max_size() 463 int WPACKET_get_total_written(WPACKET *pkt, size_t *written) in WPACKET_get_total_written() argument [all …]
|
/freebsd/contrib/libarchive/libarchive/ |
H A D | archive_write_data.3 | 43 Write data corresponding to the header just written. 45 Write data corresponding to the header just written. 49 written to the specified offset before writing the data. 52 Returns number of bytes written or -1 on error. 62 This function returns the number of bytes actually written, or 74 zero on success instead of returning the number of bytes written.
|
/freebsd/sys/contrib/openzfs/lib/libzfs/ |
H A D | THIRDPARTYLICENSE.openssl | 36 * prior written permission. For written permission, please contact 40 * nor may "OpenSSL" appear in their names without prior written 62 * This product includes cryptographic software written by Eric Young 63 * (eay@cryptsoft.com). This product includes software written by Tim 74 * This package is an SSL implementation written 76 * The implementation was written so as to conform with Netscapes SSL. 102 * "This product includes cryptographic software written by 108 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
|
/freebsd/sys/contrib/openzfs/module/icp/asm-x86_64/aes/ |
H A D | THIRDPARTYLICENSE.openssl | 36 * prior written permission. For written permission, please contact 40 * nor may "OpenSSL" appear in their names without prior written 62 * This product includes cryptographic software written by Eric Young 63 * (eay@cryptsoft.com). This product includes software written by Tim 74 * This package is an SSL implementation written 76 * The implementation was written so as to conform with Netscapes SSL. 102 * "This product includes cryptographic software written by 108 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
|
/freebsd/contrib/libpcap/ |
H A D | pcap-util.h | 16 * written permission. 28 * records are written in host byte order. 29 * Note that the bytes of packet data are written out in the order in 31 * written in host byte order, they're written in whatever order the 39 * machine (if the file was written in little-end order).
|
/freebsd/secure/lib/libcrypto/man/man3/ |
H A D | SSL_write.3 | 147 \& int SSL_write_ex(SSL *s, const void *buf, size_t num, size_t *written); 154 of bytes written in \fB*written\fR. 192 must be written into or retrieved out of the \s-1BIO\s0 before being able to continue. 195 \&\fBbuf\fR of length \fBnum\fR has been written. This default behaviour can be changed 217 all requested application data bytes have been written to the \s-1SSL\s0 connection or, 219 been written to the \s-1SSL\s0 connection. Failure means that not all the requested 220 bytes have been written yet (if \s-1SSL_MODE_ENABLE_PARTIAL_WRITE\s0 is not in use) or 221 no bytes could be written to the \s-1SSL\s0 connection (if 231 bytes actually written to the \s-1TLS/SSL\s0 connection. 246 of bytes of the file written to the \s-1TLS/SSL\s0 connection. The return
|