tag | line | file | source code |
statbuf | 23 | fs/stat.c | static void cp_old_stat(struct inode * inode, struct old_stat * statbuf) |
statbuf | 42 | fs/stat.c | memcpy_tofs(statbuf,&tmp,sizeof(tmp)); |
statbuf | 47 | fs/stat.c | static void cp_new_stat(struct inode * inode, struct new_stat * statbuf) |
statbuf | 102 | fs/stat.c | memcpy_tofs(statbuf,&tmp,sizeof(tmp)); |
statbuf | 110 | fs/stat.c | asmlinkage int sys_stat(char * filename, struct old_stat * statbuf) |
statbuf | 115 | fs/stat.c | error = verify_area(VERIFY_WRITE,statbuf,sizeof (*statbuf)); |
statbuf | 121 | fs/stat.c | cp_old_stat(inode,statbuf); |
statbuf | 127 | fs/stat.c | asmlinkage int sys_newstat(char * filename, struct new_stat * statbuf) |
statbuf | 132 | fs/stat.c | error = verify_area(VERIFY_WRITE,statbuf,sizeof (*statbuf)); |
statbuf | 138 | fs/stat.c | cp_new_stat(inode,statbuf); |
statbuf | 149 | fs/stat.c | asmlinkage int sys_lstat(char * filename, struct old_stat * statbuf) |
statbuf | 154 | fs/stat.c | error = verify_area(VERIFY_WRITE,statbuf,sizeof (*statbuf)); |
statbuf | 160 | fs/stat.c | cp_old_stat(inode,statbuf); |
statbuf | 167 | fs/stat.c | asmlinkage int sys_newlstat(char * filename, struct new_stat * statbuf) |
statbuf | 172 | fs/stat.c | error = verify_area(VERIFY_WRITE,statbuf,sizeof (*statbuf)); |
statbuf | 178 | fs/stat.c | cp_new_stat(inode,statbuf); |
statbuf | 189 | fs/stat.c | asmlinkage int sys_fstat(unsigned int fd, struct old_stat * statbuf) |
statbuf | 195 | fs/stat.c | error = verify_area(VERIFY_WRITE,statbuf,sizeof (*statbuf)); |
statbuf | 200 | fs/stat.c | cp_old_stat(inode,statbuf); |
statbuf | 206 | fs/stat.c | asmlinkage int sys_newfstat(unsigned int fd, struct new_stat * statbuf) |
statbuf | 212 | fs/stat.c | error = verify_area(VERIFY_WRITE,statbuf,sizeof (*statbuf)); |
statbuf | 217 | fs/stat.c | cp_new_stat(inode,statbuf); |