Home | History | Annotate | Download | only in ext2fs

Lines Matching defs:op_result

298 	int test_result, op_result;
324 op_result = ext2fs_mark_block_bitmap2(test_fs->block_map, block);
325 printf("Setting block %u, was %s before\n", block, op_result ?
327 if (!test_result != !op_result)
329 test_result, op_result);
336 int test_result, op_result;
362 op_result = ext2fs_unmark_block_bitmap2(test_fs->block_map, block);
363 printf("Clearing block %u, was %s before\n", block, op_result ?
365 if (!test_result != !op_result)
367 test_result, op_result);
452 int test_result, op_result;
467 op_result = ext2fs_mark_inode_bitmap2(test_fs->inode_map, inode);
468 printf("Setting inode %u, was %s before\n", inode, op_result ?
470 if (!test_result != !op_result) {
472 test_result, op_result);
481 int test_result, op_result;
496 op_result = ext2fs_unmark_inode_bitmap2(test_fs->inode_map, inode);
497 printf("Clearing inode %u, was %s before\n", inode, op_result ?
499 if (!test_result != !op_result) {
501 test_result, op_result);