Home | History | Annotate | Download | only in e2fsck

Lines Matching refs:retval

51 	errcode_t	retval;
54 retval = ext2fs_get_mem(sizeof(struct ea_refcount), &refcount);
55 if (retval)
56 return retval;
67 retval = ext2fs_get_mem(bytes, &refcount->list);
68 if (retval)
80 return(retval);
116 errcode_t retval;
125 retval = ext2fs_resize_mem((size_t) refcount->size *
130 if (retval)
374 errcode_t retval;
382 retval = ea_refcount_create(size, &refcount);
383 if (retval) {
384 com_err("ea_refcount_create", retval,
400 retval = ea_refcount_store(refcount, blk, arg);
401 if (retval)
402 com_err("ea_refcount_store", retval,
407 retval = ea_refcount_fetch(refcount, blk, &arg);
408 if (retval)
409 com_err("ea_refcount_fetch", retval,
417 retval = ea_refcount_increment(refcount, blk, &arg);
418 if (retval)
419 com_err("ea_refcount_increment", retval,
427 retval = ea_refcount_decrement(refcount, blk, &arg);
428 if (retval)
429 com_err("ea_refcount_decrement", retval,
436 retval = ea_refcount_validate(refcount, stderr);
437 if (retval)
438 com_err("ea_refcount_validate", retval,