Home | History | Annotate | Download | only in libutil++

Lines Matching defs:first_error

33 	first_error(0),
62 first_error = errno;
69 first_error = errno;
96 // first_error in the child is a non-sense
217 return first_error == 0;
232 first_error = WEXITSTATUS(ret) | WIFSIGNALED(ret);
235 first_error = WTERMSIG(ret);
240 first_error = -1;
253 return first_error;
262 << strerror(first_error);
264 if (first_error) {
267 << first_error;
270 << first_error;