Home | History | Annotate | Download | only in ext2fs

Lines Matching defs:test_result

298 	int test_result, op_result;
323 test_result = ext2fs_test_block_bitmap2(test_fs->block_map, block);
327 if (!test_result != !op_result)
328 com_err(argv[0], 0, "*ERROR* test_result different! (%d, %d)",
329 test_result, op_result);
336 int test_result, op_result;
361 test_result = ext2fs_test_block_bitmap2(test_fs->block_map, block);
365 if (!test_result != !op_result)
366 com_err(argv[0], 0, "*ERROR* test_result different! (%d, %d)",
367 test_result, op_result);
374 int test_result;
393 test_result =
397 block, block + num - 1, test_result ? "" : "NOT ");
401 test_result = ext2fs_test_block_bitmap2(test_fs->block_map, block);
402 printf("Block %u is %s\n", block, test_result ? "set" : "clear");
452 int test_result, op_result;
466 test_result = ext2fs_test_inode_bitmap2(test_fs->inode_map, inode);
470 if (!test_result != !op_result) {
471 com_err(argv[0], 0, "*ERROR* test_result different! (%d, %d)",
472 test_result, op_result);
481 int test_result, op_result;
495 test_result = ext2fs_test_inode_bitmap2(test_fs->inode_map, inode);
499 if (!test_result != !op_result) {
500 com_err(argv[0], 0, "*ERROR* test_result different! (%d, %d)",
501 test_result, op_result);
510 int test_result;
524 test_result = ext2fs_test_inode_bitmap2(test_fs->inode_map, inode);
525 printf("Inode %u is %s\n", inode, test_result ? "set" : "clear");