/external/e2fsprogs/ext2ed/ |
D | main.c | 123 wprintw (command_win,"\n"); in main() 146 key = wgetch(command_win); in command_read_key() 183 wprintw(command_win, "\b \b"); in rl_getc_replacement() 185 wprintw(command_win, "%c", key); in rl_getc_replacement() 205 keypad(command_win, 1); in parser() 206 wtimeout(command_win, 100); in parser() 218 wmove (command_win,0,0); in parser() 219 wclrtoeol (command_win); in parser() 220 wprintw (command_win,"ext2ed > "); in parser() 254 werase (command_win); in parser() [all …]
|
D | general_com.c | 156 wprintw (command_win,"Error - Device name not specified\n"); in set_device() 162 wprintw (command_win,"Error - Filesystem is mounted, aborting\n"); in set_device() 163 wprintw (command_win,"You may wish to use the AllowMountedRead on configuration option\n"); in set_device() 168 wprintw (command_win,"Warning - Filesystem is mounted. Displayed data may be unreliable.\n"); in set_device() 176 wprintw (command_win,"Error - Can not open device %s\n",new_device);refresh_command_win (); in set_device() 198 wprintw (command_win,"Device changed to %s",device_name);refresh_command_win (); in set_device() 210 wprintw (command_win,"Error - No device opened\n");refresh_command_win (); in set_offset() 217 wprintw (command_win,"Error - No argument specified\n");refresh_command_win (); in set_offset() 230 wprintw (command_win,"Error - No type set\n");refresh_command_win (); in set_offset() 239 wprintw (command_win,"Error - No offset specified\n");refresh_command_win (); in set_offset() [all …]
|
D | file_com.c | 80 wprintw (command_win,"Error - Block offset out of range\n");wrefresh (command_win); in type_file___nextblock() 113 wprintw (command_win,"Error - Offset out of block\n");refresh_command_win (); in type_file___next() 130 wprintw (command_win,"Error - Argument not specified\n");refresh_command_win (); in type_file___offset() 140 wprintw (command_win,"Error - Offset out of block\n");refresh_command_win (); in type_file___offset() 163 wprintw (command_win,"Error - Offset out of block\n");refresh_command_win (); in type_file___prev() 181 wprintw (command_win,"Error - Block offset out of range\n");wrefresh (command_win); in type_file___prevblock() 204 wprintw (command_win,"Error - Invalid arguments\n");wrefresh (command_win); in type_file___block() 212 wprintw (command_win,"Error - Block offset out of range\n");wrefresh (command_win); in type_file___block() 238 wprintw (command_win,"Display set to hex\n");wrefresh (command_win); in type_file___display() 244 wprintw (command_win,"Display set to text\n");wrefresh (command_win); in type_file___display() [all …]
|
D | disk.c | 62 wprintw (command_win,"Error - Failed to seek to offset %ld in device %s\n",offset,device_name); in low_read() 68 wprintw (command_win,"Error - Failed to read from offset %ld in device %s\n",offset,device_name); in low_read() 89 wprintw (command_win,"Error - Write access not available (use enablewrite)\n"); in low_write() 118 wprintw (command_win,"Error - Failed to seek to offset %ld in device %s\n",offset,device_name); in low_write() 124 wprintw (command_win,"Error - Failed to write to offset %ld in device %s\n",offset,device_name); in low_write() 128 wprintw (command_win,"Data written");refresh_command_win (); in low_write() 149 wprintw (command_win,"Error - Unable to open log file %s\n",LogFile); in log_changes() 162 wprintw (command_win,"Fatal error - Can\'t allocate %lu bytes!"); in log_changes() 223 wprintw (command_win,"Error - No device opened\n"); in write_type_data() 229 wprintw (command_win,"Error - No offset set\n"); in write_type_data()
|
D | dir_com.c | 272 … wprintw (command_win,"Error - Sorry, Only fast symbolic link following is currently supported\n"); in type_dir___cd() 304 wprintw (command_win,"Can\'t continue - Stopping at last inode\n");refresh_command_win (); in type_dir___cd() 309 …wprintw (command_win,"Error - Directory entry %s not found.\n",dir_name); /* Hmm, an invalid path … in type_dir___cd() 352 wprintw (command_win,"Error - Argument_not_specified\n");wrefresh (command_win); in type_dir___entry() 359 wprintw (command_win,"Error - Entry number out of range\n");wrefresh (command_win); in type_dir___entry() 556 wprintw (command_win,"Error - Argument not specified\n");wrefresh (command_win); in type_dir___remember() 581 …wprintw (command_win,"Object %s in Offset %ld remembered as %s\n",descriptor_ptr->name,device_offs… in type_dir___remember() 582 wrefresh (command_win); in type_dir___remember() 603 wprintw (command_win,"Error - Missing arguments\n");refresh_command_win (); in type_dir___set() 609 wprintw (command_win,"Error - Bad syntax\n");refresh_command_win ();return; in type_dir___set() [all …]
|
D | group_com.c | 62 wprintw (command_win,"Error - No argument specified\n");refresh_command_win ();return; in type_ext2_group_desc___entry() 69 wprintw (command_win,"Error - Entry number out of bounds\n");refresh_command_win ();return; in type_ext2_group_desc___entry() 88 wprintw (command_win,"Error - No argument specified\n");refresh_command_win ();return; in type_ext2_group_desc___gocopy() 97 wprintw (command_win,"Error - Copy number out of bounds\n");refresh_command_win ();return; in type_ext2_group_desc___gocopy() 125 wprintw (command_win,"Reached first group descriptor\n"); in type_ext2_group_desc___show() 126 wrefresh (command_win); in type_ext2_group_desc___show() 130 wprintw (command_win,"Reached last group descriptor\n"); in type_ext2_group_desc___show() 131 wrefresh (command_win); in type_ext2_group_desc___show()
|
D | win.c | 32 WINDOW *title_win,*show_win,*command_win,*mt_win1,*mt_win2,*show_pad; variable 81 command_win=newwin (COMMAND_WIN_LINES,COLS,LINES-COMMAND_WIN_LINES,0); in init_windows() 83 if (title_win==NULL || show_win==NULL || show_pad==NULL || command_win==NULL) { in init_windows() 91 scrollok (command_win,TRUE); in init_windows() 154 wrefresh (command_win); in refresh_command_win() 163 delwin (command_win); in close_windows() 211 wresize(command_win, COMMAND_WIN_LINES,COLS); in redraw_all() 215 mvwin(command_win, LINES-COMMAND_WIN_LINES,0); in redraw_all() 223 clearok(command_win, 1); in redraw_all()
|
D | inode_com.c | 61 wprintw (command_win,"Error - Entry out of limits\n");refresh_command_win (); in type_ext2_inode___prev() 65 wprintw (command_win,"Reached first inode in current group descriptor\n"); in type_ext2_inode___prev() 109 wprintw (command_win,"Error - Entry out of limits\n");refresh_command_win (); in type_ext2_inode___next() 113 wprintw (command_win,"Reached last inode in current group descriptor\n"); in type_ext2_inode___next() 272 wprintw (command_win,"Reached last inode in current group descriptor\n"); in type_ext2_inode___show() 277 wprintw (command_win,"Reached first inode in current group descriptor\n"); in type_ext2_inode___show() 336 wprintw (command_win,"Error - Inode type is not file\n");refresh_command_win (); in type_ext2_inode___file() 341 wprintw (command_win,"Error - Unable to show file\n");refresh_command_win (); in type_ext2_inode___file() 354 wprintw (command_win,"Error - Inode type is not directory\n");refresh_command_win (); in type_ext2_inode___dir() 361 wprintw (command_win,"Error - Unable to show directory\n");refresh_command_win (); in type_ext2_inode___dir()
|
D | inodebitmap_com.c | 35 wprintw (command_win,"Error - No argument specified\n");refresh_command_win ();return; in type_ext2_inode_bitmap___entry() 42 wprintw (command_win,"Error - Entry number out of bounds\n");refresh_command_win ();return; in type_ext2_inode_bitmap___entry() 95 wprintw (command_win,"Error - There aren't that much inodes in the group\n"); in type_ext2_inode_bitmap___allocate() 121 wprintw (command_win,"Error - There aren't that much inodes in the group\n"); in type_ext2_inode_bitmap___deallocate()
|
D | blockbitmap_com.c | 50 wprintw (command_win,"Error - No argument specified\n"); in type_ext2_block_bitmap___entry() 60 wprintw (command_win,"Error - Entry number out of bounds\n"); in type_ext2_block_bitmap___entry() 131 wprintw (command_win,"Error - There aren't that much blocks in the group\n"); in type_ext2_block_bitmap___allocate() 159 wprintw (command_win,"Error - There aren't that much blocks in the group\n"); in type_ext2_block_bitmap___deallocate()
|
D | init.c | 115 wprintw (command_win,"Error - Failed to open descriptors file %s\n",file_name); in set_struct_descriptors() 391 wprintw (command_win,"Detected extended 2 file system on device %s\n",device_name); in set_file_system_info() 393 wprintw (command_win,"Warning - Extended 2 filesystem not detected on device %s\n",device_name); in set_file_system_info() 396 wprintw (command_win,"You may wish to use the configuration option ForceExt2 on\n"); in set_file_system_info() 399 wprintw (command_win,"Forcing extended 2 filesystem\n"); in set_file_system_info() 402 wprintw (command_win,"Forcing default parameters\n"); in set_file_system_info() 435 wprintw (command_win,"Sorry, filesystems bigger than 2 GB are currently not supported\n"); in set_file_system_info() 617 wprintw (command_win,"Error - Failed to open /etc/mtab. Assuming filesystem is mounted.\n"); in check_mounted()
|
D | ext2_com.c | 58 wprintw (command_win,"Error - No argument specified\n");refresh_command_win ();return; in type_ext2___cd() 63 …wprintw (command_win,"Error - Use a full pathname (begin with '/')\n");refresh_command_win ();retu… in type_ext2___cd()
|
D | super_com.c | 128 wprintw (command_win,"Error - No argument specified\n");refresh_command_win ();return; in type_ext2_super_block___gocopy() 137 wprintw (command_win,"Error - Copy number out of bounds\n");refresh_command_win ();return; in type_ext2_super_block___gocopy()
|
D | ext2ed.h | 424 extern WINDOW *title_win,*show_win,*command_win,*show_pad;
|
/external/llvm-project/lldb/utils/lui/ |
D | lui.py | 96 self.command_win = commandwin.CommandWin( 108 self.command_win,
|