Lines Matching refs:error_buf
35 int r, error_buf = 0;
93 error_buf = errno;
94 (void) write(pair[1], &error_buf, sizeof(error_buf));
117 n = read(pair[0], &error_buf, sizeof(error_buf));
122 if (n != sizeof(error_buf))
125 if (error_buf < 0)
128 if (error_buf == EINPROGRESS)
131 if (error_buf > 0)
132 return -error_buf;
151 int error_buf = 0;
153 .iov_base = &error_buf,
154 .iov_len = sizeof(error_buf),
214 error_buf = errno;
215 (void) write(pair[1], &error_buf, sizeof(error_buf));
272 if (n == sizeof(error_buf) && error_buf > 0)
273 return -error_buf;