/external/virglrenderer/src/ |
D | virgl_resource.c | 109 int iov_count) in virgl_resource_create_from_pipe() argument 121 res->iov_count = iov_count; in virgl_resource_create_from_pipe() 131 int iov_count) in virgl_resource_create_from_fd() argument 146 res->iov_count = iov_count; in virgl_resource_create_from_fd() 154 int iov_count) in virgl_resource_create_from_iov() argument 158 if (iov_count) in virgl_resource_create_from_iov() 166 res->iov_count = iov_count; in virgl_resource_create_from_iov() 186 int iov_count) in virgl_resource_attach_iov() argument 192 res->iov_count = iov_count; in virgl_resource_attach_iov() 197 iov_count, in virgl_resource_attach_iov() [all …]
|
D | virgl_resource.h | 67 int iov_count; member 81 int iov_count, 103 int iov_count); 110 int iov_count); 115 int iov_count); 126 int iov_count);
|
D | virglrenderer.c | 356 *num_iovs_p = res->iov_count; in virgl_renderer_resource_detach_iov()
|
D | vrend_renderer.c | 6050 int iov_count, in vrend_pipe_resource_attach_iov() argument 6056 res->num_iovs = iov_count; in vrend_pipe_resource_attach_iov()
|
/external/linux-kselftest/tools/testing/selftests/bpf/ |
D | test_sockmap.c | 320 int iov_count; member 385 int iov_count, int iov_length, in msg_alloc_iov() argument 392 iov = calloc(iov_count, sizeof(struct iovec)); in msg_alloc_iov() 396 for (i = 0; i < iov_count; i++) { in msg_alloc_iov() 400 fprintf(stderr, "iov_count %i/%i OOM\n", i, iov_count); in msg_alloc_iov() 415 msg->msg_iovlen = iov_count; in msg_alloc_iov() 451 static int msg_loop(int fd, int iov_count, int iov_length, int cnt, in msg_loop() argument 460 err = msg_alloc_iov(&msg, iov_count, iov_length, data, tx); in msg_loop() 464 err = msg_alloc_iov(&msg_peek, iov_count, iov_length, data, tx); in msg_loop() 504 total_bytes = (float)iov_count * (float)iov_length * (float)cnt; in msg_loop() [all …]
|
/external/rust/crates/grpcio-sys/grpc/src/core/ext/filters/client_channel/resolver/dns/c_ares/ |
D | grpc_ares_ev_driver_windows.cc | 297 grpc_slice FlattenIovec(const struct iovec* iov, int iov_count) { in FlattenIovec() argument 299 for (int i = 0; i < iov_count; i++) { in FlattenIovec() 304 for (int i = 0; i < iov_count; i++) { in FlattenIovec() 331 int iov_count) { in SendV() argument 345 return SendVUDP(wsa_error_ctx, iov, iov_count); in SendV() 347 return SendVTCP(wsa_error_ctx, iov, iov_count); in SendV() 354 int iov_count) { in SendVUDP() argument 361 write_buf_ = FlattenIovec(iov, iov_count); in SendVUDP() 379 int iov_count) { in SendVTCP() argument 392 write_buf_ = FlattenIovec(iov, iov_count); in SendVTCP() [all …]
|
/external/grpc-grpc/src/core/ext/filters/client_channel/resolver/dns/c_ares/ |
D | grpc_ares_ev_driver_windows.cc | 198 grpc_slice FlattenIovec(const struct iovec* iov, int iov_count) { in FlattenIovec() argument 200 for (int i = 0; i < iov_count; i++) { in FlattenIovec() 205 for (int i = 0; i < iov_count; i++) { in FlattenIovec() 247 ares_ssize_t SendV(const struct iovec* iov, int iov_count) { in SendV() argument 254 write_buf_ = FlattenIovec(iov, iov_count); in SendV() 261 grpc_slice currently_attempted = FlattenIovec(iov, iov_count); in SendV()
|
/external/libfuse/lib/ |
D | fuse_lowlevel.c | 559 struct iovec *iov, int iov_count, in fuse_send_data_iov_fallback() argument 573 iov[iov_count].iov_base = buf->buf[0].mem; in fuse_send_data_iov_fallback() 574 iov[iov_count].iov_len = len; in fuse_send_data_iov_fallback() 575 iov_count++; in fuse_send_data_iov_fallback() 576 return fuse_send_msg(se, ch, iov, iov_count); in fuse_send_data_iov_fallback() 591 iov[iov_count].iov_base = mbuf; in fuse_send_data_iov_fallback() 592 iov[iov_count].iov_len = len; in fuse_send_data_iov_fallback() 593 iov_count++; in fuse_send_data_iov_fallback() 594 res = fuse_send_msg(se, ch, iov, iov_count); in fuse_send_data_iov_fallback() 724 struct iovec *iov, int iov_count, in fuse_send_data_iov() argument [all …]
|