| tag | line | file | source code |
| statbuf | 14 | fs/stat.c | static void cp_old_stat(struct inode * inode, struct old_stat * statbuf) |
| statbuf | 31 | fs/stat.c | memcpy_tofs(statbuf,&tmp,sizeof(tmp)); |
| statbuf | 34 | fs/stat.c | static void cp_new_stat(struct inode * inode, struct new_stat * statbuf) |
| statbuf | 86 | fs/stat.c | memcpy_tofs(statbuf,&tmp,sizeof(tmp)); |
| statbuf | 89 | fs/stat.c | asmlinkage int sys_stat(char * filename, struct old_stat * statbuf) |
| statbuf | 94 | fs/stat.c | error = verify_area(VERIFY_WRITE,statbuf,sizeof (*statbuf)); |
| statbuf | 100 | fs/stat.c | cp_old_stat(inode,statbuf); |
| statbuf | 105 | fs/stat.c | asmlinkage int sys_newstat(char * filename, struct new_stat * statbuf) |
| statbuf | 110 | fs/stat.c | error = verify_area(VERIFY_WRITE,statbuf,sizeof (*statbuf)); |
| statbuf | 116 | fs/stat.c | cp_new_stat(inode,statbuf); |
| statbuf | 121 | fs/stat.c | asmlinkage int sys_lstat(char * filename, struct old_stat * statbuf) |
| statbuf | 126 | fs/stat.c | error = verify_area(VERIFY_WRITE,statbuf,sizeof (*statbuf)); |
| statbuf | 132 | fs/stat.c | cp_old_stat(inode,statbuf); |
| statbuf | 137 | fs/stat.c | asmlinkage int sys_newlstat(char * filename, struct new_stat * statbuf) |
| statbuf | 142 | fs/stat.c | error = verify_area(VERIFY_WRITE,statbuf,sizeof (*statbuf)); |
| statbuf | 148 | fs/stat.c | cp_new_stat(inode,statbuf); |
| statbuf | 153 | fs/stat.c | asmlinkage int sys_fstat(unsigned int fd, struct old_stat * statbuf) |
| statbuf | 159 | fs/stat.c | error = verify_area(VERIFY_WRITE,statbuf,sizeof (*statbuf)); |
| statbuf | 164 | fs/stat.c | cp_old_stat(inode,statbuf); |
| statbuf | 168 | fs/stat.c | asmlinkage int sys_newfstat(unsigned int fd, struct new_stat * statbuf) |
| statbuf | 174 | fs/stat.c | error = verify_area(VERIFY_WRITE,statbuf,sizeof (*statbuf)); |
| statbuf | 179 | fs/stat.c | cp_new_stat(inode,statbuf); |