| /linux/drivers/input/touchscreen/ |
| A D | cyttsp5.c | 203 u8 response_buf[CY_MAX_INPUT]; member 464 size = get_unaligned_le16(&ts->response_buf[0]); in cyttsp5_validate_cmd_response() 472 if (ts->response_buf[4] != HID_OUTPUT_BL_SOP) { in cyttsp5_validate_cmd_response() 477 if (ts->response_buf[size - 1] != HID_OUTPUT_BL_EOP) { in cyttsp5_validate_cmd_response() 490 status = ts->response_buf[5]; in cyttsp5_validate_cmd_response() 527 &ts->response_buf[HID_SYSINFO_SENSING_OFFSET]; in cyttsp5_get_sysinfo_regs() 599 if (ts->response_buf[2] != HID_RESPONSE_REPORT_ID || in cyttsp5_power_control() 600 (ts->response_buf[3] & 0x03) != state || in cyttsp5_power_control() 670 memcpy(desc, ts->response_buf, sizeof(*desc)); in cyttsp5_get_hid_descriptor() 724 memcpy(ts->response_buf, ts->input_buf, size); in cyttsp5_handle_irq() [all …]
|
| /linux/fs/smb/server/ |
| A D | ksmbd_work.h | 37 void *response_buf; member 101 return work->response_buf + work->next_smb2_rsp_hdr_off + 4; in ksmbd_resp_buf_next() 110 return work->response_buf + work->curr_smb2_rsp_hdr_off + 4; in ksmbd_resp_buf_curr()
|
| A D | ksmbd_work.c | 48 kvfree(work->response_buf); in ksmbd_free_work_struct() 139 work->iov[work->iov_idx].iov_base = work->response_buf; in __ksmbd_iov_pin_rsp() 172 work->response_buf = kzalloc(MAX_CIFS_SMALL_BUFFER_SIZE, GFP_KERNEL); in allocate_interim_rsp_buf() 173 if (!work->response_buf) in allocate_interim_rsp_buf()
|
| A D | smb2pdu.c | 49 *rsp = smb2_get_msg(work->response_buf); in __wbuf() 145 err_rsp = smb2_get_msg(work->response_buf); in smb2_set_err_rsp() 234 rsp_hdr = smb2_get_msg(work->response_buf); in set_smb2_rsp_status() 257 rsp_hdr = smb2_get_msg(work->response_buf); in init_smb2_neg_rsp() 271 rsp = smb2_get_msg(work->response_buf); in init_smb2_neg_rsp() 481 inc_rfc1001_len(work->response_buf, len); in is_chained_smb2_message() 555 if (!work->response_buf) in smb2_allocate_rsp_buf() 5196 work->response_buf); in smb2_get_info_file() 5294 rsp, work->response_buf); in smb2_get_info_file() 5512 rsp, work->response_buf); in smb2_get_info_filesystem() [all …]
|
| A D | smb_common.c | 323 struct smb_hdr *rsp_hdr = (struct smb_hdr *)work->response_buf; in init_smb1_rsp_hdr() 360 work->response_buf = kzalloc(MAX_CIFS_SMALL_BUFFER_SIZE, in smb1_allocate_rsp_buf() 364 if (!work->response_buf) { in smb1_allocate_rsp_buf() 575 struct smb_negotiate_rsp *neg_rsp = work->response_buf; in smb_handle_negotiate()
|
| A D | oplock.c | 652 rsp_hdr = smb2_get_msg(work->response_buf); in __smb2_oplock_break_noti() 666 rsp = smb2_get_msg(work->response_buf); in __smb2_oplock_break_noti() 756 rsp_hdr = smb2_get_msg(work->response_buf); in __smb2_lease_break_noti() 770 rsp = smb2_get_msg(work->response_buf); in __smb2_lease_break_noti()
|
| A D | connection.c | 213 if (!work->response_buf) { in ksmbd_conn_write()
|
| A D | server.c | 98 rsp_hdr = work->response_buf; in check_conn_state()
|
| /linux/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/drivers/gpu/drm/xe/ |
| A D | xe_guc_relay.c | 171 u32 response_buf[GUC_CTB_MAX_DWORDS]; member 235 prepare_pf2guc(incoming ? txn->response_buf : txn->request_buf, remote, rid) : in __relay_get_transaction() 236 prepare_vf2guc(incoming ? txn->response_buf : txn->request_buf, rid); in __relay_get_transaction() 240 relay_assert(relay, txn->offset + GUC_RELAY_MSG_MAX_LEN <= ARRAY_SIZE(txn->response_buf)); in __relay_get_transaction() 246 txn->response = resp ?: txn->response_buf + txn->offset; in __relay_get_transaction() 284 u32 *buf = txn->incoming ? txn->response_buf : txn->request_buf; in relay_send_transaction() 718 txn->response_buf + txn->offset, in relay_process_incoming_action() 719 ARRAY_SIZE(txn->response_buf) - txn->offset); in relay_process_incoming_action() 723 ret = guc_hxg_msg_encode_busy(txn->response_buf + txn->offset, 0); in relay_process_incoming_action() 738 txn->response_len = prepare_error_reply(txn->response_buf + txn->offset, in relay_process_incoming_action()
|
| A D | xe_guc.h | 41 u32 *response_buf);
|
| A D | xe_guc.c | 924 u32 len, u32 *response_buf) in xe_guc_mmio_send_recv() argument 1030 if (response_buf) { in xe_guc_mmio_send_recv() 1031 response_buf[0] = header; in xe_guc_mmio_send_recv() 1035 response_buf[i] = xe_mmio_read32(gt, reply_reg); in xe_guc_mmio_send_recv()
|
| /linux/drivers/gpu/drm/i915/gt/uc/ |
| A D | intel_guc.h | 351 u32 *response_buf, u32 response_buf_size) in intel_guc_send_and_receive() argument 354 response_buf, response_buf_size, 0); in intel_guc_send_and_receive() 435 u32 *response_buf, u32 response_buf_size);
|
| A D | intel_guc_ct.c | 93 u32 *response_buf; member 714 u32 *response_buf, in ct_send() argument 729 GEM_BUG_ON(!response_buf && response_buf_size); in ct_send() 765 request.response_buf = response_buf; in ct_send() 808 if (response_buf) { in ct_send() 835 u32 *response_buf, u32 response_buf_size, u32 flags) in intel_guc_ct_send() argument 854 ret = ct_send(ct, action, len, response_buf, response_buf_size, &status); in intel_guc_ct_send() 1073 memcpy(req->response_buf, data, 4 * datalen); in ct_handle_response()
|
| A D | intel_guc_ct.h | 134 u32 *response_buf, u32 response_buf_size, u32 flags);
|
| A D | intel_guc.c | 497 u32 *response_buf, u32 response_buf_size) in intel_guc_send_mmio() argument 578 if (response_buf) { in intel_guc_send_mmio() 583 response_buf[0] = header; in intel_guc_send_mmio() 586 response_buf[i] = intel_uncore_read(uncore, in intel_guc_send_mmio()
|
| /linux/drivers/soundwire/ |
| A D | cadence_master.c | 571 if (!(cdns->response_buf[i] & CDNS_MCP_RESP_ACK)) { in cdns_fill_msg_resp() 575 if (cdns->response_buf[i] & CDNS_MCP_RESP_NACK) { in cdns_fill_msg_resp() 595 cdns->response_buf[i]); in cdns_fill_msg_resp() 607 BUILD_BUG_ON(ARRAY_SIZE(cdns->response_buf) < CDNS_MCP_CMD_LEN + 2); in cdns_read_response() 611 if (num_resp > ARRAY_SIZE(cdns->response_buf)) { in cdns_read_response() 613 num_resp = ARRAY_SIZE(cdns->response_buf); in cdns_read_response() 619 cdns->response_buf[i] = cdns_ip_readl(cdns, cmd_base); in cdns_read_response() 714 if (!(cdns->response_buf[i] & CDNS_MCP_RESP_ACK)) { in cdns_program_scp_addr() 717 if (cdns->response_buf[i] & CDNS_MCP_RESP_NACK) { in cdns_program_scp_addr()
|
| A D | amd_manager.c | 222 u64 response_buf[2] = {0}; in amd_program_scp_addr() local 231 response_buf[0] = amd_sdw_send_cmd_get_resp(amd_manager, lower_data, upper_data); in amd_program_scp_addr() 235 response_buf[1] = amd_sdw_send_cmd_get_resp(amd_manager, lower_data, upper_data); in amd_program_scp_addr() 238 if (response_buf[index] == -ETIMEDOUT) { in amd_program_scp_addr() 243 } else if (!(response_buf[index] & AMD_SDW_MCP_RESP_ACK)) { in amd_program_scp_addr() 244 if (response_buf[index] & AMD_SDW_MCP_RESP_NACK) { in amd_program_scp_addr()
|
| A D | cadence_master.h | 134 u32 response_buf[CDNS_MCP_IP_MAX_CMD_LEN + 2]; member
|
| /linux/drivers/i2c/busses/ |
| A D | i2c-cros-ec-tunnel.c | 35 u8 response_buf[256]; member
|
| /linux/fs/smb/client/ |
| A D | cifssmb.c | 265 void **request_buf, void **response_buf) in __smb_init() argument 276 if (response_buf) in __smb_init() 277 *response_buf = *request_buf; in __smb_init() 291 void **request_buf, void **response_buf) in smb_init() argument 299 return __smb_init(smb_command, wct, tcon, request_buf, response_buf); in smb_init() 304 void **request_buf, void **response_buf) in smb_init_no_reconnect() argument 314 return __smb_init(smb_command, wct, tcon, request_buf, response_buf); in smb_init_no_reconnect()
|