/external/e2fsprogs/ext2ed/ |
D | main.c | 122 wprintw (command_win,"\n"); in main() 145 key = wgetch(command_win); in command_read_key() 182 wprintw(command_win, "\b \b"); in rl_getc_replacement() 184 wprintw(command_win, "%c", key); in rl_getc_replacement() 204 keypad(command_win, 1); in parser() 205 wtimeout(command_win, 100); in parser() 217 wmove (command_win,0,0); in parser() 218 wclrtoeol (command_win); in parser() 219 wprintw (command_win,"ext2ed > "); in parser() 253 werase (command_win); in parser() [all …]
|
D | general_com.c | 155 wprintw (command_win,"Error - Device name not specified\n"); in set_device() 161 wprintw (command_win,"Error - Filesystem is mounted, aborting\n"); in set_device() 162 wprintw (command_win,"You may wish to use the AllowMountedRead on configuration option\n"); in set_device() 167 wprintw (command_win,"Warning - Filesystem is mounted. Displayed data may be unreliable.\n"); in set_device() 175 wprintw (command_win,"Error - Can not open device %s\n",new_device);refresh_command_win (); in set_device() 197 wprintw (command_win,"Device changed to %s",device_name);refresh_command_win (); in set_device() 209 wprintw (command_win,"Error - No device opened\n");refresh_command_win (); in set_offset() 216 wprintw (command_win,"Error - No argument specified\n");refresh_command_win (); in set_offset() 229 wprintw (command_win,"Error - No type set\n");refresh_command_win (); in set_offset() 238 wprintw (command_win,"Error - No offset specified\n");refresh_command_win (); in set_offset() [all …]
|
D | file_com.c | 79 wprintw (command_win,"Error - Block offset out of range\n");wrefresh (command_win); in type_file___nextblock() 112 wprintw (command_win,"Error - Offset out of block\n");refresh_command_win (); in type_file___next() 129 wprintw (command_win,"Error - Argument not specified\n");refresh_command_win (); in type_file___offset() 139 wprintw (command_win,"Error - Offset out of block\n");refresh_command_win (); in type_file___offset() 162 wprintw (command_win,"Error - Offset out of block\n");refresh_command_win (); in type_file___prev() 180 wprintw (command_win,"Error - Block offset out of range\n");wrefresh (command_win); in type_file___prevblock() 203 wprintw (command_win,"Error - Invalid arguments\n");wrefresh (command_win); in type_file___block() 211 wprintw (command_win,"Error - Block offset out of range\n");wrefresh (command_win); in type_file___block() 237 wprintw (command_win,"Display set to hex\n");wrefresh (command_win); in type_file___display() 243 wprintw (command_win,"Display set to text\n");wrefresh (command_win); in type_file___display() [all …]
|
D | disk.c | 61 wprintw (command_win,"Error - Failed to seek to offset %ld in device %s\n",offset,device_name); in low_read() 67 wprintw (command_win,"Error - Failed to read from offset %ld in device %s\n",offset,device_name); in low_read() 88 wprintw (command_win,"Error - Write access not aviable (use enablewrite)\n"); in low_write() 117 wprintw (command_win,"Error - Failed to seek to offset %ld in device %s\n",offset,device_name); in low_write() 123 wprintw (command_win,"Error - Failed to write to offset %ld in device %s\n",offset,device_name); in low_write() 127 wprintw (command_win,"Data written");refresh_command_win (); in low_write() 148 wprintw (command_win,"Error - Unable to open log file %s\n",LogFile); in log_changes() 161 wprintw (command_win,"Fatal error - Can\'t allocate %lu bytes!"); in log_changes() 222 wprintw (command_win,"Error - No device opened\n"); in write_type_data() 228 wprintw (command_win,"Error - No offset set\n"); in write_type_data()
|
D | dir_com.c | 271 … wprintw (command_win,"Error - Sorry, Only fast symbolic link following is currently supported\n"); in type_dir___cd() 303 wprintw (command_win,"Can\'t continue - Stopping at last inode\n");refresh_command_win (); in type_dir___cd() 308 …wprintw (command_win,"Error - Directory entry %s not found.\n",dir_name); /* Hmm, an invalid path … in type_dir___cd() 351 wprintw (command_win,"Error - Argument_not_specified\n");wrefresh (command_win); in type_dir___entry() 358 wprintw (command_win,"Error - Entry number out of range\n");wrefresh (command_win); in type_dir___entry() 555 wprintw (command_win,"Error - Argument not specified\n");wrefresh (command_win); in type_dir___remember() 580 …wprintw (command_win,"Object %s in Offset %ld remembered as %s\n",descriptor_ptr->name,device_offs… in type_dir___remember() 581 wrefresh (command_win); in type_dir___remember() 602 wprintw (command_win,"Error - Missing arguments\n");refresh_command_win (); in type_dir___set() 608 wprintw (command_win,"Error - Bad syntax\n");refresh_command_win ();return; in type_dir___set() [all …]
|
D | group_com.c | 61 wprintw (command_win,"Error - No argument specified\n");refresh_command_win ();return; in type_ext2_group_desc___entry() 68 wprintw (command_win,"Error - Entry number out of bounds\n");refresh_command_win ();return; in type_ext2_group_desc___entry() 87 wprintw (command_win,"Error - No argument specified\n");refresh_command_win ();return; in type_ext2_group_desc___gocopy() 96 wprintw (command_win,"Error - Copy number out of bounds\n");refresh_command_win ();return; in type_ext2_group_desc___gocopy() 124 wprintw (command_win,"Reached first group descriptor\n"); in type_ext2_group_desc___show() 125 wrefresh (command_win); in type_ext2_group_desc___show() 129 wprintw (command_win,"Reached last group descriptor\n"); in type_ext2_group_desc___show() 130 wrefresh (command_win); in type_ext2_group_desc___show()
|
D | win.c | 31 WINDOW *title_win,*show_win,*command_win,*mt_win1,*mt_win2,*show_pad; variable 80 command_win=newwin (COMMAND_WIN_LINES,COLS,LINES-COMMAND_WIN_LINES,0); in init_windows() 82 if (title_win==NULL || show_win==NULL || show_pad==NULL || command_win==NULL) { in init_windows() 90 scrollok (command_win,TRUE); in init_windows() 153 wrefresh (command_win); in refresh_command_win() 162 delwin (command_win); in close_windows() 210 wresize(command_win, COMMAND_WIN_LINES,COLS); in redraw_all() 214 mvwin(command_win, LINES-COMMAND_WIN_LINES,0); in redraw_all() 222 clearok(command_win, 1); in redraw_all()
|
D | inode_com.c | 60 wprintw (command_win,"Error - Entry out of limits\n");refresh_command_win (); in type_ext2_inode___prev() 64 wprintw (command_win,"Reached first inode in current group descriptor\n"); in type_ext2_inode___prev() 108 wprintw (command_win,"Error - Entry out of limits\n");refresh_command_win (); in type_ext2_inode___next() 112 wprintw (command_win,"Reached last inode in current group descriptor\n"); in type_ext2_inode___next() 271 wprintw (command_win,"Reached last inode in current group descriptor\n"); in type_ext2_inode___show() 276 wprintw (command_win,"Reached first inode in current group descriptor\n"); in type_ext2_inode___show() 335 wprintw (command_win,"Error - Inode type is not file\n");refresh_command_win (); in type_ext2_inode___file() 340 wprintw (command_win,"Error - Unable to show file\n");refresh_command_win (); in type_ext2_inode___file() 353 wprintw (command_win,"Error - Inode type is not directory\n");refresh_command_win (); in type_ext2_inode___dir() 360 wprintw (command_win,"Error - Unable to show directory\n");refresh_command_win (); in type_ext2_inode___dir()
|
D | blockbitmap_com.c | 49 wprintw (command_win,"Error - No argument specified\n"); in type_ext2_block_bitmap___entry() 59 wprintw (command_win,"Error - Entry number out of bounds\n"); in type_ext2_block_bitmap___entry() 130 wprintw (command_win,"Error - There aren't that much blocks in the group\n"); in type_ext2_block_bitmap___allocate() 158 wprintw (command_win,"Error - There aren't that much blocks in the group\n"); in type_ext2_block_bitmap___deallocate()
|
D | inodebitmap_com.c | 34 wprintw (command_win,"Error - No argument specified\n");refresh_command_win ();return; in type_ext2_inode_bitmap___entry() 41 wprintw (command_win,"Error - Entry number out of bounds\n");refresh_command_win ();return; in type_ext2_inode_bitmap___entry() 94 wprintw (command_win,"Error - There aren't that much inodes in the group\n"); in type_ext2_inode_bitmap___allocate() 120 wprintw (command_win,"Error - There aren't that much inodes in the group\n"); in type_ext2_inode_bitmap___deallocate()
|
D | init.c | 114 wprintw (command_win,"Error - Failed to open descriptors file %s\n",file_name); in set_struct_descriptors() 397 wprintw (command_win,"Detected extended 2 file system on device %s\n",device_name); in set_file_system_info() 399 wprintw (command_win,"Warning - Extended 2 filesystem not detected on device %s\n",device_name); in set_file_system_info() 402 wprintw (command_win,"You may wish to use the configuration option ForceExt2 on\n"); in set_file_system_info() 405 wprintw (command_win,"Forcing extended 2 filesystem\n"); in set_file_system_info() 408 wprintw (command_win,"Forcing default parameters\n"); in set_file_system_info() 441 wprintw (command_win,"Sorry, filesystems bigger than 2 GB are currently not supported\n"); in set_file_system_info() 623 wprintw (command_win,"Error - Failed to open /etc/mtab. Assuming filesystem is mounted.\n"); in check_mounted()
|
D | ext2_com.c | 57 wprintw (command_win,"Error - No argument specified\n");refresh_command_win ();return; in type_ext2___cd() 62 …wprintw (command_win,"Error - Use a full pathname (begin with '/')\n");refresh_command_win ();retu… in type_ext2___cd()
|
D | super_com.c | 131 wprintw (command_win,"Error - No argument specified\n");refresh_command_win ();return; in type_ext2_super_block___gocopy() 140 wprintw (command_win,"Error - Copy number out of bounds\n");refresh_command_win ();return; in type_ext2_super_block___gocopy()
|
D | ext2ed.h | 428 extern WINDOW *title_win,*show_win,*command_win,*show_pad;
|