Home | History | Annotate | Download | only in ltp-aiodio

Lines Matching defs:ios

221 	struct io_unit *ios;
953 size_t bytes = num_files * depth * sizeof(*t->ios);
955 t->ios = malloc(bytes);
956 if (!t->ios) {
960 memset(t->ios, 0, bytes);
963 t->ios[i].buf = aligned_buffer;
965 t->ios[i].buf_size = reclen;
967 memset(t->ios[i].buf, 'b', reclen);
969 memset(t->ios[i].buf, 0, reclen);
970 t->ios[i].next = t->free_ious;
971 t->free_ious = t->ios + i;
998 free(t->ios);