• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/gdb/sim/h8300/

Lines Matching refs:stat_rec

3072 	    struct stat stat_rec;	/* Stat record */
3075 char *temp_stat_ptr; /* Temporary stat_rec pointer. */
3083 fstat_return = sim_callback->fstat (sim_callback, fd, &stat_rec);
3085 /* Have stat_ptr point to starting of stat_rec. */
3086 temp_stat_ptr = (char *) (&stat_rec);
3089 SET_MEMORY_W (stat_ptr, stat_rec.st_dev);
3091 SET_MEMORY_W (stat_ptr, stat_rec.st_ino);
3093 SET_MEMORY_L (stat_ptr, stat_rec.st_mode);
3095 SET_MEMORY_W (stat_ptr, stat_rec.st_nlink);
3097 SET_MEMORY_W (stat_ptr, stat_rec.st_uid);
3099 SET_MEMORY_W (stat_ptr, stat_rec.st_gid);
3101 SET_MEMORY_W (stat_ptr, stat_rec.st_rdev);
3103 SET_MEMORY_L (stat_ptr, stat_rec.st_size);
3105 SET_MEMORY_L (stat_ptr, stat_rec.st_atime);
3107 SET_MEMORY_L (stat_ptr, stat_rec.st_mtime);
3109 SET_MEMORY_L (stat_ptr, stat_rec.st_ctime);
3122 struct stat stat_rec; /* Stat record */
3125 char *temp_stat_ptr; /* Temporary stat_rec pointer. */
3157 sim_callback->stat (sim_callback, filename, &stat_rec);
3159 /* Have stat_ptr point to starting of stat_rec. */
3160 temp_stat_ptr = (char *) (&stat_rec);
3166 SET_MEMORY_W (stat_ptr, stat_rec.st_dev);
3168 SET_MEMORY_W (stat_ptr, stat_rec.st_ino);
3170 SET_MEMORY_L (stat_ptr, stat_rec.st_mode);
3172 SET_MEMORY_W (stat_ptr, stat_rec.st_nlink);
3174 SET_MEMORY_W (stat_ptr, stat_rec.st_uid);
3176 SET_MEMORY_W (stat_ptr, stat_rec.st_gid);
3178 SET_MEMORY_W (stat_ptr, stat_rec.st_rdev);
3180 SET_MEMORY_L (stat_ptr, stat_rec.st_size);
3182 SET_MEMORY_L (stat_ptr, stat_rec.st_atime);
3184 SET_MEMORY_L (stat_ptr, stat_rec.st_mtime);
3186 SET_MEMORY_L (stat_ptr, stat_rec.st_ctime);