1*6a54128fSAndroid Build Coastguard Workercommand_table tst_bitmaps_cmds; 2*6a54128fSAndroid Build Coastguard Worker 3*6a54128fSAndroid Build Coastguard Workerrequest setup_cmd, "Setup file system", 4*6a54128fSAndroid Build Coastguard Worker setup; 5*6a54128fSAndroid Build Coastguard Worker 6*6a54128fSAndroid Build Coastguard Workerrequest close_cmd, "Close file system", 7*6a54128fSAndroid Build Coastguard Worker close; 8*6a54128fSAndroid Build Coastguard Worker 9*6a54128fSAndroid Build Coastguard Workerrequest dump_inode_bitmap_cmd, "Dump the inode bitmap", 10*6a54128fSAndroid Build Coastguard Worker dump_inode_bitmap, dump_ib; 11*6a54128fSAndroid Build Coastguard Worker 12*6a54128fSAndroid Build Coastguard Workerrequest dump_block_bitmap_cmd, "Dump the block bitmap", 13*6a54128fSAndroid Build Coastguard Worker dump_block_bitmap, dump_bb; 14*6a54128fSAndroid Build Coastguard Worker 15*6a54128fSAndroid Build Coastguard Workerrequest do_setb, "Set block", 16*6a54128fSAndroid Build Coastguard Worker set_block, setb; 17*6a54128fSAndroid Build Coastguard Worker 18*6a54128fSAndroid Build Coastguard Workerrequest do_clearb, "Clear block", 19*6a54128fSAndroid Build Coastguard Worker clear_block, clearb; 20*6a54128fSAndroid Build Coastguard Worker 21*6a54128fSAndroid Build Coastguard Workerrequest do_testb, "Test block", 22*6a54128fSAndroid Build Coastguard Worker test_block, testb; 23*6a54128fSAndroid Build Coastguard Worker 24*6a54128fSAndroid Build Coastguard Workerrequest do_ffzb, "Find first zero block", 25*6a54128fSAndroid Build Coastguard Worker find_first_zero_block, ffzb; 26*6a54128fSAndroid Build Coastguard Worker 27*6a54128fSAndroid Build Coastguard Workerrequest do_ffsb, "Find first set block", 28*6a54128fSAndroid Build Coastguard Worker find_first_set_block, ffsb; 29*6a54128fSAndroid Build Coastguard Worker 30*6a54128fSAndroid Build Coastguard Workerrequest do_zerob, "Clear block bitmap", 31*6a54128fSAndroid Build Coastguard Worker clear_block_bitmap, zerob; 32*6a54128fSAndroid Build Coastguard Worker 33*6a54128fSAndroid Build Coastguard Workerrequest do_seti, "Set inode", 34*6a54128fSAndroid Build Coastguard Worker set_inode, seti; 35*6a54128fSAndroid Build Coastguard Worker 36*6a54128fSAndroid Build Coastguard Workerrequest do_cleari, "Clear inode", 37*6a54128fSAndroid Build Coastguard Worker clear_inode, cleari; 38*6a54128fSAndroid Build Coastguard Worker 39*6a54128fSAndroid Build Coastguard Workerrequest do_testi, "Test inode", 40*6a54128fSAndroid Build Coastguard Worker test_inode, testi; 41*6a54128fSAndroid Build Coastguard Worker 42*6a54128fSAndroid Build Coastguard Workerrequest do_ffzi, "Find first zero inode", 43*6a54128fSAndroid Build Coastguard Worker find_first_zero_inode, ffzi; 44*6a54128fSAndroid Build Coastguard Worker 45*6a54128fSAndroid Build Coastguard Workerrequest do_ffsi, "Find first set inode", 46*6a54128fSAndroid Build Coastguard Worker find_first_set_inode, ffsi; 47*6a54128fSAndroid Build Coastguard Worker 48*6a54128fSAndroid Build Coastguard Workerrequest do_zeroi, "Clear inode bitmap", 49*6a54128fSAndroid Build Coastguard Worker clear_inode_bitmap, zeroi; 50*6a54128fSAndroid Build Coastguard Worker 51*6a54128fSAndroid Build Coastguard Workerend; 52