taglinefilesource code
statbuf14fs/stat.cstatic void cp_old_stat(struct inode * inode, struct old_stat * statbuf)
statbuf20fs/stat.cverify_area(statbuf,sizeof (*statbuf));
statbuf32fs/stat.cmemcpy_tofs(statbuf,&tmp,sizeof(tmp));
statbuf35fs/stat.cstatic void cp_new_stat(struct inode * inode, struct new_stat * statbuf)
statbuf40fs/stat.cverify_area(statbuf,sizeof (*statbuf));
statbuf77fs/stat.cmemcpy_tofs(statbuf,&tmp,sizeof(tmp));
statbuf80fs/stat.cint sys_stat(char * filename, struct old_stat * statbuf)
statbuf88fs/stat.ccp_old_stat(inode,statbuf);
statbuf93fs/stat.cint sys_newstat(char * filename, struct new_stat * statbuf)
statbuf101fs/stat.ccp_new_stat(inode,statbuf);
statbuf106fs/stat.cint sys_lstat(char * filename, struct old_stat * statbuf)
statbuf114fs/stat.ccp_old_stat(inode,statbuf);
statbuf119fs/stat.cint sys_newlstat(char * filename, struct new_stat * statbuf)
statbuf127fs/stat.ccp_new_stat(inode,statbuf);
statbuf132fs/stat.cint sys_fstat(unsigned int fd, struct old_stat * statbuf)
statbuf139fs/stat.ccp_old_stat(inode,statbuf);
statbuf143fs/stat.cint sys_newfstat(unsigned int fd, struct new_stat * statbuf)
statbuf150fs/stat.ccp_new_stat(inode,statbuf);