/openbmc/linux/tools/testing/selftests/net/ |
H A D | tls.c | 234 int send_len = 10; in TEST_F() local 237 ASSERT_EQ(strlen(test_str) + 1, send_len); in TEST_F() 239 EXPECT_EQ(send(self->fd, test_str, send_len, 0), send_len); in TEST_F() 240 EXPECT_NE(recv(self->cfd, buf, send_len, 0), -1); in TEST_F() 241 EXPECT_EQ(memcmp(buf, test_str, send_len), 0); in TEST_F() 492 unsigned int send_len = TLS_PAYLOAD_MAX_LEN; in TEST_F() local 498 EXPECT_GE(send(self->fd, buf, send_len, 0), 0); in TEST_F() 499 EXPECT_NE(recv(self->cfd, recv_mem, send_len, 0), -1); in TEST_F() 500 EXPECT_EQ(memcmp(buf, recv_mem, send_len), 0); in TEST_F() 506 int send_len = 10; in TEST_F() local [all …]
|
/openbmc/u-boot/drivers/net/ |
H A D | netconsole.c | 267 int send_len = min(len, (int)sizeof(input_buffer)); in nc_stdio_puts() local 268 nc_send_packet(s, send_len); in nc_stdio_puts() 269 len -= send_len; in nc_stdio_puts() 270 s += send_len; in nc_stdio_puts()
|
/openbmc/linux/drivers/staging/gdm724x/ |
H A D | gdm_usb.c | 597 u16 send_len = 0; in packet_aggregation() local 611 if (send_len + t_sdu->len > MAX_SDU_SIZE) { in packet_aggregation() 619 memcpy(multi_sdu->data + send_len, t_sdu->buf, t_sdu->len); in packet_aggregation() 621 send_len += (t_sdu->len + 3) & 0xfffc; in packet_aggregation() 632 multi_sdu->len = gdm_cpu_to_dev16(udev->gdm_ed, send_len); in packet_aggregation() 635 return send_len + offsetof(struct multi_sdu, data); in packet_aggregation() 715 u16 send_len; in gdm_usb_sdu_send() local 734 send_len = len + SDU_PARAM_LEN; in gdm_usb_sdu_send() 737 send_len = len - ETH_HLEN; in gdm_usb_sdu_send() 738 send_len += SDU_PARAM_LEN; in gdm_usb_sdu_send() [all …]
|
/openbmc/libpldm/tests/fuzz/ |
H A D | fd-fuzz.cpp | 402 uint32_t send_len; in LLVMFuzzerTestOneInput() local 403 rc = pldm_msgbuf_extract_uint32(fuzzctrl, send_len); in LLVMFuzzerTestOneInput() 408 send_len %= (MAX_SEND + 1); in LLVMFuzzerTestOneInput() 409 std::vector<uint8_t> send_buf(send_len); in LLVMFuzzerTestOneInput()
|
/openbmc/qemu/hw/i2c/ |
H A D | smbus_master.c | 144 int len, bool send_len) in smbus_write_block() argument 156 if (send_len) { in smbus_write_block()
|
/openbmc/linux/drivers/ps3/ |
H A D | ps3av_cmd.c | 215 int i, send_len, res; in ps3av_cmd_av_video_mute() local 227 send_len = sizeof(av_video_mute.send_hdr) + in ps3av_cmd_av_video_mute() 229 res = ps3av_do_pkt(PS3AV_CID_AV_VIDEO_MUTE, send_len, in ps3av_cmd_av_video_mute() 852 int ps3av_cmd_avb_param(struct ps3av_pkt_avb_param *avb, u32 send_len) in ps3av_cmd_avb_param() argument 859 res = ps3av_do_pkt(PS3AV_CID_AVB_PARAM, send_len, sizeof(*avb), in ps3av_cmd_avb_param()
|
H A D | ps3av.c | 288 int ps3av_do_pkt(u32 cid, u16 send_len, size_t usr_buf_size, in ps3av_do_pkt() argument 300 BUG_ON(send_len < PS3AV_HDR_SIZE); in ps3av_do_pkt() 301 BUG_ON(usr_buf_size < send_len); in ps3av_do_pkt() 305 ps3av_set_hdr(cid, send_len, buf); in ps3av_do_pkt() 308 res = ps3av_send_cmd_pkt(buf, &ps3av->recv_buf.reply_hdr, send_len, in ps3av_do_pkt()
|
/openbmc/qemu/include/hw/i2c/ |
H A D | smbus_master.h | 53 int len, bool send_len);
|
/openbmc/linux/arch/um/drivers/ |
H A D | vector_kern.c | 411 int result = 0, send_len, queue_depth = qi->max_depth; in vector_send() local 420 send_len = queue_depth; in vector_send() 424 if (send_len + qi->head > qi->max_depth) in vector_send() 425 send_len = qi->max_depth - qi->head; in vector_send() 427 if (send_len > 0) { in vector_send() 431 send_len, in vector_send() 435 (result != send_len); in vector_send() 447 result = send_len; in vector_send() 465 if (result != send_len) { in vector_send()
|
/openbmc/linux/fs/notify/inotify/ |
H A D | inotify_user.c | 321 size_t send_len = 0; in inotify_ioctl() local 333 send_len += sizeof(struct inotify_event); in inotify_ioctl() 334 send_len += round_event_name_len(fsn_event); in inotify_ioctl() 337 ret = put_user(send_len, (int __user *) p); in inotify_ioctl()
|
/openbmc/linux/net/smc/ |
H A D | smc_clc.c | 807 int len, send_len; in smc_clc_send_decline() local 826 send_len = sizeof(*dclc_v1); in smc_clc_send_decline() 830 send_len = sizeof(dclc); in smc_clc_send_decline() 832 dclc.hdr.length = htons(send_len); in smc_clc_send_decline() 836 vec.iov_len = send_len; in smc_clc_send_decline() 837 len = kernel_sendmsg(smc->clcsock, &msg, &vec, 1, send_len); in smc_clc_send_decline() 838 if (len < 0 || len < send_len) in smc_clc_send_decline()
|
/openbmc/linux/drivers/hid/i2c-hid/ |
H A D | i2c-hid-core.c | 167 u8 *send_buf, int send_len, u8 *recv_buf, int recv_len) in i2c_hid_xfer() argument 174 if (send_len) { in i2c_hid_xfer() 176 __func__, send_len, send_buf); in i2c_hid_xfer() 180 msgs[n].len = send_len; in i2c_hid_xfer()
|
/openbmc/linux/drivers/net/wireless/ath/ath6kl/ |
H A D | htc_mbox.c | 512 u32 padded_len, send_len; in ath6kl_htc_tx_issue() local 517 send_len = packet->act_len + HTC_HDR_LENGTH; in ath6kl_htc_tx_issue() 519 padded_len = CALC_TXRX_PADDED_LEN(target, send_len); in ath6kl_htc_tx_issue() 523 send_len, packet->info.tx.seqno, padded_len, in ath6kl_htc_tx_issue() 541 trace_ath6kl_htc_tx(status, packet->endpoint, packet->buf, send_len); in ath6kl_htc_tx_issue()
|
/openbmc/linux/fs/notify/fanotify/ |
H A D | fanotify_user.c | 977 size_t send_len = 0; in fanotify_ioctl() local 987 send_len += FAN_EVENT_METADATA_LEN; in fanotify_ioctl() 989 ret = put_user(send_len, (int __user *) p); in fanotify_ioctl()
|
/openbmc/linux/drivers/net/ethernet/chelsio/cxgb4/ |
H A D | cxgb4.h | 2125 const dma_addr_t *addr, u32 start, u32 send_len);
|