/external/e2fsprogs/ext2ed/ |
D | win.c | 31 WINDOW *title_win,*show_win,*command_win,*mt_win1,*mt_win2,*show_pad; variable 52 wbkgdset (show_win,A_REVERSE);werase (show_win); in setup_show_win() 76 show_win=newwin (SHOW_WIN_LINES,COLS,TITLE_WIN_LINES,0); in init_windows() 82 if (title_win==NULL || show_win==NULL || show_pad==NULL || command_win==NULL) { in init_windows() 114 wmove (show_win,2,COLS-18); in refresh_show_win() 115 wprintw (show_win,"Page %d of %d\n",current_page,total_pages); in refresh_show_win() 117 wmove (show_win,2,COLS-18); in refresh_show_win() 118 wrefresh (show_win); in refresh_show_win() 163 delwin (show_win); in close_windows() 176 wmove (show_win,0,0); in show_info() [all …]
|
D | inode_com.c | 210 wmove (show_win,1,0); in type_ext2_inode___show() 212 wprintw (show_win,"Inode %ld of %ld. Entry %ld of %ld in group descriptor %ld.\n" in type_ext2_inode___show() 215 wprintw (show_win,"Inode type: "); in type_ext2_inode___show() 220 wprintw (show_win,"Bad blocks inode - "); in type_ext2_inode___show() 223 wprintw (show_win,"Root inode - "); in type_ext2_inode___show() 226 wprintw (show_win,"User quota inode - "); in type_ext2_inode___show() 229 wprintw (show_win,"Group quota inode - "); in type_ext2_inode___show() 232 wprintw (show_win,"Boot loader inode - "); in type_ext2_inode___show() 235 wprintw (show_win,"Undelete directory inode - "); in type_ext2_inode___show() 238 wprintw (show_win,"Reserved inode - "); in type_ext2_inode___show() [all …]
|
D | group_com.c | 117 wmove (show_win,1,0);wprintw (show_win,"\n");wmove (show_win,2,0); in type_ext2_group_desc___show() 118 wprintw (show_win,"Group %ld of %ld ",group_num,file_system_info.groups_count-1); in type_ext2_group_desc___show() 119 wprintw (show_win,"in copy %ld ",group_info.copy_num); in type_ext2_group_desc___show() 120 if (group_info.copy_num==0) wprintw (show_win,"(Main copy)"); in type_ext2_group_desc___show() 121 wprintw (show_win,"\n");refresh_show_win (); in type_ext2_group_desc___show()
|
D | super_com.c | 111 wmove (show_win,1,0);wprintw (show_win,"\n");wmove (show_win,2,0); in type_ext2_super_block___show() 112 wprintw (show_win,"Superblock copy %ld ",super_info.copy_num); in type_ext2_super_block___show() 114 wprintw (show_win,"(main copy)"); in type_ext2_super_block___show() 115 wprintw (show_win,"\n"); in type_ext2_super_block___show()
|
D | blockbitmap_com.c | 248 wmove (show_win,1,0); in type_ext2_block_bitmap___show() 249 wprintw (show_win,"Block bitmap of block group %ld\n",block_bitmap_info.group_num); in type_ext2_block_bitmap___show() 255 wprintw (show_win,"Status of block %ld - ",block_num); /* and the allocation status */ in type_ext2_block_bitmap___show() 261 wprintw (show_win,"Allocated\n"); in type_ext2_block_bitmap___show() 263 wprintw (show_win,"Free\n"); in type_ext2_block_bitmap___show()
|
D | inodebitmap_com.c | 201 …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() 204 wprintw (show_win,"Status of inode %ld - ",inode_num); in type_ext2_inode_bitmap___show() 210 wprintw (show_win,"Allocated\n"); in type_ext2_inode_bitmap___show() 212 wprintw (show_win,"Free\n"); in type_ext2_inode_bitmap___show()
|
D | file_com.c | 384 werase (show_win);wmove (show_win,0,0); in show_status() 385 wprintw (show_win,"File contents. Block %ld. ",file_info.global_block_num); in show_status() 386 wprintw (show_win,"File block %ld of %ld. ",file_info.block_num,file_info.blocks_count-1); in show_status() 387 wprintw (show_win,"File Offset %ld of %ld.",file_info.file_offset,file_info.file_length-1); in show_status() 389 wmove (show_win,1,0); in show_status() 391 wprintw (show_win,"File inode %ld. Indirection level %ld.",inode_num,file_info.level); in show_status()
|
D | dir_com.c | 526 wmove (show_win,0,0); in show_dir_status() 527 wprintw (show_win,"Directory listing. Block %ld. ",file_info.global_block_num); in show_dir_status() 528 …wprintw (show_win,"Directory entry %ld of %ld.\n",file_info.dir_entry_num,file_info.dir_entries_co… in show_dir_status() 529 wprintw (show_win,"Directory Offset %ld of %ld. ",file_info.file_offset,file_info.file_length-1); in show_dir_status() 532 wprintw (show_win,"File inode %ld. Indirection level %ld.\n",inode_num,file_info.level); in show_dir_status()
|
D | general_com.c | 103 werase (show_win);wmove (show_win,0,0); in help() 104 wprintw (show_win,"EXT2ED help"); in help()
|
D | ext2ed.h | 424 extern WINDOW *title_win,*show_win,*command_win,*show_pad;
|