Home | History | Annotate | Download | only in ext2ed

Lines Matching refs:variable

13 Most of the functions use the global variable file_info (along with the special directory fields there) to save
589 because it is of variable length.
595 unsigned char *ptr,buffer [80],variable [80],value [80],temp [80];
610 strncpy (variable,buffer,ptr-buffer);variable [ptr-buffer]=0;
613 if (strcasecmp ("inode",variable)==0) {
616 wprintw (command_win,"Variable %s set to %lu\n",variable,dir_entry_ptr->inode);refresh_command_win ();
620 if (strcasecmp ("rec_len",variable)==0) {
623 wprintw (command_win,"Variable %s set to %lu\n",variable,dir_entry_ptr->rec_len);refresh_command_win ();
627 if (strcasecmp ("name_len",variable)==0) {
630 wprintw (command_win,"Variable %s set to %lu\n",variable,dir_entry_ptr->name_len);refresh_command_win ();
634 if (strcasecmp ("name",variable)==0) {
641 wprintw (command_win,"Variable %s set to %s\n",variable,value);refresh_command_win ();
659 wprintw (command_win,"Error - Variable %s not found\n",variable);