/linux-6.3-rc2/drivers/input/touchscreen/ |
A D | cyttsp5.c | 186 u8 response_buf[CY_MAX_INPUT]; member 447 size = get_unaligned_le16(&ts->response_buf[0]); in cyttsp5_validate_cmd_response() 455 if (ts->response_buf[4] != HID_OUTPUT_BL_SOP) { in cyttsp5_validate_cmd_response() 460 if (ts->response_buf[size - 1] != HID_OUTPUT_BL_EOP) { in cyttsp5_validate_cmd_response() 465 crc = crc_itu_t(0xFFFF, &ts->response_buf[4], size - 7); in cyttsp5_validate_cmd_response() 466 if (get_unaligned_le16(&ts->response_buf[size - 3]) != crc) { in cyttsp5_validate_cmd_response() 473 status = ts->response_buf[5]; in cyttsp5_validate_cmd_response() 499 unsigned int btns = ts->response_buf[HID_SYSINFO_BTN_OFFSET] & in cyttsp5_si_get_btn_data() 510 &ts->response_buf[HID_SYSINFO_SENSING_OFFSET]; in cyttsp5_get_sysinfo_regs() 624 memcpy(desc, ts->response_buf, sizeof(*desc)); in cyttsp5_get_hid_descriptor() [all …]
|
/linux-6.3-rc2/fs/ksmbd/ |
A D | smb2pdu.c | 49 *rsp = smb2_get_msg(work->response_buf); in __wbuf() 235 *(__be32 *)work->response_buf = in init_smb2_neg_rsp() 275 inc_rfc1001_len(work->response_buf, in init_smb2_neg_rsp() 383 inc_rfc1001_len(work->response_buf, in init_chained_smb2_rsp() 484 *(__be32 *)work->response_buf = in init_smb2_rsp_hdr() 543 if (!work->response_buf) in smb2_allocate_rsp_buf() 4760 work->response_buf); in smb2_get_info_file() 4864 work->response_buf); in smb2_get_info_file() 4874 rsp, work->response_buf, in smb2_get_info_file() 5100 rsp, work->response_buf, in smb2_get_info_filesystem() [all …]
|
A D | ksmbd_work.h | 32 void *response_buf; member 95 return work->response_buf + work->next_smb2_rsp_hdr_off + 4; in ksmbd_resp_buf_next()
|
A D | connection.c | 175 if (!work->response_buf) { in ksmbd_conn_write() 187 iov[iov_idx] = (struct kvec) { work->response_buf, work->resp_hdr_sz }; in ksmbd_conn_write() 195 iov[iov_idx].iov_len = get_rfc1002_len(work->response_buf) + 4; in ksmbd_conn_write() 196 iov[iov_idx].iov_base = work->response_buf; in ksmbd_conn_write()
|
A D | oplock.c | 592 work->response_buf = kzalloc(MAX_CIFS_SMALL_BUFFER_SIZE, GFP_KERNEL); in allocate_oplock_break_buf() 593 if (!work->response_buf) in allocate_oplock_break_buf() 628 rsp_hdr = smb2_get_msg(work->response_buf); in __smb2_oplock_break_noti() 630 *(__be32 *)work->response_buf = in __smb2_oplock_break_noti() 644 rsp = smb2_get_msg(work->response_buf); in __smb2_oplock_break_noti() 658 inc_rfc1001_len(work->response_buf, 24); in __smb2_oplock_break_noti() 741 rsp_hdr = smb2_get_msg(work->response_buf); in __smb2_lease_break_noti() 743 *(__be32 *)work->response_buf = in __smb2_lease_break_noti() 757 rsp = smb2_get_msg(work->response_buf); in __smb2_lease_break_noti() 773 inc_rfc1001_len(work->response_buf, 44); in __smb2_lease_break_noti()
|
A D | ksmbd_work.c | 38 kvfree(work->response_buf); in ksmbd_free_work_struct()
|
A D | server.c | 97 rsp_hdr = work->response_buf; in check_conn_state()
|
A D | smb_common.c | 443 struct smb_negotiate_rsp *neg_rsp = work->response_buf; in smb_handle_negotiate()
|
/linux-6.3-rc2/drivers/iio/imu/bno055/ |
A D | bno055_ser_core.c | 126 u8 *response_buf; member 317 priv->response_buf = val; in bno055_ser_read_reg() 323 priv->response_buf = NULL; in bno055_ser_read_reg() 460 if (priv->response_buf && in bno055_ser_receive_buf() 470 memcpy(priv->response_buf + priv->rx.databuf_count, in bno055_ser_receive_buf()
|
/linux-6.3-rc2/drivers/gpu/drm/i915/gt/uc/ |
A D | intel_guc.h | 303 u32 *response_buf, u32 response_buf_size) in intel_guc_send_and_receive() argument 306 response_buf, response_buf_size, 0); in intel_guc_send_and_receive() 387 u32 *response_buf, u32 response_buf_size);
|
A D | intel_guc_ct.c | 69 u32 *response_buf; member 629 u32 *response_buf, in ct_send() argument 644 GEM_BUG_ON(!response_buf && response_buf_size); in ct_send() 680 request.response_buf = response_buf; in ct_send() 723 if (response_buf) { in ct_send() 750 u32 *response_buf, u32 response_buf_size, u32 flags) in intel_guc_ct_send() argument 769 ret = ct_send(ct, action, len, response_buf, response_buf_size, &status); in intel_guc_ct_send() 948 memcpy(req->response_buf, data, 4 * datalen); in ct_handle_response()
|
A D | intel_guc_ct.h | 115 u32 *response_buf, u32 response_buf_size, u32 flags);
|
A D | intel_guc.c | 481 u32 *response_buf, u32 response_buf_size) in intel_guc_send_mmio() argument 562 if (response_buf) { in intel_guc_send_mmio() 567 response_buf[0] = header; in intel_guc_send_mmio() 570 response_buf[i] = intel_uncore_read(uncore, in intel_guc_send_mmio()
|
/linux-6.3-rc2/drivers/soundwire/ |
A D | cadence_master.c | 528 if (!(cdns->response_buf[i] & CDNS_MCP_RESP_ACK)) { in cdns_fill_msg_resp() 532 if (cdns->response_buf[i] & CDNS_MCP_RESP_NACK) { in cdns_fill_msg_resp() 552 cdns->response_buf[i]); in cdns_fill_msg_resp() 564 BUILD_BUG_ON(ARRAY_SIZE(cdns->response_buf) < CDNS_MCP_CMD_LEN + 2); in cdns_read_response() 568 if (num_resp > ARRAY_SIZE(cdns->response_buf)) { in cdns_read_response() 570 num_resp = ARRAY_SIZE(cdns->response_buf); in cdns_read_response() 576 cdns->response_buf[i] = cdns_readl(cdns, cmd_base); in cdns_read_response() 671 if (!(cdns->response_buf[i] & CDNS_MCP_RESP_ACK)) { in cdns_program_scp_addr() 674 if (cdns->response_buf[i] & CDNS_MCP_RESP_NACK) { in cdns_program_scp_addr()
|
A D | cadence_master.h | 129 u32 response_buf[CDNS_MCP_IP_MAX_CMD_LEN + 2]; member
|
/linux-6.3-rc2/drivers/i2c/busses/ |
A D | i2c-cros-ec-tunnel.c | 35 u8 response_buf[256]; member
|
/linux-6.3-rc2/fs/cifs/ |
A D | cifssmb.c | 257 void **request_buf, void **response_buf) in __smb_init() argument 268 if (response_buf) in __smb_init() 269 *response_buf = *request_buf; in __smb_init() 283 void **request_buf, void **response_buf) in smb_init() argument 291 return __smb_init(smb_command, wct, tcon, request_buf, response_buf); in smb_init() 296 void **request_buf, void **response_buf) in smb_init_no_reconnect() argument 306 return __smb_init(smb_command, wct, tcon, request_buf, response_buf); in smb_init_no_reconnect()
|