Lines Matching refs:reply
103 struct aio_thread_reply reply; in aio_thread() local
117 reply = ((struct aio_thread_reply) in aio_thread()
120 reply_fd = ((struct aio_context *) reply.data)->reply_fd; in aio_thread()
121 err = write(reply_fd, &reply, sizeof(reply)); in aio_thread()
122 if (err != sizeof(reply)) in aio_thread()
172 struct aio_thread_reply reply; in not_aio_thread() local
192 reply = ((struct aio_thread_reply) { .data = req.aio, in not_aio_thread()
194 err = write(req.aio->reply_fd, &reply, sizeof(reply)); in not_aio_thread()
195 if (err != sizeof(reply)) in not_aio_thread()
268 struct aio_thread_reply reply; in submit_aio_26() local
273 reply = ((struct aio_thread_reply) { .data = aio, in submit_aio_26()
275 err = write(aio->reply_fd, &reply, sizeof(reply)); in submit_aio_26()
276 if (err != sizeof(reply)) { in submit_aio_26()