Home | History | Annotate | Download | only in ext2fs

Lines Matching defs:op_result

295 	int test_result, op_result;
321 op_result = ext2fs_mark_block_bitmap2(test_fs->block_map, block);
322 printf("Setting block %u, was %s before\n", block, op_result ?
324 if (!test_result != !op_result)
326 test_result, op_result);
333 int test_result, op_result;
359 op_result = ext2fs_unmark_block_bitmap2(test_fs->block_map, block);
360 printf("Clearing block %u, was %s before\n", block, op_result ?
362 if (!test_result != !op_result)
364 test_result, op_result);
482 int test_result, op_result;
497 op_result = ext2fs_mark_inode_bitmap2(test_fs->inode_map, inode);
498 printf("Setting inode %u, was %s before\n", inode, op_result ?
500 if (!test_result != !op_result) {
502 test_result, op_result);
511 int test_result, op_result;
526 op_result = ext2fs_unmark_inode_bitmap2(test_fs->inode_map, inode);
527 printf("Clearing inode %u, was %s before\n", inode, op_result ?
529 if (!test_result != !op_result) {
531 test_result, op_result);