Home | History | Annotate | Download | only in ext2ed

Lines Matching refs:type_commands

165 		free_user_commands (&ptr->type_commands);
205 ptr->type_commands.last_command=-1;
274 add_user_command (&ptr->type_commands,"show","Shows file data",type_file___show);
275 add_user_command (&ptr->type_commands,"inode","Returns to the inode of the current file",type_file___inode);
276 add_user_command (&ptr->type_commands,"display","Specifies data format - text or hex",type_file___display);
277 add_user_command (&ptr->type_commands,"next","Pass to next byte",type_file___next);
278 add_user_command (&ptr->type_commands,"prev","Pass to the previous byte",type_file___prev);
279 add_user_command (&ptr->type_commands,"offset","Pass to a specified byte in the current block",type_file___offset);
280 add_user_command (&ptr->type_commands,"nextblock","Pass to next file block",type_file___nextblock);
281 add_user_command (&ptr->type_commands,"prevblock","Pass to the previous file block",type_file___prevblock);
282 add_user_command (&ptr->type_commands,"block","Specify which file block to edit",type_file___block);
283 add_user_command (&ptr->type_commands,"remember","Saves the file\'s inode position for later reference",type_file___remember);
284 add_user_command (&ptr->type_commands,"set","Sets the current byte",type_file___set);
285 add_user_command (&ptr->type_commands,"writedata","Writes the current block to the disk",type_file___writedata);
289 add_user_command (&ptr->type_commands,"show","Shows inode data",type_ext2_inode___show);
290 add_user_command (&ptr->type_commands,"next","Move to next inode in current block group",type_ext2_inode___next);
291 add_user_command (&ptr->type_commands,"prev","Move to next inode in current block group",type_ext2_inode___prev);
292 add_user_command (&ptr->type_commands,"group","Move to the group descriptors of the current inode table",type_ext2_inode___group);
293 add_user_command (&ptr->type_commands,"entry","Move to a specified entry in the current inode table",type_ext2_inode___entry);
294 add_user_command (&ptr->type_commands,"file","Display file data of the current inode",type_ext2_inode___file);
295 add_user_command (&ptr->type_commands,"dir","Display directory data of the current inode",type_ext2_inode___dir);
299 add_user_command (&ptr->type_commands,"show","Shows current directory data",type_dir___show);
300 add_user_command (&ptr->type_commands,"inode","Returns to the inode of the current directory",type_dir___inode);
301 add_user_command (&ptr->type_commands,"next","Pass to the next directory entry",type_dir___next);
302 add_user_command (&ptr->type_commands,"prev","Pass to the previous directory entry",type_dir___prev);
303 add_user_command (&ptr->type_commands,"followinode","Follows the inode specified in this directory entry",type_dir___followinode);
304 add_user_command (&ptr->type_commands,"remember","Remember the inode of the current directory entry",type_dir___remember);
305 add_user_command (&ptr->type_commands,"cd","Changes directory relative to the current directory",type_dir___cd);
306 add_user_command (&ptr->type_commands,"entry","Moves to a specified entry in the current directory",type_dir___entry);
307 add_user_command (&ptr->type_commands,"writedata","Writes the current entry to the disk",type_dir___writedata);
308 add_user_command (&ptr->type_commands,"set","Changes a variable in the current directory entry",type_dir___set);
312 add_user_command (&ptr->type_commands,"show","Displays the super block data",type_ext2_super_block___show);
313 add_user_command (&ptr->type_commands,"gocopy","Move to another backup copy of the superblock",type_ext2_super_block___gocopy);
314 add_user_command (&ptr->type_commands,"setactivecopy","Copies the current superblock to the main superblock",type_ext2_super_block___setactivecopy);
318 add_user_command (&ptr->type_commands,"next","Pass to the next block group decriptor",type_ext2_group_desc___next);
319 add_user_command (&ptr->type_commands,"prev","Pass to the previous group descriptor",type_ext2_group_desc___prev);
320 add_user_command (&ptr->type_commands,"entry","Pass to a specific group descriptor",type_ext2_group_desc___entry);
321 add_user_command (&ptr->type_commands,"show","Shows the current group descriptor",type_ext2_group_desc___show);
322 add_user_command (&ptr->type_commands,"inode","Pass to the inode table of the current group block",type_ext2_group_desc___inode);
323 add_user_command (&ptr->type_commands,"gocopy","Move to another backup copy of the group descriptor",type_ext2_group_desc___gocopy);
324 add_user_command (&ptr->type_commands,"blockbitmap","Show the block allocation bitmap of the current group block",type_ext2_group_desc___blockbitmap);
325 add_user_command (&ptr->type_commands,"inodebitmap","Show the inode allocation bitmap of the current group block",type_ext2_group_desc___inodebitmap);
326 add_user_command (&ptr->type_commands,"setactivecopy","Copies the current group descriptor to the main table",type_ext2_super_block___setactivecopy);
330 add_user_command (&ptr->type_commands,"show","Displays the block allocation bitmap",type_ext2_block_bitmap___show);
331 add_user_command (&ptr->type_commands,"entry","Moves to a specific bit",type_ext2_block_bitmap___entry);
332 add_user_command (&ptr->type_commands,"next","Moves to the next bit",type_ext2_block_bitmap___next);
333 add_user_command (&ptr->type_commands,"prev","Moves to the previous bit",type_ext2_block_bitmap___prev);
334 add_user_command (&ptr->type_commands,"allocate","Allocates the current block",type_ext2_block_bitmap___allocate);
335 add_user_command (&ptr->type_commands,"deallocate","Deallocates the current block",type_ext2_block_bitmap___deallocate);
339 add_user_command (&ptr->type_commands,"show","Displays the inode allocation bitmap",type_ext2_inode_bitmap___show);
340 add_user_command (&ptr->type_commands,"entry","Moves to a specific bit",type_ext2_inode_bitmap___entry);
341 add_user_command (&ptr->type_commands,"next","Moves to the next bit",type_ext2_inode_bitmap___next);
342 add_user_command (&ptr->type_commands,"prev","Moves to the previous bit",type_ext2_inode_bitmap___prev);
343 add_user_command (&ptr->type_commands,"allocate","Allocates the current inode",type_ext2_inode_bitmap___allocate);
344 add_user_command (&ptr->type_commands,"deallocate","Deallocates the current inode",type_ext2_inode_bitmap___deallocate);