Lines Matching refs:ret
75 int ret;
89 ret = -EIO;
95 ret = -EINVAL;
105 ret = -EINVAL;
112 ret = -EINVAL;
144 ret = -ENOMEM;
148 ret = exfat_read(bd->dev_fd, ed, sizeof(struct exfat_dentry)*3,
150 if (ret < 0) {
152 ret = -EIO;
158 ret = -EINVAL;
185 ret = -ENOMEM;
189 ret = exfat_read(bd->dev_fd, bitmap, bitmap_len, bitmap_clu_off);
190 if (ret < 0) {
192 ret = -EIO;
204 ret = 0;
214 return ret;
220 int ret = EXIT_FAILURE;
252 ret = exfat_get_blk_dev_info(&ui, &bd);
253 if (ret < 0)
256 ret = exfat_show_ondisk_all_info(&bd);
260 return ret;