/external/e2fsprogs/ext2ed/ |
D | win.c | 32 WINDOW *title_win,*show_win,*command_win,*mt_win1,*mt_win2,*show_pad; variable 53 wbkgdset (show_win,A_REVERSE);werase (show_win); in setup_show_win() 77 show_win=newwin (SHOW_WIN_LINES,COLS,TITLE_WIN_LINES,0); in init_windows() 83 if (title_win==NULL || show_win==NULL || show_pad==NULL || command_win==NULL) { in init_windows() 115 wmove (show_win,2,COLS-18); in refresh_show_win() 116 wprintw (show_win,"Page %d of %d\n",current_page,total_pages); in refresh_show_win() 118 wmove (show_win,2,COLS-18); in refresh_show_win() 119 wrefresh (show_win); in refresh_show_win() 164 delwin (show_win); in close_windows() 177 wmove (show_win,0,0); in show_info() [all …]
|
D | inode_com.c | 211 wmove (show_win,1,0); in type_ext2_inode___show() 213 wprintw (show_win,"Inode %ld of %ld. Entry %ld of %ld in group descriptor %ld.\n" in type_ext2_inode___show() 216 wprintw (show_win,"Inode type: "); in type_ext2_inode___show() 221 wprintw (show_win,"Bad blocks inode - "); in type_ext2_inode___show() 224 wprintw (show_win,"Root inode - "); in type_ext2_inode___show() 227 wprintw (show_win,"User quota inode - "); in type_ext2_inode___show() 230 wprintw (show_win,"Group quota inode - "); in type_ext2_inode___show() 233 wprintw (show_win,"Boot loader inode - "); in type_ext2_inode___show() 236 wprintw (show_win,"Undelete directory inode - "); in type_ext2_inode___show() 239 wprintw (show_win,"Reserved inode - "); in type_ext2_inode___show() [all …]
|
D | group_com.c | 118 wmove (show_win,1,0);wprintw (show_win,"\n");wmove (show_win,2,0); in type_ext2_group_desc___show() 119 wprintw (show_win,"Group %ld of %ld ",group_num,file_system_info.groups_count-1); in type_ext2_group_desc___show() 120 wprintw (show_win,"in copy %ld ",group_info.copy_num); in type_ext2_group_desc___show() 121 if (group_info.copy_num==0) wprintw (show_win,"(Main copy)"); in type_ext2_group_desc___show() 122 wprintw (show_win,"\n");refresh_show_win (); in type_ext2_group_desc___show()
|
D | super_com.c | 112 wmove (show_win,1,0);wprintw (show_win,"\n");wmove (show_win,2,0); in type_ext2_super_block___show() 113 wprintw (show_win,"Superblock copy %ld ",super_info.copy_num); in type_ext2_super_block___show() 115 wprintw (show_win,"(main copy)"); in type_ext2_super_block___show() 116 wprintw (show_win,"\n"); in type_ext2_super_block___show()
|
D | inodebitmap_com.c | 202 …wmove (show_win,1,0);wprintw (show_win,"Inode bitmap of block group %ld\n",inode_bitmap_info.group… in type_ext2_inode_bitmap___show() 205 wprintw (show_win,"Status of inode %ld - ",inode_num); in type_ext2_inode_bitmap___show() 211 wprintw (show_win,"Allocated\n"); in type_ext2_inode_bitmap___show() 213 wprintw (show_win,"Free\n"); in type_ext2_inode_bitmap___show()
|
D | blockbitmap_com.c | 249 wmove (show_win,1,0); in type_ext2_block_bitmap___show() 250 wprintw (show_win,"Block bitmap of block group %ld\n",block_bitmap_info.group_num); in type_ext2_block_bitmap___show() 256 wprintw (show_win,"Status of block %ld - ",block_num); /* and the allocation status */ in type_ext2_block_bitmap___show() 262 wprintw (show_win,"Allocated\n"); in type_ext2_block_bitmap___show() 264 wprintw (show_win,"Free\n"); in type_ext2_block_bitmap___show()
|
D | file_com.c | 385 werase (show_win);wmove (show_win,0,0); in show_status() 386 wprintw (show_win,"File contents. Block %ld. ",file_info.global_block_num); in show_status() 387 wprintw (show_win,"File block %ld of %ld. ",file_info.block_num,file_info.blocks_count-1); in show_status() 388 wprintw (show_win,"File Offset %ld of %ld.",file_info.file_offset,file_info.file_length-1); in show_status() 390 wmove (show_win,1,0); in show_status() 392 wprintw (show_win,"File inode %ld. Indirection level %ld.",inode_num,file_info.level); in show_status()
|
D | dir_com.c | 527 wmove (show_win,0,0); in show_dir_status() 528 wprintw (show_win,"Directory listing. Block %ld. ",file_info.global_block_num); in show_dir_status() 529 …wprintw (show_win,"Directory entry %ld of %ld.\n",file_info.dir_entry_num,file_info.dir_entries_co… in show_dir_status() 530 wprintw (show_win,"Directory Offset %ld of %ld. ",file_info.file_offset,file_info.file_length-1); in show_dir_status() 533 wprintw (show_win,"File inode %ld. Indirection level %ld.\n",inode_num,file_info.level); in show_dir_status()
|
D | general_com.c | 104 werase (show_win);wmove (show_win,0,0); in help() 105 wprintw (show_win,"EXT2ED help"); in help()
|
D | ext2ed.h | 424 extern WINDOW *title_win,*show_win,*command_win,*show_pad;
|