Lines Matching defs:result
39 ssize_t result = writev(fd, ios, sizeof(ios) / sizeof(struct iovec));
40 if (result != strlen(buf1) + strlen(buf2)) {
41 t_error("%s failed: result = %ld\n", __func__, result);
49 result = readv(fd, ios, sizeof(ios) / sizeof(struct iovec));
50 if (result != strlen(buf1) + strlen(buf2)) {
51 t_error("%s failed: result = %ld\n", __func__, result);
73 ssize_t result = readv(-1, NULL, -1);
74 if (result == 0) {
75 t_error("%s failed: result = %ld\n", __func__, result);