Lines Matching refs:iov_len
104 {.iov_base = &msg, .iov_len = sizeof(msg)}, in rpmb_send()
105 {.iov_base = read_buf, .iov_len = read_size}, in rpmb_send()
109 {.iov_base = &msg, .iov_len = sizeof(msg)}, in rpmb_send()
110 {.iov_base = &req, .iov_len = sizeof(req)}, in rpmb_send()
111 {.iov_base = reliable_write_buf, .iov_len = reliable_write_size}, in rpmb_send()
112 {.iov_base = write_buf, .iov_len = write_size}, in rpmb_send()
156 struct iovec tx_iov[] = {{.iov_base = &msg, .iov_len = sizeof(msg)}, in ns_open_file()
157 {.iov_base = &req, .iov_len = sizeof(req)}, in ns_open_file()
158 {.iov_base = (char*)fname, .iov_len = fname_size}}; in ns_open_file()
160 struct iovec rx_iov[] = {{.iov_base = &msg, .iov_len = sizeof(msg)}, in ns_open_file()
161 {.iov_base = &resp, .iov_len = sizeof(resp)}}; in ns_open_file()
200 {.iov_base = &msg, .iov_len = sizeof(msg)}, in ns_close_file()
201 {.iov_base = &req, .iov_len = sizeof(req)}, in ns_close_file()
234 {.iov_base = &msg, .iov_len = sizeof(msg)}, in ns_get_max_size()
235 {.iov_base = &req, .iov_len = sizeof(req)}, in ns_get_max_size()
238 struct iovec rx_iov[] = {{.iov_base = &msg, .iov_len = sizeof(msg)}, in ns_get_max_size()
239 {.iov_base = &resp, .iov_len = sizeof(resp)}}; in ns_get_max_size()
297 {.iov_base = &msg, .iov_len = sizeof(msg)}, in ns_read_pos()
298 {.iov_base = &req, .iov_len = sizeof(req)}, in ns_read_pos()
301 struct iovec rx_iov[] = {{.iov_base = &msg, .iov_len = sizeof(msg)}, in ns_read_pos()
302 {.iov_base = data, .iov_len = data_size}}; in ns_read_pos()
353 struct iovec iov[] = {{.iov_base = &msg, .iov_len = sizeof(msg)}, in ns_write_pos()
354 {.iov_base = &req, .iov_len = sizeof(req)}, in ns_write_pos()
355 {.iov_base = (void*)data, .iov_len = data_size}}; in ns_write_pos()