Home | History | Annotate | Download | only in mmc-utils

Lines Matching defs:ioc

1520 	struct mmc_ioc_cmd ioc = {
1544 ioc.write_flag |= (1<<31);
1545 err = ioctl(fd, MMC_IOC_CMD, &ioc);
1554 ioc.write_flag = 1;
1555 ioc.data_ptr = (uintptr_t)frame_out;
1556 err = ioctl(fd, MMC_IOC_CMD, &ioc);
1563 ioc.write_flag = 0;
1564 ioc.opcode = MMC_READ_MULTIPLE_BLOCK;
1565 err = ioctl(fd, MMC_IOC_CMD, &ioc);
1581 err = ioctl(fd, MMC_IOC_CMD, &ioc);
1588 ioc.write_flag = 0;
1589 ioc.opcode = MMC_READ_MULTIPLE_BLOCK;
1590 ioc.blocks = out_cnt;
1591 ioc.data_ptr = (uintptr_t)frame_out;
1592 err = ioctl(fd, MMC_IOC_CMD, &ioc);