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 | 75 | fs/stat.c | memcpy_tofs(statbuf,&tmp,sizeof(tmp)); |
statbuf | 78 | fs/stat.c | int sys_stat(char * filename, struct old_stat * statbuf) |
statbuf | 83 | fs/stat.c | error = verify_area(VERIFY_WRITE,statbuf,sizeof (*statbuf)); |
statbuf | 89 | fs/stat.c | cp_old_stat(inode,statbuf); |
statbuf | 94 | fs/stat.c | int sys_newstat(char * filename, struct new_stat * statbuf) |
statbuf | 99 | fs/stat.c | error = verify_area(VERIFY_WRITE,statbuf,sizeof (*statbuf)); |
statbuf | 105 | fs/stat.c | cp_new_stat(inode,statbuf); |
statbuf | 110 | fs/stat.c | int sys_lstat(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 | 126 | fs/stat.c | int sys_newlstat(char * filename, struct new_stat * statbuf) |
statbuf | 131 | fs/stat.c | error = verify_area(VERIFY_WRITE,statbuf,sizeof (*statbuf)); |
statbuf | 137 | fs/stat.c | cp_new_stat(inode,statbuf); |
statbuf | 142 | fs/stat.c | int sys_fstat(unsigned int fd, struct old_stat * statbuf) |
statbuf | 148 | fs/stat.c | error = verify_area(VERIFY_WRITE,statbuf,sizeof (*statbuf)); |
statbuf | 153 | fs/stat.c | cp_old_stat(inode,statbuf); |
statbuf | 157 | fs/stat.c | int sys_newfstat(unsigned int fd, struct new_stat * statbuf) |
statbuf | 163 | fs/stat.c | error = verify_area(VERIFY_WRITE,statbuf,sizeof (*statbuf)); |
statbuf | 168 | fs/stat.c | cp_new_stat(inode,statbuf); |