Home
last modified time | relevance | path

Searched refs:send_size (Results 1 – 12 of 12) sorted by relevance

/external/u-boot/drivers/tpm/
Dtpm_atmel_twi.c71 const uint8_t *sendbuf, size_t send_size, in tpm_atmel_twi_xfer() argument
79 printf("send to TPM (%d bytes, recv_len=%d):\n", send_size, *recv_len); in tpm_atmel_twi_xfer()
80 print_buffer(0, (void *)sendbuf, 1, send_size, 0); in tpm_atmel_twi_xfer()
84 res = i2c_write(0x29, 0, 0, (uchar *)sendbuf, send_size); in tpm_atmel_twi_xfer()
86 res = dm_i2c_write(dev, 0, sendbuf, send_size); in tpm_atmel_twi_xfer()
Dtpm-uclass.c71 int tpm_xfer(struct udevice *dev, const uint8_t *sendbuf, size_t send_size, in tpm_xfer() argument
81 return ops->xfer(dev, sendbuf, send_size, recvbuf, recv_size); in tpm_xfer()
94 if (count > send_size) { in tpm_xfer()
95 debug("invalid count value %x %zx\n", count, send_size); in tpm_xfer()
100 ret = ops->send(dev, sendbuf, send_size); in tpm_xfer()
Dtpm_tis_sandbox.c140 size_t send_size, uint8_t *recvbuf, in sandbox_tpm_xfer() argument
150 printf("tpm: %zd bytes, recv_len %zd, cmd = %x\n", send_size, in sandbox_tpm_xfer()
152 print_buffer(0, sendbuf, 1, send_size, 0); in sandbox_tpm_xfer()
Dtpm2_tis_sandbox.c259 size_t send_size, u8 *recvbuf, in sandbox_tpm2_xfer() argument
286 if (length != send_size) { in sandbox_tpm2_xfer()
288 send_size, length); in sandbox_tpm2_xfer()
/external/u-boot/include/
Dtpm-common.h109 int (*send)(struct udevice *dev, const u8 *sendbuf, size_t send_size);
151 int (*xfer)(struct udevice *dev, const u8 *sendbuf, size_t send_size,
200 int tpm_xfer(struct udevice *dev, const u8 *sendbuf, size_t send_size,
/external/curl/lib/
Dsmb.c376 smbc->send_size = len; in smb_send()
389 ssize_t len = smbc->send_size - smbc->sent; in smb_flush()
392 if(!smbc->send_size) in smb_flush()
404 smbc->send_size = 0; in smb_flush()
612 if(!smbc->send_size && smbc->upload_size) { in smb_send_and_recv()
624 smbc->send_size = nread; in smb_send_and_recv()
629 if(smbc->send_size) { in smb_send_and_recv()
636 if(smbc->send_size || smbc->upload_size) in smb_send_and_recv()
Dsmb.h44 size_t send_size; member
/external/webrtc/talk/media/sctp/
Dsctpdataengine.cc266 int send_size = usrsctp_sysctl_get_sctp_sendspace(); in SctpDataEngine() local
267 if (send_size != kSendBufferSize) { in SctpDataEngine()
268 LOG(LS_ERROR) << "Got different send size than expected: " << send_size; in SctpDataEngine()
/external/grpc-grpc/test/core/iomgr/ios/CFStreamTests/
DCFStreamEndpointTests.mm183 ssize_t send_size = send(svr_fd_, read_buffer, kBufferSize, 0);
184 XCTAssertGreaterThanOrEqual(send_size, 0);
/external/webrtc/webrtc/base/
Dsocket_unittest.cc968 int send_size = 0; in GetSetOptionsInternal() local
971 ASSERT_NE(-1, socket->GetOption(Socket::OPT_SNDBUF, &send_size)); in GetSetOptionsInternal()
977 ASSERT_NE(-1, socket->GetOption(Socket::OPT_SNDBUF, &send_size)); in GetSetOptionsInternal()
980 ASSERT_EQ(expected_size, send_size); in GetSetOptionsInternal()
/external/virglrenderer/src/
Dvrend_renderer.c5823 uint32_t send_size = util_format_get_nblocks(res->format, box->width, in read_transfer_data() local
5829 if ((send_size == size || bh == 1) && !invert && box->depth == 1) in read_transfer_data()
5830 vrend_read_from_iovec(iov, num_iovs, offset, data, send_size); in read_transfer_data()
5866 uint32_t send_size = util_format_get_nblocks(res->format, box->width, in write_transfer_data() local
5873 if ((send_size == size || bh == 1) && !invert && box->depth == 1) { in write_transfer_data()
5874 vrend_write_to_iovec(iov, num_iovs, offset, data, send_size); in write_transfer_data()
5947 GLuint send_size; in check_iov_bounds() local
5982 send_size = valid_layer_stride * info->box->depth; in check_iov_bounds()
5985 if (iovsize < send_size) in check_iov_bounds()
5987 if (iovsize < info->offset + send_size) in check_iov_bounds()
[all …]
/external/tensorflow/tensorflow/core/distributed_runtime/
Dmessage_wrappers.cc460 return request_.send_size(); in num_sends()
560 size_t ProtoRunGraphRequest::num_sends() const { return request_->send_size(); } in num_sends()