sent               86 lib/async_req/async_sock.c 	ssize_t sent;
sent              129 lib/async_req/async_sock.c 	state->sent = send(state->fd, state->buf, state->len, state->flags);
sent              130 lib/async_req/async_sock.c 	if (state->sent == -1) {
sent              145 lib/async_req/async_sock.c 	return state->sent;
sent               74 source3/include/async_smb.h 	size_t sent;
sent              176 source3/lib/packet.c 	ssize_t sent;
sent              178 source3/lib/packet.c 	sent = send(ctx->fd, ctx->out.data, ctx->out.length, 0);
sent              180 source3/lib/packet.c 	if (sent == -1) {
sent              185 source3/lib/packet.c 	memmove(ctx->out.data, ctx->out.data + sent,
sent              186 source3/lib/packet.c 		ctx->out.length - sent);
sent              187 source3/lib/packet.c 	ctx->out.length -= sent;
sent              652 source3/lib/util_sock.c 	size_t sent;
sent              664 source3/lib/util_sock.c 	sent = thistime;
sent              682 source3/lib/util_sock.c 	while (sent < to_send) {
sent              705 source3/lib/util_sock.c 		sent += thistime;
sent              709 source3/lib/util_sock.c 	return sent;
sent              595 source3/libsmb/async_smb.c 	req->sent = 0;
sent             1039 source3/libsmb/async_smb.c 		ssize_t sent;
sent             1043 source3/libsmb/async_smb.c 			if (to_send > req->sent) {
sent             1055 source3/libsmb/async_smb.c 		sent = sys_send(cli->fd, req->outbuf + req->sent,
sent             1056 source3/libsmb/async_smb.c 			    to_send - req->sent, 0);
sent             1058 source3/libsmb/async_smb.c 		if (sent < 0) {
sent             1063 source3/libsmb/async_smb.c 		req->sent += sent;
sent             1065 source3/libsmb/async_smb.c 		if (req->sent == to_send) {
sent              109 source3/rpc_client/rpc_transport_sock.c 	ssize_t sent;
sent              155 source3/rpc_client/rpc_transport_sock.c 	state->sent = async_send_recv(subreq, &err);
sent              156 source3/rpc_client/rpc_transport_sock.c 	if (state->sent == -1) {
sent              172 source3/rpc_client/rpc_transport_sock.c 	*psent = state->sent;
sent              958 source3/rpc_server/srv_pipe_hnd.c 	size_t sent;
sent             1349 source3/rpc_server/srv_pipe_hnd.c 			thistime = MIN(talloc_get_size(p->msg) - p->sent,
sent             1352 source3/rpc_server/srv_pipe_hnd.c 			memcpy(data, p->msg+p->sent, thistime);
sent             1354 source3/rpc_server/srv_pipe_hnd.c 			p->sent += thistime;
sent             1356 source3/rpc_server/srv_pipe_hnd.c 			if (p->sent < talloc_get_size(p->msg)) {
sent             1425 source3/rpc_server/srv_pipe_hnd.c 	state->p->sent = thistime;
sent             1428 source3/rpc_server/srv_pipe_hnd.c 	if (state->p->sent < received) {
sent              533 source3/torture/torture.c 	ssize_t sent = 0;
sent              568 source3/torture/torture.c 	for (count = 0; count < sizeof(buf); count += sent)
sent              579 source3/torture/torture.c 			sent = ((unsigned)sys_random()%(20))+ 1;
sent              580 source3/torture/torture.c 			if (sent > sizeof(buf) - count)
sent              582 source3/torture/torture.c 				sent = sizeof(buf) - count;
sent              585 source3/torture/torture.c 			if (cli_write(c, fnum, 0, buf+count, count, (size_t)sent) != sent) {
sent              592 source3/torture/torture.c 			sent = cli_read(c, fnum, buf_rd+count, count,
sent              594 source3/torture/torture.c 			if (sent < 0)
sent              600 source3/torture/torture.c 				sent = 0;
sent              602 source3/torture/torture.c 			if (sent > 0)
sent              604 source3/torture/torture.c 				if (memcmp(buf_rd+count, buf+count, sent) != 0)
sent              607 source3/torture/torture.c 					printf("offset: %d req %ld recvd %ld\n", count, (unsigned long)sizeof(buf)-count, (unsigned long)sent);
sent               41 source4/lib/socket/testsuite.c 	size_t sent, nread;
sent               76 source4/lib/socket/testsuite.c 	sent = size;
sent               77 source4/lib/socket/testsuite.c 	status = socket_sendto(sock2, &blob, &sent, srv_addr);
sent               93 source4/lib/socket/testsuite.c 	status = socket_sendto(sock1, &blob, &sent, from_addr);
sent              125 source4/lib/socket/testsuite.c 	size_t sent, nread;
sent              167 source4/lib/socket/testsuite.c 	sent = size;
sent              168 source4/lib/socket/testsuite.c 	status = socket_send(sock2, &blob, &sent);