Lines Matching refs:test_result
295 int test_result, op_result; in do_setb() local
320 test_result = ext2fs_test_block_bitmap2(test_fs->block_map, block); in do_setb()
324 if (!test_result != !op_result) in do_setb()
326 test_result, op_result); in do_setb()
333 int test_result, op_result; in do_clearb() local
358 test_result = ext2fs_test_block_bitmap2(test_fs->block_map, block); in do_clearb()
362 if (!test_result != !op_result) in do_clearb()
364 test_result, op_result); in do_clearb()
371 int test_result; in do_testb() local
390 test_result = in do_testb()
394 block, block + num - 1, test_result ? "" : "NOT "); in do_testb()
398 test_result = ext2fs_test_block_bitmap2(test_fs->block_map, block); in do_testb()
399 printf("Block %u is %s\n", block, test_result ? "set" : "clear"); in do_testb()
482 int test_result, op_result; in do_seti() local
496 test_result = ext2fs_test_inode_bitmap2(test_fs->inode_map, inode); in do_seti()
500 if (!test_result != !op_result) { in do_seti()
502 test_result, op_result); in do_seti()
511 int test_result, op_result; in do_cleari() local
525 test_result = ext2fs_test_inode_bitmap2(test_fs->inode_map, inode); in do_cleari()
529 if (!test_result != !op_result) { in do_cleari()
531 test_result, op_result); in do_cleari()
540 int test_result; in do_testi() local
554 test_result = ext2fs_test_inode_bitmap2(test_fs->inode_map, inode); in do_testi()
555 printf("Inode %u is %s\n", inode, test_result ? "set" : "clear"); in do_testi()