taglinefilesource code
statbuf14fs/stat.cstatic void cp_old_stat(struct inode * inode, struct old_stat * statbuf)
statbuf20fs/stat.cverify_area(statbuf,sizeof (*statbuf));
statbuf35fs/stat.cmemcpy_tofs(statbuf,&tmp,sizeof(tmp));
statbuf38fs/stat.cstatic void cp_new_stat(struct inode * inode, struct new_stat * statbuf)
statbuf43fs/stat.cverify_area(statbuf,sizeof (*statbuf));
statbuf79fs/stat.cmemcpy_tofs(statbuf,&tmp,sizeof(tmp));
statbuf82fs/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)
statbuf99fs/stat.ccp_new_stat(inode,statbuf);
statbuf104fs/stat.cint sys_lstat(char * filename, struct old_stat * statbuf)
statbuf110fs/stat.ccp_old_stat(inode,statbuf);
statbuf115fs/stat.cint sys_newlstat(char * filename, struct new_stat * statbuf)
statbuf121fs/stat.ccp_new_stat(inode,statbuf);
statbuf126fs/stat.cint sys_fstat(unsigned int fd, struct old_stat * statbuf)
statbuf133fs/stat.ccp_old_stat(inode,statbuf);
statbuf137fs/stat.cint sys_newfstat(unsigned int fd, struct new_stat * statbuf)
statbuf144fs/stat.ccp_new_stat(inode,statbuf);