tag | line | file | source code |
statbuf | 17 | fs/stat.c | static void cp_old_stat(struct inode * inode, struct old_stat * statbuf) |
statbuf | 36 | fs/stat.c | memcpy_tofs(statbuf,&tmp,sizeof(tmp)); |
statbuf | 39 | fs/stat.c | static void cp_new_stat(struct inode * inode, struct new_stat * statbuf) |
statbuf | 94 | fs/stat.c | memcpy_tofs(statbuf,&tmp,sizeof(tmp)); |
statbuf | 97 | fs/stat.c | asmlinkage int sys_stat(char * filename, struct old_stat * statbuf) |
statbuf | 102 | fs/stat.c | error = verify_area(VERIFY_WRITE,statbuf,sizeof (*statbuf)); |
statbuf | 108 | fs/stat.c | cp_old_stat(inode,statbuf); |
statbuf | 113 | fs/stat.c | asmlinkage int sys_newstat(char * filename, struct new_stat * statbuf) |
statbuf | 118 | fs/stat.c | error = verify_area(VERIFY_WRITE,statbuf,sizeof (*statbuf)); |
statbuf | 124 | fs/stat.c | cp_new_stat(inode,statbuf); |
statbuf | 129 | fs/stat.c | asmlinkage int sys_lstat(char * filename, struct old_stat * statbuf) |
statbuf | 134 | fs/stat.c | error = verify_area(VERIFY_WRITE,statbuf,sizeof (*statbuf)); |
statbuf | 140 | fs/stat.c | cp_old_stat(inode,statbuf); |
statbuf | 145 | fs/stat.c | asmlinkage int sys_newlstat(char * filename, struct new_stat * statbuf) |
statbuf | 150 | fs/stat.c | error = verify_area(VERIFY_WRITE,statbuf,sizeof (*statbuf)); |
statbuf | 156 | fs/stat.c | cp_new_stat(inode,statbuf); |
statbuf | 161 | fs/stat.c | asmlinkage int sys_fstat(unsigned int fd, struct old_stat * statbuf) |
statbuf | 167 | fs/stat.c | error = verify_area(VERIFY_WRITE,statbuf,sizeof (*statbuf)); |
statbuf | 172 | fs/stat.c | cp_old_stat(inode,statbuf); |
statbuf | 176 | fs/stat.c | asmlinkage int sys_newfstat(unsigned int fd, struct new_stat * statbuf) |
statbuf | 182 | fs/stat.c | error = verify_area(VERIFY_WRITE,statbuf,sizeof (*statbuf)); |
statbuf | 187 | fs/stat.c | cp_new_stat(inode,statbuf); |