Lines Matching +full:write +full:- +full:back
3 /*-
72 * Report an pointer value back to the director
88 * Report an integer value back to the director
101 * Report either an ERR or OK back to the director
115 * Report the type back to the director via the command pipe
123 if (write(slvpipe[WRITE_PIPE], &type, sizeof(int)) < 0) in report_type()
124 err(1, "command pipe write for status type failed"); in report_type()
129 * Report the number of returns back to the director via the command pipe
137 if (write(slvpipe[WRITE_PIPE], &type, sizeof(int)) < 0) in report_count()
138 err(1, "command pipe write for count type failed"); in report_count()
140 if (write(slvpipe[WRITE_PIPE], &count, sizeof(int)) < 0) in report_count()
141 err(1, "command pipe write for count"); in report_count()
145 * Report the status back to the director via the command pipe
154 * Report an error message back to the director via the command pipe.
163 * Report the message with the given type back to the director via the
173 if (write(slvpipe[WRITE_PIPE], &type, sizeof(int)) < 0) in report_message()
174 err(1, "command pipe write for message type failed"); in report_message()
176 if (write(slvpipe[WRITE_PIPE], &len, sizeof(int)) < 0) in report_message()
177 err(1, "command pipe write for message length failed"); in report_message()
179 if (write(slvpipe[WRITE_PIPE], status, len) < 0) in report_message()
180 err(1, "command pipe write of message data failed"); in report_message()
184 * Report a string of chtype back to the director via the command pipe.
197 * Report a string of chtype back to the director via the command pipe.
216 if (write(slvpipe[WRITE_PIPE], &type, sizeof(int)) < 0) in report_nstr()
217 err(1, "%s: command pipe write for status type failed", in report_nstr()
220 if (write(slvpipe[WRITE_PIPE], &len, sizeof(int)) < 0) in report_nstr()
221 err(1, "%s: command pipe write for status length failed", in report_nstr()
224 if (write(slvpipe[WRITE_PIPE], string, len) < 0) in report_nstr()
225 err(1, "%s: command pipe write of status data failed", in report_nstr()