HomeSort by relevance Sort by last modified time
    Searched refs:iovs (Results 1 - 7 of 7) sorted by null

  /system/core/trusty/storage/proxy/
ipc.c 70 struct iovec iovs[2] = {{msg, sizeof(*msg)}, {req_buf, req_buf_len}}; local
74 rc = readv(tipc_fd, iovs, 2);
99 struct iovec iovs[2] = {{msg, sizeof(*msg)}, {out, out_size}}; local
105 rc = writev(tipc_fd, iovs, out ? 2 : 1);
  /system/core/trusty/libtrusty/tipc-test/
tipc_test.c 707 struct iovec iovs[2]= {{tx0_buf, 0}, {tx1_buf, 0}}; local
727 iovs[0].iov_len = msg_len / 3;
728 iovs[1].iov_len = msg_len - iovs[0].iov_len;
730 memset(tx0_buf, i + 1, iovs[0].iov_len);
731 memset(tx1_buf, i + 2, iovs[1].iov_len);
734 rc = writev(echo_fd, iovs, 2);
760 if (memcmp(tx0_buf, rx_buf, iovs[0].iov_len)) {
765 if (memcmp(tx1_buf, rx_buf + iovs[0].iov_len, iovs[1].iov_len))
789 struct iovec iovs[2]= {{rx0_buf, 0}, {rx1_buf, 0}}; local
    [all...]
  /cts/tests/tests/security/jni/
android_security_cts_NativeCodeTest.cpp 222 static struct iovec *iovs = NULL; variable in typeref:struct:iovec
236 readv(fd[0], iovs, BUFS);
256 iovs = (struct iovec*)malloc(BUFS * sizeof(struct iovec));
257 if (iovs == NULL) {
272 iovs[OVERFLOW_BUF].iov_base = bufs[OVERFLOW_BUF];
273 iovs[OVERFLOW_BUF].iov_len = IOV_LEN;
285 iovs[i].iov_base = bufs[i];
286 iovs[i].iov_len = IOV_LEN;
321 free(iovs);
  /system/core/debuggerd/handler/
debuggerd_handler.cpp 330 struct iovec iovs[4] = { local
337 ssize_t rc = TEMP_FAILURE_RETRY(writev(output_write.get(), iovs, 4));
  /external/python/cpython3/Modules/
socketmodule.c 3605 struct iovec *iovs = NULL; local
3927 struct iovec *iovs = NULL; local
    [all...]
  /art/adbconnection/
adbconnection.cc 379 struct iovec iovs[kIovSize] = { local
385 ssize_t res = TEMP_FAILURE_RETRY(writev(adb_connection_socket_, iovs, kIovSize));
    [all...]
  /system/netd/server/
XfrmControllerTest.cpp 91 const std::vector<iovec>& iovs = ::testing::get<N>(args); local
93 for (const iovec& iov : iovs) {

Completed in 133 milliseconds