Home
last modified time | relevance | path

Searched refs:MSG_MORE (Results 1 – 25 of 45) sorted by relevance

12

/OK3568_Linux_fs/kernel/crypto/
H A Dalgif_hash.c78 if ((msg->msg_flags & MSG_MORE)) in hash_sendmsg()
114 ctx->more = msg->msg_flags & MSG_MORE; in hash_sendmsg()
140 flags |= MSG_MORE; in hash_sendpage()
146 if (!(flags & MSG_MORE)) { in hash_sendpage()
155 if (!(flags & MSG_MORE)) { in hash_sendpage()
175 ctx->more = flags & MSG_MORE; in hash_sendpage()
H A Daf_alg.c968 ctx->more = msg->msg_flags & MSG_MORE; in af_alg_sendmsg()
993 flags |= MSG_MORE; in af_alg_sendpage()
1026 ctx->more = flags & MSG_MORE; in af_alg_sendpage()
/OK3568_Linux_fs/kernel/net/sunrpc/
H A Dsocklib.c283 msg->msg_flags |= MSG_MORE; in xprt_sock_sendmsg()
290 msg->msg_flags &= ~MSG_MORE; in xprt_sock_sendmsg()
309 msg->msg_flags &= ~MSG_MORE; in xprt_sock_sendmsg()
321 msg->msg_flags &= ~MSG_MORE; in xprt_sock_sendmsg()
H A Dsvcsock.c1098 msg->msg_flags = MSG_MORE; in svc_tcp_sendmsg()
1106 flags = head->iov_len < xdr->len ? MSG_MORE | MSG_SENDPAGE_NOTLAST : 0; in svc_tcp_sendmsg()
1121 flags = MSG_MORE | MSG_SENDPAGE_NOTLAST; in svc_tcp_sendmsg()
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/bits/
H A Dsocket.h237 MSG_MORE = 0x8000, /* Sender will send more. */ enumerator
238 #define MSG_MORE MSG_MORE macro
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/bits/
H A Dsocket.h237 MSG_MORE = 0x8000, /* Sender will send more. */ enumerator
238 #define MSG_MORE MSG_MORE macro
/OK3568_Linux_fs/kernel/Documentation/networking/
H A Dtls.rst89 MSG_MORE is passed. MSG_MORE will delay creation of a record until
90 MSG_MORE is not passed, or the maximum record size is reached.
97 call using MSG_MORE, the MSG_MORE data is left on the socket buffer.
H A Drxrpc.rst238 (#) When sending data for a call, sendmsg is given MSG_MORE if there's more
241 (#) When receiving data for a call, recvmsg flags MSG_MORE if there's more
318 of the last data message in that phase yet), then MSG_MORE will be
605 MSG_MORE should be set in msghdr::msg_flags on all but the last part of
616 pick up. MSG_MORE will be flagged by recvmsg() if there's more reply data
724 be delivered with MSG_MORE flagged.
740 MSG_MORE should be set in msghdr::msg_flags on all but the last message
876 MSG_MORE if there will be subsequent data sends for this call.
879 other than MSG_MORE. len is the total amount of data to transmit.
/OK3568_Linux_fs/kernel/tools/testing/vsock/
H A Dcontrol.c122 ret = send(control_fd, str, len, MSG_MORE); in control_writeln()
/OK3568_Linux_fs/kernel/drivers/infiniband/sw/siw/
H A Dsiw_qp_tx.c329 flags = MSG_MORE | MSG_DONTWAIT | MSG_SENDPAGE_NOTLAST; in siw_tcp_sendpages()
335 flags = MSG_MORE | MSG_DONTWAIT; in siw_tcp_sendpages()
440 rv = siw_tx_ctrl(c_tx, s, MSG_DONTWAIT | MSG_MORE); in siw_tx_hdt()
876 msg_flags = MSG_DONTWAIT | MSG_MORE; in siw_qp_sq_proc_tx()
/OK3568_Linux_fs/kernel/fs/afs/
H A Drxrpc.c291 msg->msg_flags |= MSG_MORE; in afs_load_bvec()
296 msg->msg_flags &= ~MSG_MORE; in afs_load_bvec()
443 msg.msg_flags = MSG_WAITALL | (call->send_pages ? MSG_MORE : 0); in afs_make_call()
/OK3568_Linux_fs/kernel/net/rds/
H A Dtcp_send.c114 more = rm->data.op_nents > 1 ? (MSG_MORE | MSG_SENDPAGE_NOTLAST) : 0; in rds_tcp_xmit()
/OK3568_Linux_fs/kernel/drivers/nvme/target/
H A Dtcp.c566 left, MSG_DONTWAIT | MSG_MORE | MSG_SENDPAGE_NOTLAST); in nvmet_try_send_data_pdu()
594 flags |= MSG_MORE | MSG_SENDPAGE_NOTLAST; in nvmet_try_send_data()
641 flags |= MSG_MORE | MSG_SENDPAGE_NOTLAST; in nvmet_try_send_response()
670 flags |= MSG_MORE | MSG_SENDPAGE_NOTLAST; in nvmet_try_send_r2t()
700 msg.msg_flags |= MSG_MORE; in nvmet_try_send_ddgst()
/OK3568_Linux_fs/kernel/tools/testing/selftests/net/
H A Dtls.c303 EXPECT_EQ(send(self->fd, test_str, send_len, MSG_MORE), send_len); in TEST_F()
317 EXPECT_EQ(send(self->fd, test_str, send_len, MSG_MORE), send_len); in TEST_F()
743 EXPECT_EQ(send(self->fd, test_str_first, len, MSG_MORE), len); in TEST_F()
1190 EXPECT_EQ(send(self->fd, test_str, send_len, MSG_MORE), send_len); in TEST_F()
H A Dudpgso.c482 if (!__send_one(fd, &msg, MSG_MORE)) in send_one()
/OK3568_Linux_fs/kernel/net/rxrpc/
H A Drecvmsg.c631 msg->msg_flags |= MSG_MORE; in rxrpc_recvmsg()
633 msg->msg_flags &= ~MSG_MORE; in rxrpc_recvmsg()
/OK3568_Linux_fs/kernel/net/tls/
H A Dtls_device.c435 ~(MSG_MORE | MSG_DONTWAIT | MSG_NOSIGNAL | MSG_SENDPAGE_NOTLAST)) in tls_push_data()
500 if (flags & (MSG_SENDPAGE_NOTLAST | MSG_MORE)) { in tls_push_data()
575 flags |= MSG_MORE; in tls_device_sendpage()
H A Dtls_sw.c934 bool eor = !(msg->msg_flags & MSG_MORE); in tls_sw_sendmsg()
948 if (msg->msg_flags & ~(MSG_MORE | MSG_DONTWAIT | MSG_NOSIGNAL | in tls_sw_sendmsg()
1268 if (flags & ~(MSG_MORE | MSG_DONTWAIT | MSG_NOSIGNAL | in tls_sw_sendpage_locked()
1282 if (flags & ~(MSG_MORE | MSG_DONTWAIT | MSG_NOSIGNAL | in tls_sw_sendpage()
/OK3568_Linux_fs/kernel/Documentation/crypto/
H A Duserspace-if.rst124 - MSG_MORE: If this flag is set, the send system call acts like a
178 - MSG_MORE: If this flag is set, the send system call acts like a
241 - MSG_MORE: If this flag is set, the send system call acts like a
/OK3568_Linux_fs/kernel/drivers/vhost/
H A Dnet.c835 msg.msg_flags |= MSG_MORE; in handle_tx_copy()
837 msg.msg_flags &= ~MSG_MORE; in handle_tx_copy()
930 msg.msg_flags |= MSG_MORE; in handle_tx_zerocopy()
932 msg.msg_flags &= ~MSG_MORE; in handle_tx_zerocopy()
/OK3568_Linux_fs/kernel/tools/perf/trace/beauty/include/linux/
H A Dsocket.h302 #define MSG_MORE 0x8000 /* Sender will send more */ macro
/OK3568_Linux_fs/kernel/include/linux/
H A Dsocket.h302 #define MSG_MORE 0x8000 /* Sender will send more */ macro
/OK3568_Linux_fs/kernel/net/ipv4/
H A Dudp.c1046 int corkreq = READ_ONCE(up->corkflag) || msg->msg_flags&MSG_MORE; in udp_sendmsg()
1272 corkreq ? msg->msg_flags|MSG_MORE : msg->msg_flags); in udp_sendmsg()
1319 flags |= MSG_MORE; in udp_sendpage()
1322 struct msghdr msg = { .msg_flags = flags|MSG_MORE }; in udp_sendpage()
1355 if (!(READ_ONCE(up->corkflag) || (flags&MSG_MORE))) in udp_sendpage()
/OK3568_Linux_fs/kernel/net/kcm/
H A Dkcmsock.c773 flags |= MSG_MORE; in kcm_sendpage()
776 eor = !(flags & MSG_MORE); in kcm_sendpage()
911 !(msg->msg_flags & MSG_MORE) : !!(msg->msg_flags & MSG_EOR); in kcm_sendmsg()
/OK3568_Linux_fs/kernel/net/ceph/
H A Dmessenger.c549 msg.msg_flags |= MSG_MORE; in ceph_tcp_sendmsg()
1557 int more = MSG_MORE | MSG_SENDPAGE_NOTLAST; in write_partial_message_data()
1587 more = MSG_MORE; in write_partial_message_data()
1619 int more = MSG_MORE | MSG_SENDPAGE_NOTLAST; in write_partial_skip()
1627 more = MSG_MORE; in write_partial_skip()

12