Lines Matching refs:test_result
302 int test_result, op_result; in do_setb() local
327 test_result = ext2fs_test_block_bitmap2(test_fs->block_map, block); in do_setb()
331 if (!test_result != !op_result) in do_setb()
333 test_result, op_result); in do_setb()
341 int test_result, op_result; in do_clearb() local
366 test_result = ext2fs_test_block_bitmap2(test_fs->block_map, block); in do_clearb()
370 if (!test_result != !op_result) in do_clearb()
372 test_result, op_result); in do_clearb()
380 int test_result; in do_testb() local
399 test_result = in do_testb()
403 block, block + num - 1, test_result ? "" : "NOT "); in do_testb()
407 test_result = ext2fs_test_block_bitmap2(test_fs->block_map, block); in do_testb()
408 printf("Block %u is %s\n", block, test_result ? "set" : "clear"); in do_testb()
495 int test_result, op_result; in do_seti() local
509 test_result = ext2fs_test_inode_bitmap2(test_fs->inode_map, inode); in do_seti()
513 if (!test_result != !op_result) { in do_seti()
515 test_result, op_result); in do_seti()
525 int test_result, op_result; in do_cleari() local
539 test_result = ext2fs_test_inode_bitmap2(test_fs->inode_map, inode); in do_cleari()
543 if (!test_result != !op_result) { in do_cleari()
545 test_result, op_result); in do_cleari()
555 int test_result; in do_testi() local
569 test_result = ext2fs_test_inode_bitmap2(test_fs->inode_map, inode); in do_testi()
570 printf("Inode %u is %s\n", inode, test_result ? "set" : "clear"); in do_testi()