1*6a54128fSAndroid Build Coastguard Worker# 2*6a54128fSAndroid Build Coastguard Worker# Copyright (C) 1997 Theodore Ts'o. This file may be redistributed 3*6a54128fSAndroid Build Coastguard Worker# under the terms of the GNU Public License. 4*6a54128fSAndroid Build Coastguard Worker# 5*6a54128fSAndroid Build Coastguard Workercommand_table test_cmds; 6*6a54128fSAndroid Build Coastguard Worker 7*6a54128fSAndroid Build Coastguard Worker# 8*6a54128fSAndroid Build Coastguard Worker# Icount table commands 9*6a54128fSAndroid Build Coastguard Worker# 10*6a54128fSAndroid Build Coastguard Workerrequest do_create_icount, "Create an icount structure", 11*6a54128fSAndroid Build Coastguard Worker create_icount, create; 12*6a54128fSAndroid Build Coastguard Worker 13*6a54128fSAndroid Build Coastguard Workerrequest do_free_icount, "Free an icount structure", 14*6a54128fSAndroid Build Coastguard Worker free_icount, free; 15*6a54128fSAndroid Build Coastguard Worker 16*6a54128fSAndroid Build Coastguard Workerrequest do_fetch, "Fetch an icount entry", 17*6a54128fSAndroid Build Coastguard Worker fetch; 18*6a54128fSAndroid Build Coastguard Worker 19*6a54128fSAndroid Build Coastguard Workerrequest do_increment, "Increment an icount entry", 20*6a54128fSAndroid Build Coastguard Worker increment, inc; 21*6a54128fSAndroid Build Coastguard Worker 22*6a54128fSAndroid Build Coastguard Workerrequest do_decrement, "Decrement an icount entry", 23*6a54128fSAndroid Build Coastguard Worker decrement, dec; 24*6a54128fSAndroid Build Coastguard Worker 25*6a54128fSAndroid Build Coastguard Workerrequest do_store, "Store an icount entry", 26*6a54128fSAndroid Build Coastguard Worker store; 27*6a54128fSAndroid Build Coastguard Worker 28*6a54128fSAndroid Build Coastguard Workerrequest do_get_size, "Get the size of the icount structure", 29*6a54128fSAndroid Build Coastguard Worker get_size; 30*6a54128fSAndroid Build Coastguard Worker 31*6a54128fSAndroid Build Coastguard Workerrequest do_dump, "Dump the icount structure", 32*6a54128fSAndroid Build Coastguard Worker dump; 33*6a54128fSAndroid Build Coastguard Worker 34*6a54128fSAndroid Build Coastguard Workerrequest do_validate, "Validate the icount structure", 35*6a54128fSAndroid Build Coastguard Worker validate, check; 36*6a54128fSAndroid Build Coastguard Worker 37*6a54128fSAndroid Build Coastguard Workerend; 38