Lines Matching refs:a
99 struct aiocb a, a2, *ap; in do_test() local
101 memset (&a, '\0', sizeof (a)); in do_test()
102 a.aio_fildes = fds[0]; in do_test()
103 a.aio_buf = mem; in do_test()
104 a.aio_nbytes = sizeof (mem); in do_test()
105 if (aio_read (&a) != 0) in do_test()
118 if (pthread_create (&th, NULL, tf, &a) != 0) in do_test()
167 if (pthread_create (&th, NULL, tf2, &a) != 0) in do_test()
216 ap = &a; in do_test()
217 if (aio_cancel (fds[0], &a) != AIO_CANCELED) in do_test()
347 const struct aiocb *l[1] = { &a }; in do_test()