Home
last modified time | relevance | path

Searched refs:sendfile (Results 1 – 25 of 40) sorted by relevance

12

/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/rsend/
H A Dsend_encrypted_props.ksh52 [[ -f $sendfile ]] && log_must rm $sendfile
60 typeset sendfile=/$TESTPOOL/sendfile
94 log_must eval "zfs send $snap > $sendfile"
96 "$TESTPOOL/recv < $sendfile"
103 log_must eval "zfs send -w $esnap > $sendfile"
124 log_must eval "zfs send $snap > $sendfile"
140 log_must eval "zfs send -p $snap > $sendfile"
158 log_must eval "zfs send -R $snap > $sendfile"
174 log_must eval "zfs send -p $snap > $sendfile"
188 log_must eval "zfs send -R $snap > $sendfile"
[all …]
H A Dsend-wR_encrypted_zvol.ksh48 [[ -f $sendfile ]] && log_must rm $sendfile
60 typeset sendfile=$TESTDIR/sendfile
97 log_must eval "zfs send -wR $TESTPOOL/$TESTVOL@snap$snap_count > $sendfile"
98 log_must eval "zfs recv $TESTPOOL/recv < $sendfile"
H A Drecv_dedup.ksh35 rm $sendfile
42 typeset sendfile=/$TESTPOOL/dedup.zsend
45 log_must eval "bzcat <$sendfile_compressed >$sendfile"
47 log_must eval "zstream redup $sendfile | zfs recv -d $TESTPOOL/recv"
H A Dsend_encrypted_truncated_files.ksh49 [[ -f $sendfile ]] && log_must rm $sendfile
70 typeset sendfile=/$TESTPOOL/sendfile
114 log_must eval "zfs send -wp $TESTPOOL/$TESTFS2@snap1 > $sendfile"
117 log_must eval "zfs recv -F $TESTPOOL/recv < $sendfile"
H A Drecv_dedup_encrypted_zvol.ksh34 rm $sendfile
45 typeset sendfile=/$TESTPOOL/dedup_encrypted_zvol.zsend
51 log_must eval "bzcat <$sendfile_compressed >$sendfile"
52 log_must eval "zstream redup $sendfile | zfs recv $TESTPOOL/recv"
H A Dsend_encrypted_files.ksh53 [[ -f $sendfile ]] && log_must rm $sendfile
60 typeset sendfile=/$TESTPOOL/sendfile
105 log_must eval "zfs send -wp $TESTPOOL/$TESTFS2@snap1 > $sendfile"
108 log_must eval "zfs recv -F $TESTPOOL/recv < $sendfile"
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_receive/
H A Dzfs_receive_raw_-d.ksh42 rm -f $sendfile
51 sendfile=$TEST_BASE_DIR/sendfile.$$
57 log_must eval "zfs send -Rw $TESTPOOL/$TESTFS1/child@snap > $sendfile"
59 log_must zfs receive -Fd $TESTPOOL < $sendfile
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_send/
H A Dzfs_send_sparse.ksh52 sendfile="$(get_prop mountpoint $sendfs)/data.bin"
53 log_must dd if=/dev/urandom of=$sendfile bs=1 count=1 seek=$offset
59 log_must cmp $sendfile $recvfile $offset $offset
60 sendsz=$(stat_size $sendfile)
63 log_fail "$sendfile ($sendsz) and $recvfile ($recvsz) differ."
/f-stack/app/nginx-1.16.1/auto/os/
H A Dlinux108 # sendfile()
111 ngx_feature="sendfile()"
114 ngx_feature_incs="#include <sys/sendfile.h>
120 n = sendfile(s, fd, &off, 1);
135 ngx_feature_incs="#include <sys/sendfile.h>
141 n = sendfile(s, fd, &off, 1);
H A Ddarwin90 # sendfile()
92 ngx_feature="sendfile()"
103 n = sendfile(s, fd, off, &n, NULL, 0);
H A Dfreebsd38 # sendfile
41 echo " + sendfile() found"
49 echo " + sendfile()'s SF_NODISKIO found"
H A Dsolaris33 ngx_feature_incs="#include <sys/sendfile.h>"
H A Dconf36 echo " + sendfile() found"
/f-stack/app/nginx-1.16.1/src/core/
H A Dngx_output_chain.c250 ngx_uint_t sendfile; in ngx_output_chain_as_is() local
267 sendfile = ctx->sendfile; in ngx_output_chain_as_is()
272 sendfile = 0; in ngx_output_chain_as_is()
277 if (!sendfile) { in ngx_output_chain_as_is()
527 ngx_uint_t sendfile; in ngx_output_chain_copy_buf() local
535 sendfile = ctx->sendfile && !ctx->directio; in ngx_output_chain_copy_buf()
540 sendfile = 0; in ngx_output_chain_copy_buf()
552 if (sendfile) { in ngx_output_chain_copy_buf()
652 if (sendfile) { in ngx_output_chain_copy_buf()
H A Dngx_buf.h84 unsigned sendfile:1; member
H A Dngx_connection.h186 unsigned sendfile:1; member
/f-stack/app/nginx-1.16.1/src/os/unix/
H A Dngx_linux_config.h77 extern ssize_t sendfile(int s, int fd, int32_t *offset, size_t size);
H A Dngx_linux_sendfile_chain.c259 n = sendfile(c->fd, file->file->fd, &offset, size); in ngx_linux_sendfile()
419 n = sendfile(ctx->socket, file->file->fd, &offset, ctx->size); in ngx_linux_sendfile_thread_handler()
H A Dngx_darwin_sendfile_chain.c135 rc = sendfile(file->file->fd, c->fd, file->file_pos, in ngx_darwin_sendfile_chain()
/f-stack/app/nginx-1.16.1/
H A DCHANGES.ru1344 если одновременно используются директивы aio и sendfile.
4055 *) Добавление: параметр sendfile в директиве aio во FreeBSD.
4314 $r->sendfile.
4911 использование sendfile.
5065 *) Добавление: поддержка sendfile() в MacOSX 10.5.
6105 *) Добавление: директива sendfile работает внутри блока if.
6174 *) Исправление: при использовании $r->sendfile() byte-ranges
8298 sendfile.
8407 не использовался sendfile.
8423 не использовался sendfile.
[all …]
/f-stack/app/nginx-1.16.1/conf/
H A Dnginx.conf31 sendfile off;
/f-stack/doc/
H A DF-Stack_Nginx_APP_Guide.md86 sendfile off; # sendfile off
/f-stack/app/nginx-1.16.1/src/event/
H A Dngx_event_connect.c178 c->sendfile = 1;
186 c->sendfile = 0;
/f-stack/app/nginx-1.16.1/src/http/
H A Dngx_http_copy_filter_module.c113 ctx->sendfile = c->sendfile; in ngx_http_copy_filter()
/f-stack/freebsd/kern/
H A Dcapabilities.conf601 sendfile

12